Nicolas Krieger wrote: > > Hi, > Is it possible to copy a video file without using av_codec_decode and > av_codec_encode ? Just url_fopen, then copy. > > Nicolas Krieger >
That's quite simple, just skip decode/encode part. av_read_frame() then av_write_frame() Assuming you correctly create a file that will contain a copy of an original content. -- View this message in context: http://www.nabble.com/copy-a-video-file-tp19197118p19205472.html Sent from the libav-users mailing list archive at Nabble.com. _______________________________________________ libav-user mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/libav-user
