Advertisement
Guest User

Untitled

a guest
Oct 30th, 2015
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 KB | None | 0 0
  1. Configuration File Options:
  2. ffmpegPath:
  3. This is the absolute path to ffmpeg.
  4.  
  5. Don't use quotation marks when entering in the path, the program will
  6. do that for you when it loads the path.
  7.  
  8. Ex - Windows:
  9. ffmpegPath ffmpeg.exe
  10.  
  11. In this example, ffmpeg.exe is in the same folder as the JAR file.
  12.  
  13. Ex - Windows:
  14. ffmpegPath C:\Shill\saver\ffmpeg\bin\ffmpeg.exe
  15.  
  16.  
  17. encodeFormat:
  18. This can be pretty-much any format supported by ffmpeg.
  19.  
  20. If I wanted to encode as mkv, then I'd type in...
  21. encodeFormat mkv
  22.  
  23.  
  24. decodeFormat:
  25. Leave this as-is. The program doesn't currently support changing
  26. the decode format as it 7z's the files when encoding. So, when
  27. decoding, you should end up with a packed 7z archive.
  28.  
  29. Ex:
  30. decodeFormat 7z
  31.  
  32.  
  33. encodedVideoWidth:
  34. The width to make the video when encoding. You can leave this as-is
  35. and everything will work fine.
  36.  
  37. Ex:
  38. encodedVideoWidth 1280
  39.  
  40.  
  41. encodedVideoHeight:
  42. The height to make the video when encoding. You can leave this as-is
  43. and everything will work fine.
  44.  
  45. Ex:
  46. encodedVideoHeight 720
  47.  
  48.  
  49. encodedFramerate:
  50. The framerate to make the video when encoding. You can leave this as-is
  51. and everything will work fine.
  52.  
  53. YouTube doesn't support 60fps unless the video is > 720p, so don't
  54. bother with anything other than 30fps unless you change the
  55. encodedVideoWidth & encodedVideoHeight to 1920 and 1080 or higher,
  56. respectivley.
  57.  
  58. Ex:
  59. encodedFramerate 30
  60.  
  61.  
  62. logFfmpegOutput:
  63. Whether or not to log FFMPEG's output to a file when encoding/decoding.
  64.  
  65. Ex:
  66. logffmpegOutput false
  67.  
  68.  
  69. deleteOriginalFileWhenEncoding:
  70. Whether or not to delete the original file after encoding.
  71.  
  72. So, for example, if I was encoding schill.txt into an mkv video, it
  73. would delete schill.txt after schill.mkv is created.
  74.  
  75. Ex:
  76. deleteOriginalFileWhenEncoding false
  77.  
  78.  
  79. deleteOriginalFileWhenDecoding:
  80. Whether or not to delete the original file after decoding.
  81.  
  82. So, for example, if I was decoding schill.mkv into an mkv video, it
  83. would delete schill.mkv after schill.txt is created.
  84.  
  85. Ex:
  86. deleteOriginalFileWhenEncoding false
  87.  
  88.  
  89. showSplashScreen:
  90. Whether or not to show the splash screen on startup.
  91.  
  92. This serves absolutley no purpose, so you can just disable it.
  93.  
  94. Ex:
  95. showSplashScreen true
  96.  
  97.  
  98. splashScreenFilePath:
  99. This is the absolute path to splash screen image.
  100.  
  101. Don't use quotation marks when entering in the path, the program will
  102. do that for you when it loads the path.
  103.  
  104. Ex - Windows:
  105. splashScreenFilePath Splash.png
  106.  
  107. In this example, Splash.png is in the same folder as the JAR file.
  108.  
  109. Ex - Windows:
  110. splashScreenFilePath C:\Schill\saver\Splash.png
  111.  
  112.  
  113. splashScreenDisplayTime:
  114. The amount of time, in milliseconds, to display the splash screen.
  115.  
  116. Ex - 1 Second:
  117. splashScreenDisplayTime 1000
  118.  
  119. Ex - 1.5 Seconds:
  120. splashScreenDisplayTime 1500
  121.  
  122. Ex - 60 Seconds:
  123. splashScreenDisplayTime 60000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement