0.6.2 Works GREAT
- Code:
ffmpeg -i /mnt/raid/blue-ray/file.1080p.Bluray.DTS.H264.Remux-SHiTSoNy.mkv -y -threads 3
-async 1 -vcodec mpeg2video -b 12288k -maxrate 12288k -bufsize 12288k
-r 24000/1001 -g 15
-copyts -acodec ac3 -ab 384k
-ac 6 -map 0:0 -map 0:1 -sn
-f mpegts /tmp/Serviio/transcoding-temp-62-MPEG2TS.stf
NOTICE: the -maxrate, -b and -bufsize
1.0.0 Works OK
- Code:
ffmpeg -i /mnt/raid/blue-ray/file.1080p.Bluray.DTS.H264.Remux-SHiTSoNy.mkv -y -threads 2
-copyts -c:v mpeg2video -b:v 8192k -vf scale=1280:720
-r 24000/1001 -g 15
-c:a ac3 -b:a 320k
-ac 6 -map 0:0 -map 0:1 -sn
-f mpegts /tmp/Serviio/transcoding-temp-74-10-ORIGINAL.stf
1.0.1 This particular file no

- Code:
ffmpeg -fflags +genpts -i /mnt/raid/blue-ray/file.1080p.Bluray.DTS.H264.Remux-SHiTSoNy.mkv -y
-copyts -c:v copy -vbsf h264_mp4toannexb
-c:a ac3 -b:a 320k
-ac 6 -map 0:0 -map 0:1 -sn
-f mpegts /tmp/Serviio/transcoding-temp-74-10-ORIGINAL.stf
NOTICE: I lost the b:v values if that means anything.
If I replace
- Code:
-copyts -c:v copy -vbsf h264_mp4toannexb
with
- Code:
-async 1 -vcodec mpeg2video -b 12288k -maxrate 12288k -bufsize 12288k
it works
The max height is not being used.
The threads may be my fault. I need to look into that.