Advertisement
Guest User

Untitled

a guest
Jan 18th, 2015
289
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. encoding {
  2. # Image format to use if the video encoder is disabled. Use tga for best speed and quality at cost of large files.
  3. S:imageFormat=tga
  4.  
  5. # If set to true, a video encoding program is used that will receive uncompressed RGB frames from Minema via the standard input
  6. # pipe.
  7. B:useVideoEncoder=true
  8.  
  9. # Path to the video encoding executable. The encoder's working directory is the generated movie folder. Ignored if the video
  10. # encoder is disabled.
  11. S:videoEncoderPath=C:\Users\***\AppData\Roaming\.minecraft\bin\x264.exe
  12.  
  13. # Arguments for the video encoding program. Placeholders: %WIDTH% - frame width, %HEIGHT% - frame height, %FPS% - frame rate.
  14. # Ignored if the video encoder is disabled.
  15. S:videoEncoderParams=--demuxer raw --input-csp rgb --input-res %WIDTH%x%HEIGHT% --fps %FPS% --preset ultrafast --qp 0 -o video.mp4 -
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement