Difference between revisions of "ALTTP:Contributing"

From ALttP Speedrunning Wiki
Jump to: navigation, search
m (Fatmanspanda moved page Contributing to ALTTP:Contributing)
 
(7 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
== Wiki stuff ==
 
== Wiki stuff ==
  
* When making a link, make sure there's no space before or after the brackets, as it will add unintended whitespace when followed by punctuation
+
* When making a link, make sure there's no space before or after the brackets, as it will add unintended white space when followed or preceded by punctuation.
 
: Good: <pre>Use the [[Bomb Jump]], Luke.</pre>
 
: Good: <pre>Use the [[Bomb Jump]], Luke.</pre>
 
: Bad: <pre>Use the [[ Bomb Jump ]], Luke.</pre>
 
: Bad: <pre>Use the [[ Bomb Jump ]], Luke.</pre>
Line 7: Line 7:
 
* Would be nice if people add spaces between syntax and text otherwise though.
 
* Would be nice if people add spaces between syntax and text otherwise though.
 
: Good: <pre>* This is a list item</pre>
 
: Good: <pre>* This is a list item</pre>
: OK: <pre>*This is a list item
+
: OK: <pre>*This is a list item</pre>
 +
 
 +
* You can batch upload files on [[Special:BatchUpload]].
 +
 
 +
* When working inside a list, you can use : to indent more text in the same level (to add paragraphs). See source of these list items for example.
  
 
== Conventions ==
 
== Conventions ==
Line 16: Line 20:
 
:  
 
:  
 
: Some tech can be treated as names, re. capitalization, like "Out of Bounds". I think "This glitch is an Out of Bounds glitch" is easier to read than "This glitch is an out of bounds glitch". But maybe "Perform a bomb jump to the other side" is better?
 
: Some tech can be treated as names, re. capitalization, like "Out of Bounds". I think "This glitch is an Out of Bounds glitch" is easier to read than "This glitch is an out of bounds glitch". But maybe "Perform a bomb jump to the other side" is better?
 +
 +
* Pay some attention to how certain expressions are spelled elsewhere. ''Spindash'' vs ''Spin dash'' etc..
  
 
* I've used a verbose form in [[Categories]] - ''Any% (NMG, No S+Q)''. This is better for new players, but generally use a shorter form, where we skip the stuff unneeded for alttpers. I've landed on ''Any% NMG'', ''Any% No EG'' etc.
 
* I've used a verbose form in [[Categories]] - ''Any% (NMG, No S+Q)''. This is better for new players, but generally use a shorter form, where we skip the stuff unneeded for alttpers. I've landed on ''Any% NMG'', ''Any% No EG'' etc.
Line 22: Line 28:
 
:
 
:
 
: Also let's use ''Hyrule Castle'' instead of ''Escape''.
 
: Also let's use ''Hyrule Castle'' instead of ''Escape''.
 +
 +
== Creating short gameplay videos with Snes9x ==
 +
 +
# Record an .smv of the gameplay you need. (File -> Movie Record...)
 +
# Pause the emulator and load the .smv for playback. (File -> Movie Play...)
 +
# Frame advance to the exact frame you want to start the recording on, for example, the first frame after the camera stops moving when entering a room. Try to cut out any unnecessary footage like screen transitions.
 +
# Start an AVI recording (File -> Start AVI Recording...) and unpause the emulator.
 +
#: Consider using a lossless codec like Lagarith for the best quality: https://lags.leetcode.net/codec.html
 +
# After all the desired gameplay was played back in the emulator, stop the AVI recording.
 +
#: You can once again use frame advance to stop at an exact frame (for example, when the practice ROM updates the room time).
 +
# Encode the AVI video into a compressed format.
 +
#: There are countless different ways to do and programs to use for this. The videos that are currently on this site were created with ffmpeg using the following arguments:
 +
#: <pre>ffmpeg -i C:\video.avi -c:v libx264 -preset slow -crf 18 -bf 2 -flags +cgop -pix_fmt yuv420p -sws_flags neighbor -s:v 512x448 -c:a aac -b:a 160k -movflags faststart C:\video.mp4</pre>
 +
#: resulting in an .mp4 file with h264 video and aac audio optimized for streaming (adopted from a YouTube tutorial)
 +
 +
I you want to make a GIF instead, you can load the .avi file into virtualdub, and go to File -> Export -> Animated GIF.

Latest revision as of 12:49, 8 June 2018

Wiki stuff

  • When making a link, make sure there's no space before or after the brackets, as it will add unintended white space when followed or preceded by punctuation.
Good:
Use the [[Bomb Jump]], Luke.
Bad:
Use the [[ Bomb Jump ]], Luke.
  • Would be nice if people add spaces between syntax and text otherwise though.
Good:
* This is a list item
OK:
*This is a list item
  • When working inside a list, you can use : to indent more text in the same level (to add paragraphs). See source of these list items for example.

Conventions

These are just general rules meant to be broken sometimes. Idea is just to try to present things in a similar way, from different authors. These are just some suggestions.

  • Generally capitalize words in the title of the wiki pages. "Bomb Jump", "Quick Warp", "Out of Bounds Glitches". But when mentioned in a random paragraph, sometimes lower case is good.
Some tech can be treated as names, re. capitalization, like "Out of Bounds". I think "This glitch is an Out of Bounds glitch" is easier to read than "This glitch is an out of bounds glitch". But maybe "Perform a bomb jump to the other side" is better?
  • Pay some attention to how certain expressions are spelled elsewhere. Spindash vs Spin dash etc..
  • I've used a verbose form in Categories - Any% (NMG, No S+Q). This is better for new players, but generally use a shorter form, where we skip the stuff unneeded for alttpers. I've landed on Any% NMG, Any% No EG etc.
  • Use the full dungeon/item name always (Eastern Palace, Tower of Hera), unless part of an established name (like Hera Clip).
Also let's use Hyrule Castle instead of Escape.

Creating short gameplay videos with Snes9x

  1. Record an .smv of the gameplay you need. (File -> Movie Record...)
  2. Pause the emulator and load the .smv for playback. (File -> Movie Play...)
  3. Frame advance to the exact frame you want to start the recording on, for example, the first frame after the camera stops moving when entering a room. Try to cut out any unnecessary footage like screen transitions.
  4. Start an AVI recording (File -> Start AVI Recording...) and unpause the emulator.
    Consider using a lossless codec like Lagarith for the best quality: https://lags.leetcode.net/codec.html
  5. After all the desired gameplay was played back in the emulator, stop the AVI recording.
    You can once again use frame advance to stop at an exact frame (for example, when the practice ROM updates the room time).
  6. Encode the AVI video into a compressed format.
    There are countless different ways to do and programs to use for this. The videos that are currently on this site were created with ffmpeg using the following arguments:
    ffmpeg -i C:\video.avi -c:v libx264 -preset slow -crf 18 -bf 2 -flags +cgop -pix_fmt yuv420p -sws_flags neighbor -s:v 512x448 -c:a aac -b:a 160k -movflags faststart C:\video.mp4
    resulting in an .mp4 file with h264 video and aac audio optimized for streaming (adopted from a YouTube tutorial)

I you want to make a GIF instead, you can load the .avi file into virtualdub, and go to File -> Export -> Animated GIF.