You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example, I use the following line and use the output files in a batch folder for NEAV1E as a parallel encode: ffmpeg -i input.mp4 -c copy -f segment split%d.mp4
No prior re-encode needed and, depending on the video, can be more reliable than even PySceneDetect.
Segment splitting would be a useful third splitting option for NEAV1E.
The text was updated successfully, but these errors were encountered:
Nice, I assumed it only would change the encoder to utvideo and the sort and didn't bother touching it.
Additionaly, key frame segment splitting almost never results in equal chunks.
Most videos I re-encode are AVC Videos (MPEG-4 Part 10) and given, they were encoded with x264, their key-frames make for proper cutoff points already.
Thankfully, FFmpeg has an inbuilt segment muxer:
https://ffmpeg.org/ffmpeg-formats.html#segment_002c-stream_005fsegment_002c-ssegment
For example, I use the following line and use the output files in a batch folder for NEAV1E as a parallel encode:
ffmpeg -i input.mp4 -c copy -f segment split%d.mp4
No prior re-encode needed and, depending on the video, can be more reliable than even PySceneDetect.
Segment splitting would be a useful third splitting option for NEAV1E.
The text was updated successfully, but these errors were encountered: