View Single Post
Old 20th May 2019, 17:58   #8  |  Link
Lypheo
Registered User
 
Join Date: Sep 2018
Posts: 14
You need to write the timecodes to a file and then mux them into the video.

Code:
vspipe --y4m <foo.vpy> --timecodes timecodes.txt - | ffmpeg -i pipe: -c:v libx265 -preset veryslow -crf 20 -vf "nlmeans=s=10" -y "outfoo.mkv"
Then:

Code:
mkvmerge --output finalfoo.mkv --timestamps 0:timecodes.txt outfoo.mkv
Lypheo is offline   Reply With Quote