Hi all,
I'm trying to use an alternative way for video proxy.
I like the "Add Proxies as Takes.cs" from https://vegasaur.com/bin/scripts but I noticed a strage/wrong thing.
Sometimes frames are not synched when I switch from take "original" to take "proxy" .
So I checked with Avisynth+/AVSPmod:
clipv1=FFmpegSource2("video.mp4", vtrack = -1) clipv2=FFmpegSource2("video.mp4.sfvp0", vtrack = -1) clipv1r=BilinearResize(clipv1, clipv2.width,clipv2.height) StackHorizontal(clipv1r, clipv2)
Frames btw 2 videos are perfectly synched!
So what's wrong?
- something on Magix Vegas?
- something with script "Add Proxies as Takes.cs" ?
Thanks!
Ps
this is the ffmpeg command to generate proxy files:
ffmpeg -hide_banner -hwaccel cuda -hwaccel_output_format cuda -copyts -i "video.mp4" -map 0:0 -fps_mode passthrough -c:v h264_nvenc -g 1 -preset p1 -vf "scale_cuda=-2:256:format=yuv420p:interp_algo=bilinear,setpts=PTS-STARTPTS -f mp4 "video_proxy.mp4"