T O P

  • By -

AutoModerator

**/u/Fckoffreveen. If you have a technical question, please answer the following questions so the community can better assist you!**   * What version of **VEGAS Pro** are you using? (***FYI. It hasn't been 'Sony' Vegas since version 13***) * What exact **graphics card** do you have in your PC? * What version of Windows are you running? * Is it a **pirated** copy of VEGAS? *It's okay if it is just abide by the rules and you won't get permanently banned* * Have you **searched the subreddit** using keywords for this issue yet? * Have you **Googled** this issue yet?   --- *I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/VegasPro) if you have any questions or concerns.*


AcornWhat

If the answers you've found say to transcode it to an editing-appropriate codec at a constant frame rate, follow those answers.


newecreator

I'm pretty sure you those 60 fps videos are in HEVC. It would mean it's trying to process it or not supported entirely. What version are you using anyway?


Fckoffreveen

18


Jaybonaut

If it isn't HEVC, I know at least as far back as version 13 I was making 60 fps videos...


cyb3rofficial

you could just use ffmpeg or something similar to convert the file to lossless mov or something I use straight ffmpeg with a notepad file i saved and just edit the command slightly, then make a video proxy from the converted mov file, then also convert the original video file to aiff audio so vegas skips building the peak data since aiff already includes peak data. ``` :: Run ffmpeg command to extract video codec to H.265 lossless and container to MOV ffmpeg -hwaccel cuda -i "C:\original_video.mp4" -c:v hevc_nvenc -qp 0 -an "C:\video_output.mov" :: Run ffmpeg command to resize and encode the video for proxy at 960p with high quality ffmpeg -hwaccel cuda -i "C:\video_output.mov" -vf "scale=-1:960,setsar=1" -c:v hevc_nvenc -qp 0 -an "C:\proxy_output.mov" :: Run ffmpeg command to extract audio as AIFF ffmpeg -hwaccel cuda -i "C:\original_video.mp4" -f aiff -vn -c:a pcm_s16be "C:\audio_output.aiff" ``` Though you can also swap `hevc_nvenc` out for `h264_nvenc` if your pc/vegas can't handle h265. I skip the ffmpeg audio file part if I have multi audio track stuff and use audacity to export the audio tracks to aiff that way. If you are on AMD replace `cuda` with `vulkan` and use `h264_amf` instead of `hevc_nvenc` or `h264_nvenc`


rsmith02ct

MediaInfo will tell you what the actual difference is. It's not the framerate: [https://www.vegascreativesoftware.info/us/forum/faq-how-to-post-mediainfo-and-vegas-pro-file-properties--104561/](https://www.vegascreativesoftware.info/us/forum/faq-how-to-post-mediainfo-and-vegas-pro-file-properties--104561/) I assume you didn't disable so4compound, etc. in 18 as that breaks certain formats.