On Fri, Jun 01, 2018 at 11:33:26 +0530, Robert Clove wrote: > Can someone point me to a libavformat file for which i can use the
What is a libavformat file? You probably mean an AVI file? > following command ffmpeg -i abc.avi -an -vcodec copy stream.264 Provided your ffmpeg supports H.264 encoding, e.g. with libx264, you can create your own: $ ffmpeg -f lavfi -i testsrc2=d=10 -c:v libx264 abc.avi Cheers, Moritz _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user To unsubscribe, visit link above, or email [email protected] with subject "unsubscribe".
