-
-
Save parnexcodes/601df332dd06effea254be38132b9c61 to your computer and use it in GitHub Desktop.
Note : These are the settings i wrote by observing the Mediainfo of RARBG Encodes , these might not be 100% identical to RARBG Encodes. | |
These are FFMPEG Settings. | |
See comment below to see the code |
The -vn flag specifies only audio should be encoded. Should be removed. I think the following should be a bit closer to RARBG/ION10 settings, but welcome any improvement:
1080p
$ ffmpeg -i input.mkv -ac 6 -ar 48000 -ab 224k -c:a aac -codec:v libx264 -pix_fmt yuv420p -b:v 2500k -vf "scale=1920:trunc(ow/a/2)*2" output.mp4
720p
$ ffmpeg -i input.mkv -ac 6 -ar 48000 -ab 224k -c:a aac -codec:v libx264 -pix_fmt yuv420p -b:v 1500k -vf "scale=1280:trunc(ow/a/2)*2" output.mp4
480p
$ ffmpeg -i input.mkv -ac 2 -ar 48000 -ab 256k -c:a aac -codec:v libx264 -pix_fmt yuv420p -b:v 1100k -vf "scale=720:trunc(ow/a/2)*2" output.mp4
Does anyone have RARBG Encoding Settings x265
The -vn flag specifies only audio should be encoded. Should be removed. I think the following should be a bit closer to RARBG/ION10 settings, but welcome any improvement:
1080p
$ ffmpeg -i input.mkv -ac 6 -ar 48000 -ab 224k -c:a aac -codec:v libx264 -pix_fmt yuv420p -b:v 2500k -vf "scale=1920:trunc(ow/a/2)*2" output.mp4
720p
$ ffmpeg -i input.mkv -ac 6 -ar 48000 -ab 224k -c:a aac -codec:v libx264 -pix_fmt yuv420p -b:v 1500k -vf "scale=1280:trunc(ow/a/2)*2" output.mp4
480p
$ ffmpeg -i input.mkv -ac 2 -ar 48000 -ab 256k -c:a aac -codec:v libx264 -pix_fmt yuv420p -b:v 1100k -vf "scale=720:trunc(ow/a/2)*2" output.mp4
Do you have RARBG x265 encoding installed?
Can you explain the minrate and maxrate settings, because all 1080p.H264.AAC-RARBG/VXT rips are spot on 2500 kbit, +/-1 kbit?
For us n00bs still groping in the dark, can you explain the choice of settings and what they do, and how they translate from RARBG's MediaInfo?
Here's a 1980's anime:
What are all these other settings and are they just ffmpeg's defaults?