Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
aviファイルをyuvファイルに変換したい。使ってみました
ffmpeg -i <input.avi> <output.yuv>
しかし、変換されていません。誰かがgstreamerを使用した変換を提案できますか?
これは、ffmpegを使用して解決する方法です
ffmpeg -i in.avi -vcodec rawvideo -pix_fmt yuv420p -o out.yuv
入力を 420 平面 yuv に変換します。