The Vegas Creative Software Support Community – Find help here
Forum
Tutorials
Support
New
Sign in / register
Search ...
Help
Sign in
All
Forum
1k
Tutorials
User
All
Forum
Tutorials
User
Options
Last year
Any time
Last 24 hours
Last week
Last month
Last six month
Last year
Video
30 answers, most recent on 8/14/2024
RE: VEGAS Pro New Features Monthly Poll - August 2024
Timeline event clip level customized coloring. Right now you can only have diffferent color for the whole track. Shared by: Set
Video
26 answers, most recent on 9/26/2024
RE: Audio gets lost in 2nd half of rendered video
Hi JetDV, thank you, that gives hope. Inspired by your posting I have reduced the rendering times step by step. And yes, I have also no issues if the total length is reduced to times lower than 30 minutes. But longer than that the audio track is a
Video
16 answers, most recent on 8/7/2024
RE: AI Auto Reframe giving inaccurate tracking in my footage.
@Gid This is too new to me for me to know if it's me that's making mistakes, but using the same original Bond video when I click the 'project aspect ratio' I get this from the original 3840x1656 video. This shows AI Reframe from 3 different
Video
4 answers, most recent on 8/19/2024
RE: VP22 - 4K MXF files not doing too well
I have a timeline with MXF file on it, and as soon as I start adjusting track motion, the picture freezes and locks on a frame, and all the track effects don't work anymore. It's unfortunate, because I was SO excited about how much more stable MKVs
Video
4 answers, most recent on 8/19/2024
VP22 - 4K MXF files not doing too well
I have a timeline with MXF file on it, and as soon as I start adjusting track motion, the picture freezes and locks on a frame, and all the track effects don't work anymore. It's unfortunate, because I was SO excited about how much more stable MKVs
Video
140 answers, most recent on 4/7/2025
RE: VP21 b300 - VP22. Still unresolved bugs with 4K MXF and HEVC files
Finally the former described second issue with NVIDIA driver and artifacts / green frames while accessing two tracks containing parts of the same file could be located and (hopefully) fixed. Please check for announcements of @VEGASDerek on the next
Audio
No answers, created on 12/6/2024
Rendering To A New Track
I'm using Vegas 22 on Windows 11. I only use Vegas for audio editing - never video, and seldom when I try to do a mixdown or "render to a new track" I immediately get a pop-up error window that says "An error occurred during the current operation An
Scripting
18 answers, most recent on 8/21/2024
RE: Left direction uses wrong logic.
@jetdv @zzzzzz9125 Sorry, I need to show the complete script for a better understanding. using System; using System.Drawing; using System.Windows.Forms; using System.Collections.Generic; using ScriptPortal.Vegas; namespace
Video
16 answers, most recent on 8/7/2024
AI Auto Reframe giving inaccurate tracking in my footage.
ok I have this footage 1920 x 1080 @ 25fps (Check This Out) I want to reframe it in 9:16 (1080 x1920) with the host person in this. because two cameras are used. but it gives inaccurate tracking. can someone tell me why this is happening.?
Video
14 answers, most recent on 1/26/2025
RE: can certain default settings be changed?
@Gid These are the options for envelopes: So maybe try "None"? For effects, pan/crop, and Track Motion, just change it to .Hold
Video
21 answers, most recent on 8/15/2024
RE: MSVPVF - A useful tool to downgrade the version of your project files
@zzzzzz9125, yes, if you have track fx, you will have to do them over again. I don't know the complexity of what is being used at the track level, but while it will take a few extra steps to do them over again, sometimes that's the price we have to
Audio
9 answers, most recent on 3/20/2025
RE: Buggy audio when trimming clips (Vegas Pro 22 build 239)
Hi @Jake-B, if the automation 'mute' process may be switching it. It could have been enabled inadvertently. I did this once and took me a while to find the cause.The automation track volume envelope tool cause it as well and could be visually
Scripting
42 answers, most recent Yesterday
RE: VEGAS Pro Scripts Collections | SHARE YOUR SCRIPT HERE !!
SCRIPT : Remove Audio from Selected Video Events using ScriptPortal.Vegas; namespace Test_Script { public class Class1 { public void Main(Vegas vegas) { foreach (Track myTrack in
Scripting
4 answers, most recent on 10/15/2024
RE: Can't get script to assign media to fixed X Center & Y Center, help...
Thank you so so much for the help! Here's my finished working script, all it does is recreate what could be done with an Event Pan/Crop Preset set to the same X Y Width Height settings, but I'm trying to set up everything script-based and this did
Scripting
25 answers, most recent on 11/3/2024
RE: Create a script that removes transitions?
@Steve_Rhoden Do you mean, a script only to remove the audio effects from selected audio events?This script below does that. using System; using System.Drawing; using System.Windows.Forms; using ScriptPortal.Vegas; namespace
Video
19 answers, most recent on 1/5/2025
RE: Video Preview Window has a Shaded Grey Hue over video preview
RogerS - I looked at the track level and there are no video FX that I can see. The raw video footage previews correctly at full color when I drag a new clip into the timeline. Adis-a - I did raise the fader. Thank you for any input here.
Scripting
18 answers, most recent on 5/8/2025
RE: Creating a Script to make 3D Extrusion in a Text
A possible version that works, but may not what op wants: using System.Collections.Generic; using ScriptPortal.Vegas; // "ScriptPortal.Vegas" for Magix Vegas Pro 14 or above, "Sony.Vegas" for Sony Vegas Pro 13 or below namespace
Video
15 answers, most recent on 7/27/2024
RE: Changing playback rate separates the audio
Video Playback Rate Audio Playback Rate (you have to set the "new length") Or, you can do it via a script: VideoEvent vEvent = (VideoEvent)myVegas.Project.Tracks[0].Events[0]; vEvent.PlaybackRate = 2;
Video
10 answers, most recent on 9/29/2024
VP22 crashes often on re-launch BCC Particle illusion after TL play
Very often, Vegas crashes when launching BCC particle illusion (PI) under following conditions: 0) Launch Particle illusion plugin from Vegas timeline and do your stuff in PI - no crash1) Particle illusion plugin has generated whatever you need to
Video
177 answers, most recent on 1/20/2025
RE: VEGAS Pro 22 Build 194 General Discussion
Update: from the Project Media window, this works properly. But from the Explorer window, double clicking still puts the file on a track, not the Trimmer window, as it should..no matter how that box is checked. Please fix. Thx.
Video
4 answers, most recent on 10/27/2024
RE: copy and paste text attributes.
in the newer vegas pro versions you have a button in the Attributes list where you can paste all the settings you did to your text to the whole video track the text media is on. It helps a bit when you just have one track anyway but i dont know why
Audio
6 answers, most recent on 7/3/2025
RE: ways to convert audio from mono to stereo?
@target This script will change selected events from stereo to mono. Go to C:\Users\'name'\OneDrive\Documents\Vegas Script Menu, duplicate (copy & paste) one of the cs files, rename it keeping the .cs extension at the end & replace the
Video
16 answers, most recent on 8/7/2024
RE: AI Auto Reframe giving inaccurate tracking in my footage.
@Gid Can you try this one, tell us if it correctly tracks, doesn't look to be working for me or I don't know how to use correctly. audio doesnt sync correctly in Vegas but shouldn't matter, the premise if that you want to make a 9:16 version for
Video
7 answers, most recent on 11/16/2024
RE: Upgraded version but mask presets and settings did not transfer.
@Curtis This is how I transfer all my pan/crop masks. See my comment at the bottom of this thread.
Previous page
1
…
27
28
29
…
42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
of 42
Next page
28