VideoStudio :: X4 Mutes Segment Audio When Adding Overlays

May 23, 2012

I have been producing many (4k+) videos in the last two years for my employer with trial versions of x3 and x5 without issues - as my latest trial on x5 has expired my company has decided to go ahead and purchase x4. You can see examples of what im doing here URL.....

The software is muting the audio attached to my segments upon "sharing" them to MPEG 4 - HD.

I record the video on a Sony HDR-Cx110, these files save as .mts. I drag and drop these files into the editor, top and tail them with my intro/outro video and add in two layers - This is where i think the issue comes in. After i add in the two layers the audio from the main segment goes mute. Clicking on "project" allows for the audio to play with the entire project, however when i "share" the project to mepg4-hd the main segments audio goes mute again and my finished product is ruined.

Sometimes this will happen other times it will not. Also after the conversion process to mpeg4 hd has finished i can play the project in the editor with all audio, however when i play the mp4 it has produced the audio from the main segment it mute..

View 3 Replies


ADVERTISEMENT

VideoStudio :: Extract Audio Segment From Video File To Library

Nov 3, 2010

The Pro X3 help file says I can extract audio from a video file, but doesn't say how. What I would like to do is extract a segment of audio music from an MPEG2 video file using PRO X3 and add it to the Library for use in another PRO X3 project.

View 4 Replies View Related

VideoStudio :: Audio Disappears After Adding Effect In Pro X5?

Jan 28, 2013

If I add an avi clip into the timeline, I can hear the audio in both clip and project playback. However, once I have added an effect (any effect), the audio cannot be heard in clip playback - it can only be heard in project playback. If I remove the filter, the same thing still happens - no audio in clip playback - only in project playback.

View 2 Replies View Related

VideoStudio :: 10 - Adding Additional Audio Tracks?

May 1, 2011

Is there a way to add an additional audio track to either the music track or voice tracks? In other words, instead of one voice track and one music track is there a way to add a third track? I have many sound effects and music and there are parts of my project that need more than two audio tracks.

View 3 Replies View Related

VideoStudio :: Adding Edited Audio To MP4 Video File

Jun 13, 2011

How I can add an edited audio file to a MP4 video file? The problem is that the MP4 video already has audio files included with the import. I want to change those file and add the edited files. It seems that I can't delete or cut the audio files out of the video clip to add the edited version. By the way I am using Corel Video Studio Pro X3

View 1 Replies View Related

VideoStudio :: Effect On Overlays

Sep 17, 2011

How do you add effects on an overlay? I have a overlay which I want to come in using a Barn Door effect but how should I apply that? If I have understood well you can't do that, in that case how do you determine time of the "fade in motion effect" in the attribute tab?

View 4 Replies View Related

3ds Max :: Adding Segment In Editable Poly?

Jul 14, 2012

I don't know how to add segment in editable poly.

View 2 Replies View Related

AutoDesk Smoke :: Nudge A Video Segment Or Audio Clip In Timeline With Shortcut Key

Feb 6, 2013

Is it possible to nudge a video segment or audio clip in timeline with a short cut key?In FCP7 I used this all the time.

View 4 Replies View Related

VideoStudio :: Ordering Tracks When Using Multiple Overlays

Oct 1, 2010

I'm using Videostudio 12 pro, and am using all 6 overlay tracks for chroma keyed effects. What I'm trying to do is order the tracks so I can control which tracks lays on top of the other. This can be done in Paint Shop Pro or any other publishing software, like Publisher, but I can't find anything that allows me to do this in Video Studio.

I've found that most of the overlay tracks lay on top of the previous track and it's causing difficulty in ordering the people in my clip. Is there a way to control this? Example, I'd like overlay track 5 to go on top of overlay 4 but it won't work.

View 6 Replies View Related

VideoStudio :: Transition Insertion To Work On Overlays

Dec 20, 2012

X5 Pro Ultimate
Default colour duration 6
Default transition effect 4
Jpeg images in overlay tracks (3 or 4)

As part of a slideshow I have applied transitions inbetween the colour clips but they are only working in the video track colours and not the images in the overlay tracks that are on top of the colours tracks.Is there any way of getting the overlays to transition too?

View 5 Replies View Related

VideoStudio :: X2 - Inserting Title Overlays Latter Video Clip?

Jul 20, 2012

I've been unable to resolve a problem encountered when I insert a "title" to overlay on the first 30 seconds of a corresponding video clip.

When played back, the subsequent portion of the remaining video clip past 30 seconds goes missing. However, on this "missing portion" the audio portion of the video clip is present while the video portion becomes solid black to the end of the clip. The same result happens when I burn it.

In the "PROJECT" playback mode both the title and the video play fine, as do both the video and title in the "CLIP" mode.

View 4 Replies View Related

AutoCAD Civil 3D :: Adding Fillable Or MTEXT To Annotative Segment Table

Dec 5, 2013

When preparing surveys i often use the annotative labels and tables available in Civil 3d. I am familiar with modifying label & table styles, but i have not yet been able to figure out how i can add a column to my table that contains fillable text. Because of that i am forced to create a table and then add text in paper space adjacent to or over the top of it.

View 1 Replies View Related

VideoStudio :: Extract Audio From Video Clip And Export Audio To Audacity

Jul 10, 2011

I have recently upgraded my old VideoStudio 12.00 to VideoStudio Pro X4 and have only just started using the program again after a couple of years of absence so I am still on a learning curve.

Can I extract the audio from a video clip and if so how and how can I convert it, if necessary into an Audio Interchange File Format, so that I can export it to a program such as Audacity for removing background wind noise before importing the Audio back into the videoStudio project.

I have tried using all the audio filter functions in VS to remove the background noise, to no avail.

View 6 Replies View Related

AutoCAD .NET :: Draw Triangle In Segment Of Polyline In Segment Direction

Sep 9, 2012

I want to draw triangle in segment of polyline in segment direction.

I have target segment and center point of it:

  Polyline line = ...
  LineSegment3d centerSegment = line.GetLineSegmentAt(centerSegmentIndex);
  Point3d centerPosition = centerSegment.MidPoint;

I can find direction of this segment:

  Vector3d zaDirection = line.GetLineSegmentAt(centerSegmentIndex).Direction;

Next, I create list of points:

  List<Point3d> points = new List<Point3d>();
  points.Add(centerPosition);
  points.Add(centerPosition.Add(new Vector3d(ZASize, +ZASize, 0)));
  points.Add(centerPosition.Add(new Vector3d(ZASize, -ZASize, 0)));

And draw it:

wd.Geometry.Polygon(new Point3dCollection(points.ToArray()));

Ok, I have triangle but... it's not in segment direction, it's X-direction.

I try to rotate it:

points.Add(centerPosition.Add(new Vector3d(ZASize, +ZASize, 0)).RotateBy(0, zaDirection, centerPosition));

But it's not the same as I want.

How I can draw triangle by serment direction?

View 5 Replies View Related

VideoStudio :: X6 - Select Segment / Cutting A Clip

Aug 17, 2013

I am familiar with Camtasia, but working my way in VSX6 now. In Camtasia, I could select a segment and simply cut it (with the scissors icon). In VS, it looks like I have to cut both ends of the segment and then delete it. Is that the correct and only way to do it, or is there a more direct way to cut a segment out?

View 6 Replies View Related

AutoCAD Civil 3D :: Flow Segment Label Using Total Flow Type Travel Time For Each Segment

Nov 27, 2012

Flow segment label using total Flow Type travel time for each segment:

C3D 2014 SP1
W7x64; i7 8gb; Radeon HD 5700
[URL]....

View 4 Replies View Related

Photoshop :: Adding Audio To Video - Preview Functionality Lost In CS6

Dec 5, 2012

When adding audio to a video file inside PS CS6 i loose the preview functionality. How can i fix this?

View 2 Replies View Related

Photoshop Elements :: Cannot Run Slideshow After Adding Audio - Program Crashes

Feb 17, 2013

I can add an audio to my slieshow. After that I cannot run the audio nor the slide show. the program crashes. I took screenshots of the error messages.

View 1 Replies View Related

Photoshop Elements :: Adding Audio To Slideshow - No Correct Compression File Installed?

Jan 20, 2013

I'm trying to add audio to a slide show.  I've done it before on this computer with no problem, but now it's telling me I don't have the correct compression files installed on my computer. 

View 1 Replies View Related

VideoStudio :: No Audio In X3?

Nov 5, 2011

I have on .avi video file from friend, that I can play OK with sound in VLan player, I just installed X3 and tried to make DVD from it and got it without sound, same thing if I play this loaded .avi in X3, don't have any sound ? Is there any secret encoding I have to look for ? Somebody told me that X3 will eat any format.

I"m running W7 with trial X3?

View 3 Replies View Related

VideoStudio :: Audio Lag In 11.5 Plus

Dec 10, 2010

I am having a problem with way slow audio in Ulead Videostudio 11.5 plus. I know it's an older version, but the format is similar or the same for some of the programs and maybe someone else has had that issue on even a new software version.

I managed to make some music videos with the software, after going to Youtube, as the manual for the software really isn't that great in all honesty. it simply doesn't tell you much detail on doing things. Putting in a music track to the video clips and then turning the sound on each clip all the way down wasn't a problem, but now that I want to do a normal video-I'm finding the sound in the virtual clip or whatever(which I recorded into my digital camera-mov. files), plays like Jabba the Hut off Starwars!

What do I do here to make it sound normal and be able to edit properly and share it in normal sound?I tried splitting the audio and then it sounded normal, BUT it still had that nasty slow sound on the audio. No matter if you mute it or pull the sound down in the video/audio clips in editing. How do I get rid of that slow sound or change it to make it right? Do I even need to split audio there?

View 2 Replies View Related

VideoStudio :: No Audio In X2?

Dec 13, 2010

So I go to edit some video and now all of a sudden there is no sound/audio playback in any of my clips. The files are fine. They play fine in other software, and in other editing software as well. But this is the my software of preference and I can't use it. WHAT THE HELL HAPPENED. The same thing has also happened to my DVD Workshop 2 software. And the same thing happened to at least 3 previous versions of VideoStudio. Everything works great and then one day BAM, no audio. The data is there because if I go ahead and render it again and play the new file on something else the audio is still there. So the problem is only on Corel/Ulead products. As a matter of fact I just downloaded the VS X3 demo. I cannot find anything about it online anywhere. If I cannot figure this out I am NEVER going to buy another Corel/Ulead product again. And I am a longtime user, way back to version 3 or 4. And for some idiotic reason I keep buying the new versions.

View 1 Replies View Related

VideoStudio :: No Audio In Capture

Jun 3, 2012

No Audio when capturing in VSX5. Also After I install the application any ac3 file or movie with ac3 audio will not play the audio.

View 8 Replies View Related

VideoStudio :: Slideshow - Audio DVD

Dec 16, 2010

Slideshow Creation: I'd like to make a slideshow DVD for Xmas to give out. I've made a lot of movies with VS but never a slide show and in fact i've never created a slideshow in any program.

Is this possible in VS10 or would it be better to use DVDLab Pro for this? If VS10 is sufficient to do this (just a fairly basic slideshow NOT HD). I really can't grasp it from the Manual since it really isn't covered in detail there (or did i miss it?) I'm looking to see what types of photos/graphics files and what resolution as well as a HOW TO. I'm clueless about slideshow creation.

Audio DVD Creation:

I do seem to recall that i did this once in VS10 - or was this a dream? Is there any tutorial on this as well?

View 4 Replies View Related

VideoStudio :: X4 - Audio Fade In And Out?

Jun 8, 2011

When using the audio fade in and out to activate the fade should the bars be highlighted or dimmed? I don't seem to hear any difference between them. (Vid pro x4)

View 2 Replies View Related

VideoStudio :: X4 / No Audio On AVI Files?

Jul 17, 2012

I got a new camera that outputs .avi files, and put together a video. When I click an individual clip in the timeline and play it, the audio plays... however, when I play the project, the audio does not play. It also does not play when I render it.

View 6 Replies View Related

VideoStudio :: No Audio On X4 Project?

Apr 13, 2013

Moved Videostudio X4 from a Win 7 machine to a new Win 8 PC.

Again it seems, audio plays fine when playing a clip from the preview window but not when playing on the timeline. (I had a similar problem with X10 and reported it in an older thread.)

Am searching now for more patches (and yes, I'm aware X6 is now the current version) but nothing obvious at the moment. Have found the SP 1/2/3 downloads on Corel's pages, but as it already upgraded to SP3 just after install, I'm guessing SP 1 and 2 are already covered..

View 1 Replies View Related

VideoStudio :: Pro X5 - Add Audio Using Mike

Nov 10, 2012

I have VideoStudio X5 Pro. Trying to add voice over using a mike. Problem I am having is the volume. On playback I can barely hear my voice. Have raise the volume level in X5 to the max, still have the issue.

View 1 Replies View Related

VideoStudio :: No Audio On Most Chapters?

Jan 4, 2011

My PC got a virus and I had to reinstall VideoStudio 11 afterwards.

For the first time since, I've burned a multi-chapter DVD and when I play it there is no audio on Chapters 2-4 but it sounds fine on the menu music and the first chapter. Each chapter is an AVI and plays fine in VS and then in the menu preview.

I've reinstalled the software a couple of times and tried a different DVD+R but still no audio on half of the disc.

View 1 Replies View Related

VideoStudio :: Pro X4 - Recording Audio From Mic

Mar 4, 2012

Can I record audio from a mic with pro x4

View 4 Replies View Related

VideoStudio :: No Audio On DVD Import In V11 Plus?

Feb 9, 2012

I have been using VS11+ for a few years, and have never run across this problem until now. I am trying to import DVDs recorded on a specific machine and am getting video but no audio. There is audio on the DVDs. I have tried importing both as mpg and as avi (in project properties) but neither works. Although I've been using VS, I am self-taught and not very knowledgeable about codecs, recoding, etc. I mainly use VS for importing video from DVDs, editing, rendering and burning onto DVDs. I am not certain of the make/model of the DVD recorder, but I do know it is new. (I did a keyword search for "import DVD no audio" before posting, but it returned over 2,000 results).

View 6 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved