Can the vvenc support input yuv loop encoding? #307
-
Hello All, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
That is not possible with VVenC, but you can use third-party apps as ffmpeg to loop the input and pipe it into the vvenc application. That will loop the 10bit RAW file once.. |
Beta Was this translation helpful? Give feedback.
That is not possible with VVenC, but you can use third-party apps as ffmpeg to loop the input and pipe it into the vvenc application.
e.g. ffmpeg with the options
-stream_loop
ffmpeg -stream_loop 1 -s 1920x1080 -pix_fmt yuv420p10le -i myinput1080p.yuv -vcodec rawvideo -f rawvideo - | vvencapp -i - -s 1920x1080 -c yuv420_10 -o out.266
That will loop the 10bit RAW file once..