On 22/12/2020, Michael <[email protected]> wrote: > Just started learning to use ffmpeg. It's awesome. Can someone help me > with the code to convert the following: > > ProRes 422HQ 4096x2048 60fps stereo 3D side by side VR files with audio > --> HEVC same size and frame rate @100Mbps with audio copied.
According to https://trac.ffmpeg.org/wiki/Encode/H.265 ffmeg -i "<filenamehere>" -c:v libx265 -crf 17 -b:v 100M -c:a copy "<outfilenamehere.mp4>" that should give you a starting point > > Thanks!!! > _______________________________________________ > ffmpeg-user mailing list > [email protected] > https://ffmpeg.org/mailman/listinfo/ffmpeg-user > > To unsubscribe, visit link above, or email > [email protected] with subject "unsubscribe". _______________________________________________ ffmpeg-user mailing list [email protected] https://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
