Log in

View Full Version : Code Troubleshooting - Rawvideo to Png


Mason1171
27th March 2021, 05:20
Im piping the output from a vapoursynth script to ffmpeg as rawvideo and outputting as png files. The script works mostly however I guess something is wrong with my syntax. The resulting video has a weird scan effect. Can y'all help me out please?

Video
https://streamable.com/rs2ned

Encode Script
ffmpeg -f rawvideo -r 23.976 -s 2880x2160 -pix_fmt yuv444p -colorspace bt709 -i pipe: -framerate 23.976 -vcodec png "/content/drive/MyDrive/test/testcc-%06d.png"

Video Script
ffmpeg -r 23.976 -f image2 -i "testcc-%06d.png" -c:v libx264 -preset slow -vf scale=2880:2160 -rc vbr_hq -pix_fmt yuv444p -colorspace bt709 -b:v 35M -maxrate:v 45M "testcc.mkv"