grouping question

WetROCK1 wrote on 1/8/2019, 7:35 AM

i add a video clip to timeline and the audio and video are not grouped together for that clip. my solution has been to highlight and group each individual clip manually😠. is their a better way to do this? or is there some parameter that i need to set that i dont know about that need to be checked. Not all clips that are entered into the timeline are ungrouped it seams to do it randomly

Comments

j-v wrote on 1/8/2019, 7:54 AM

This setting has a big impact, that is maybe the one you are looking for.

met vriendelijke groet
Marten

Camera : Pan X900, GoPro Hero7 Hero Black, DJI Osmo Pocket, Samsung Galaxy A8
Desktop :MB Gigabyte Z390M, W11 home version 24H2, i7 9700 4.7Ghz,16 DDR4 GB RAM, Gef. GTX 1660 Ti with driver
566.14 Studiodriver and Intel HD graphics 630 with driver 31.0.101.2130
Laptop  :Asus ROG Str G712L, W11 home version 23H2, CPU i7-10875H, 16 GB RAM, NVIDIA GeForce RTX 2070 with Studiodriver 576.02 and Intel UHD Graphics 630 with driver 31.0.101.2130
Vegas software: VP 10 to 22 and VMS(pl) 10,12 to 17.
TV      :LG 4K 55EG960V

My slogan is: BE OR BECOME A STEM CELL DONOR!!! (because it saved my life in 2016)

 

WetROCK1 wrote on 1/8/2019, 9:56 AM

thank you j -v but my preferences were checked same as yours

xberk wrote on 1/8/2019, 10:09 AM

>>seems to do it randomly

Are you saying that the same media will sometimes group on the timeline and sometimes not? Or can you narrow it down to certain media that will not group when placed on the timeline?

Paul B .. PCI Express Video Card: EVGA VCX 10G-P5-3885-KL GeForce RTX 3080 XC3 ULTRA ,,  Intel Core i9-11900K Desktop Processor ,,  MSI Z590-A PRO Desktop Motherboard LGA-1200 ,, 64GB (2X32GB) XPG GAMMIX D45 DDR4 3200MHz 288-Pin SDRAM PC4-25600 Memory .. Seasonic Power Supply SSR-1000FX Focus Plus 1000W ,, Arctic Liquid Freezer II – 360MM .. Fractal Design case ,, Samsung Solid State Drive MZ-V8P1T0B/AM 980 PRO 1TB PCI Express 4 NVMe M.2 ,, Wundiws 10 .. Vegas Pro 19 Edit

WetROCK1 wrote on 1/9/2019, 5:47 AM

yes its random. somtimes it does it to all video added in a batch and other times its only one or two videos added in a batch (highlight drag and drop). mp4. is what im working with

xberk wrote on 1/9/2019, 11:12 AM

I can duplicate this behavior if "auto ripple" is off. So far, it seems to group a certain number of the beginning events in a batch and ungroup the rest .. but I have not tested extensively. Turning auto ripple on (even after placing the batch on the timeline) groups things ..

This appears to be a bug if you want to drag a "batch" of events to the timeline. I tested in VP16 Build 352.

Just tested in VP15 .. Worked as it should. So far appears to be a bug in VP16 Build 352.

Last changed by xberk on 1/9/2019, 11:17 AM, changed a total of 1 times.

Paul B .. PCI Express Video Card: EVGA VCX 10G-P5-3885-KL GeForce RTX 3080 XC3 ULTRA ,,  Intel Core i9-11900K Desktop Processor ,,  MSI Z590-A PRO Desktop Motherboard LGA-1200 ,, 64GB (2X32GB) XPG GAMMIX D45 DDR4 3200MHz 288-Pin SDRAM PC4-25600 Memory .. Seasonic Power Supply SSR-1000FX Focus Plus 1000W ,, Arctic Liquid Freezer II – 360MM .. Fractal Design case ,, Samsung Solid State Drive MZ-V8P1T0B/AM 980 PRO 1TB PCI Express 4 NVMe M.2 ,, Wundiws 10 .. Vegas Pro 19 Edit

wwaag wrote on 1/9/2019, 11:41 AM

There's a very simple script that I have used in the past just for this purpose. Once you've added your events to the timeline, just run the script and it will group the video and audio for each event. There is another script that does the same thing, except for 3 tracks which is useful if you have external audio that you also want grouped with the original video and audio. If anyone's interested, I'll post these.

AKA the HappyOtter at https://tools4vegas.com/. System 1: Intel i7-8700k with HD 630 graphics plus an Nvidia RTX4070 graphics card. System 2: Intel i7-3770k with HD 4000 graphics plus an AMD RX550 graphics card. System 3: Laptop. Dell Inspiron Plus 16. Intel i7-11800H, Intel Graphics. Current cameras include Panasonic FZ2500, GoPro Hero11 and Hero8 Black plus a myriad of smartPhone, pocket cameras, video cameras and film cameras going back to the original Nikon S.

WetROCK1 wrote on 1/9/2019, 3:41 PM

yes i am interested please post. i my need some help with getting the script to work as well as i have never worked with scrips

wwaag wrote on 1/9/2019, 4:16 PM

@WetROCK1

No problem. I assume that you are running a Magix version of Vegas? If you're using an older Sony version, just replace "ScriptPortal" with "Sony" (without the quotation marks) using any text editor.

Here's the script for just a single video and audio track.

/**
 * Group Track1 and Track2 Events
 * Ce script groupe les Events des deux premières pistes
 * Auteur Gilles Pialat 09/01/2008
 * http://www.cameravideo.net/forum/sony-vegas-dvd-architect/
**/

using System;
using ScriptPortal.Vegas;

class EntryPoint
{
    public void FromVegas(Vegas vegas)
    {
        for (int i=0; i< vegas.Project.Tracks[0].Events.Count; i++)
        {
            TrackEventGroup group = new TrackEventGroup();;
            vegas.Project.Groups.Add(group);
            group.Add(vegas.Project.Tracks[0].Events[i]);
            group.Add(vegas.Project.Tracks[1].Events[i]);
        }
    }
}

Here's the script for 3 tracks.

/**
 * Group Track1 and Track2 and Track3Events
 * Ce script groupe les Events des deux premières pistes
 * Auteur Gilles Pialat 09/01/2008
 * http://www.cameravideo.net/forum/sony-vegas-dvd-architect/
**/

using System;
using ScriptPoral.Vegas;

class EntryPoint
{
    public void FromVegas(Vegas vegas)
    {
        for (int i=0; i< vegas.Project.Tracks[0].Events.Count; i++)
        {
            TrackEventGroup group = new TrackEventGroup();;
            vegas.Project.Groups.Add(group);
            group.Add(vegas.Project.Tracks[0].Events[i]);
            group.Add(vegas.Project.Tracks[1].Events[i]);
            group.Add(vegas.Project.Tracks[2].Events[i]);
        }
    }
}

To use, simply copy the script and paste it into any text editor such as Notepad. Then save the file with a .cs extension--e.g. eventGroup.cs--and place it in this folder "C:\Program Files\VEGAS\VEGAS Pro 16.0\Script Menu" if you're using V16.

To run the script, first import your media files into an empty project. There should be only 2 tracks--one video and one audio. Then go to Tools|Scripting and left-click on the script from the drop-down menu. That's it. All events should now be "grouped". You can manually ungroup a few events for testing and then run the script just to make sure it works.

A tip. If you copy the script into the script menu folder while Vegas is running, you'll first have to click on "Rescan Script Menu Folder" for the script to appear. Hope this works OK for you.

 

 

AKA the HappyOtter at https://tools4vegas.com/. System 1: Intel i7-8700k with HD 630 graphics plus an Nvidia RTX4070 graphics card. System 2: Intel i7-3770k with HD 4000 graphics plus an AMD RX550 graphics card. System 3: Laptop. Dell Inspiron Plus 16. Intel i7-11800H, Intel Graphics. Current cameras include Panasonic FZ2500, GoPro Hero11 and Hero8 Black plus a myriad of smartPhone, pocket cameras, video cameras and film cameras going back to the original Nikon S.

WetROCK1 wrote on 1/9/2019, 7:37 PM

im running vegas pro 14 at the moment but im going to be upgrading to the new version soon. Will these scripts work if i have 50 or more video clips in the time line

wwaag wrote on 1/9/2019, 7:40 PM

Should be no problem, so long as your clips are on the top 2 tracks.

AKA the HappyOtter at https://tools4vegas.com/. System 1: Intel i7-8700k with HD 630 graphics plus an Nvidia RTX4070 graphics card. System 2: Intel i7-3770k with HD 4000 graphics plus an AMD RX550 graphics card. System 3: Laptop. Dell Inspiron Plus 16. Intel i7-11800H, Intel Graphics. Current cameras include Panasonic FZ2500, GoPro Hero11 and Hero8 Black plus a myriad of smartPhone, pocket cameras, video cameras and film cameras going back to the original Nikon S.

xberk wrote on 1/10/2019, 12:21 AM

I can't duplicate this behavior in VP14 even when dragging 50+ media files to the timeline. But I do see it in VP16 Build 352.

Paul B .. PCI Express Video Card: EVGA VCX 10G-P5-3885-KL GeForce RTX 3080 XC3 ULTRA ,,  Intel Core i9-11900K Desktop Processor ,,  MSI Z590-A PRO Desktop Motherboard LGA-1200 ,, 64GB (2X32GB) XPG GAMMIX D45 DDR4 3200MHz 288-Pin SDRAM PC4-25600 Memory .. Seasonic Power Supply SSR-1000FX Focus Plus 1000W ,, Arctic Liquid Freezer II – 360MM .. Fractal Design case ,, Samsung Solid State Drive MZ-V8P1T0B/AM 980 PRO 1TB PCI Express 4 NVMe M.2 ,, Wundiws 10 .. Vegas Pro 19 Edit

NickHope wrote on 1/10/2019, 9:44 AM

I can't duplicate this issue in VP16 build 352 with some brief tests.

@xberk

What type of media are you using?

Are you dragging from Project Media, Vegas Explorer or external program?

Can you determine an exact threshold number of clips that causes this?

When it happens, are all the events ungrouped or just some?

xberk wrote on 1/10/2019, 1:46 PM

Nick I haven't had time to do complete tests. I'm dragging MTS files from Vegas Explorer. Seems like the beginning (left most on timeline) stays grouped but somewhere down the line the ungrouping occurs. I"m only seeing this in VP16 Build 352. When I get time I'll try to narrow this down.

Paul B .. PCI Express Video Card: EVGA VCX 10G-P5-3885-KL GeForce RTX 3080 XC3 ULTRA ,,  Intel Core i9-11900K Desktop Processor ,,  MSI Z590-A PRO Desktop Motherboard LGA-1200 ,, 64GB (2X32GB) XPG GAMMIX D45 DDR4 3200MHz 288-Pin SDRAM PC4-25600 Memory .. Seasonic Power Supply SSR-1000FX Focus Plus 1000W ,, Arctic Liquid Freezer II – 360MM .. Fractal Design case ,, Samsung Solid State Drive MZ-V8P1T0B/AM 980 PRO 1TB PCI Express 4 NVMe M.2 ,, Wundiws 10 .. Vegas Pro 19 Edit

Marco. wrote on 1/10/2019, 1:58 PM

Just tested with about 200 MTS files in VP16 build 352 but I can't repro the issue yet (auto-ripple off, tested with trimming and moving the clips).

xberk wrote on 1/10/2019, 3:17 PM

Just ran another test. No problems if dragging from Project Media (using same MTS files) .. only from Vegas Explorer .. I'm running Windows 8.1 ..

Paul B .. PCI Express Video Card: EVGA VCX 10G-P5-3885-KL GeForce RTX 3080 XC3 ULTRA ,,  Intel Core i9-11900K Desktop Processor ,,  MSI Z590-A PRO Desktop Motherboard LGA-1200 ,, 64GB (2X32GB) XPG GAMMIX D45 DDR4 3200MHz 288-Pin SDRAM PC4-25600 Memory .. Seasonic Power Supply SSR-1000FX Focus Plus 1000W ,, Arctic Liquid Freezer II – 360MM .. Fractal Design case ,, Samsung Solid State Drive MZ-V8P1T0B/AM 980 PRO 1TB PCI Express 4 NVMe M.2 ,, Wundiws 10 .. Vegas Pro 19 Edit

Marco. wrote on 1/10/2019, 3:40 PM

I also added from the Vegas Explorer but Windows 10 here.