How do VLC and ffmpeg work together?

前端 未结 2 735
执念已碎
执念已碎 2021-02-01 21:59

I compiled VLC from the source code and it works well. When I do \". / Vlc\" vlc runs. I also compiled ffmpeg from source and it works well too. When I do \"ffmpeg-i-f toto.flv

2条回答
  •  离开以前
    2021-02-01 22:40

    Is there a ffmpeg command to play (read) a video?

    ffplay video.mp4
    

    ffplay is however a very stripped down video viewer, mostly only suitable for debugging video things and not for daily usage.

    ffplay may be more accurate than VLC for some quirky formats, for example it can handle very low FPS video where VLC 2.2.4 could not: How to resize a picture using ffmpeg's sws_scale()?

    Tested in Ubuntu 16.04, ffmpeg 2.8 with this minimal procedurally generated videos from: How to resize a picture using ffmpeg's sws_scale()?

提交回复
热议问题