Rank: Newbie
Groups: Registered
Joined: 8/8/2015(UTC) Posts: 5
Thanks: 1 times
|
I open a video on youtube animated lower third. Is there someone who can give me a tutorial or pay to obtain them?
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 3/7/2012(UTC) Posts: 2,636 Location: Canada Thanks: 33 times Was thanked: 506 time(s) in 475 post(s)
|
I suspect that was done with 'Microsoft Expression Blend' (XAML editor of choice): https://www.microsoft.com/expression/eng/https://www.microsoftvir...th-blend-jump-start-8260But until "Kayla" comes forward to reveal themselves and their 'products', we are not likely to know what the deal is with these lower thirds or if they can be purchased. I would suggest attempting to contact them through their YouTube channel, but it would seem there is very little feedback being provided. Although, given the quality of these lower thirds, I suspect we will hear more about them from their creator in the near future. This is their site: https://kalisalakmultimedia.wordpress.com/Ice
|
1 user thanked IceStream for this useful post.
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 6/11/2012(UTC) Posts: 36 Location: jakarta Thanks: 34 times Was thanked: 11 time(s) in 6 post(s)
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 5/5/2013(UTC) Posts: 53 Location: eeuu
Thanks: 1 times Was thanked: 4 time(s) in 3 post(s)
|
IceStream wrote:I suspect that was done with 'Microsoft Expression Blend' (XAML editor of choice): https://www.microsoft.com/expression/eng/https://www.microsoftvir...th-blend-jump-start-8260But until "Kayla" comes forward to reveal themselves and their 'products', we are not likely to know what the deal is with these lower thirds or if they can be purchased. I would suggest attempting to contact them through their YouTube channel, but it would seem there is very little feedback being provided. Although, given the quality of these lower thirds, I suspect we will hear more about them from their creator in the near future. This is their site: https://kalisalakmultimedia.wordpress.com/Ice yeap with expression blend you can do that. .but still no loop animation when is on. only have animation when they in and out. If I wrong ..Kayla please tell me. .if there animation in the middle when is on. ..I want it. Thanks
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 3/7/2012(UTC) Posts: 2,636 Location: Canada Thanks: 33 times Was thanked: 506 time(s) in 475 post(s)
|
@ joe1378
If you watch the promo, you will notice Kayla has built into the vMix 'Title Editor' interface a graphics/video background layer that can be played with the lower third, essentially layering a prerendered alpha channel 'flare' video in the background, so although there is no motion animation in the original lower third aside from IN and OUT, applying the video to the background finishes the effect. At least, that is how I perceive it to be.
Ice
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 6/11/2012(UTC) Posts: 36 Location: jakarta Thanks: 34 times Was thanked: 11 time(s) in 6 post(s)
|
joe1378 wrote:IceStream wrote:I suspect that was done with 'Microsoft Expression Blend' (XAML editor of choice): https://www.microsoft.com/expression/eng/https://www.microsoftvir...th-blend-jump-start-8260But until "Kayla" comes forward to reveal themselves and their 'products', we are not likely to know what the deal is with these lower thirds or if they can be purchased. I would suggest attempting to contact them through their YouTube channel, but it would seem there is very little feedback being provided. Although, given the quality of these lower thirds, I suspect we will hear more about them from their creator in the near future. This is their site: https://kalisalakmultimedia.wordpress.com/Ice yeap with expression blend you can do that. .but still no loop animation when is on. only have animation when they in and out. If I wrong ..Kayla please tell me. .if there animation in the middle when is on. ..I want it. Thanks As performed by martin makes ticker. Approximately duration of 2 minutes to let the text run. We can optimize the time in the timeline even until the time at will to create animations.
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 5/5/2013(UTC) Posts: 53 Location: eeuu
Thanks: 1 times Was thanked: 4 time(s) in 3 post(s)
|
yeap with expression blend you can do that. .but still no loop animation when is on. only have animation when they in and out. If I wrong ..Kayla please tell me. .if there animation in the middle when is on. ..I want it. Thanks
Done with 2 overlay ,I made it with a flare loop sequence, with shortcut I setup the overlays to start overlay 1 and 2.. Lowerthird Youtube video
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 12/27/2012(UTC) Posts: 5,219 Location: Belgium Thanks: 292 times Was thanked: 955 time(s) in 790 post(s)
|
Loop animation when on (granted no start or stop animation ) save code as *.xaml Code:<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" Width="1920" Height="1080" xmlns:my="clr-namespace:vMixTitleLibrary;assembly=vMixTitleLibrary">
<UserControl.Resources>
<Storyboard x:Key="Storyboard1" >
<DoubleAnimation Storyboard.TargetName="xformScale"
Storyboard.TargetProperty="ScaleX"
From="1" To="-1" Duration="0:0:3"
AutoReverse="True"
RepeatBehavior="Forever" />
<DoubleAnimation Storyboard.TargetName="xformRotate"
Storyboard.TargetProperty="Angle"
From="0" To="360" Duration="0:0:5"
RepeatBehavior="Forever" />
</Storyboard>
</UserControl.Resources>
<UserControl.Triggers>
<EventTrigger RoutedEvent="FrameworkElement.Loaded">
<BeginStoryboard Storyboard="{StaticResource Storyboard1}"/>
</EventTrigger>
</UserControl.Triggers>
<Grid>
<TextBlock Text="vMix" FontSize="144pt" FontFamily="Arial Black"
HorizontalAlignment="Center" VerticalAlignment="Center"
RenderTransformOrigin="0.5 0.5">
<TextBlock.RenderTransform>
<TransformGroup>
<ScaleTransform x:Name="xformScale" />
<RotateTransform x:Name="xformRotate" />
</TransformGroup>
</TextBlock.RenderTransform>
</TextBlock>
</Grid>
</UserControl>
|
1 user thanked doggy for this useful post.
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 6/11/2012(UTC) Posts: 36 Location: jakarta Thanks: 34 times Was thanked: 11 time(s) in 6 post(s)
|
joe1378 wrote:
yeap with expression blend you can do that. .but still no loop animation when is on. only have animation when they in and out. If I wrong ..Kayla please tell me. .if there animation in the middle when is on. ..I want it. Thanks
Hi Joe, I'm sorry too late to respond. There is little reason why I did not make the animation loop flare. There are some PC cases provide animation loop, making an increase in CPU usage. Now please check the PM to get .xaml file that has been my fix.
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 6/11/2012(UTC) Posts: 36 Location: jakarta Thanks: 34 times Was thanked: 11 time(s) in 6 post(s)
|
doggy wrote:Loop animation when on (granted no start or stop animation ) save code as *.xaml Code:<UserControl
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" Width="1920" Height="1080" xmlns:my="clr-namespace:vMixTitleLibrary;assembly=vMixTitleLibrary">
<UserControl.Resources>
<Storyboard x:Key="Storyboard1" >
<DoubleAnimation Storyboard.TargetName="xformScale"
Storyboard.TargetProperty="ScaleX"
From="1" To="-1" Duration="0:0:3"
AutoReverse="True"
RepeatBehavior="Forever" />
<DoubleAnimation Storyboard.TargetName="xformRotate"
Storyboard.TargetProperty="Angle"
From="0" To="360" Duration="0:0:5"
RepeatBehavior="Forever" />
</Storyboard>
</UserControl.Resources>
<UserControl.Triggers>
<EventTrigger RoutedEvent="FrameworkElement.Loaded">
<BeginStoryboard Storyboard="{StaticResource Storyboard1}"/>
</EventTrigger>
</UserControl.Triggers>
<Grid>
<TextBlock Text="vMix" FontSize="144pt" FontFamily="Arial Black"
HorizontalAlignment="Center" VerticalAlignment="Center"
RenderTransformOrigin="0.5 0.5">
<TextBlock.RenderTransform>
<TransformGroup>
<ScaleTransform x:Name="xformScale" />
<RotateTransform x:Name="xformRotate" />
</TransformGroup>
</TextBlock.RenderTransform>
</TextBlock>
</Grid>
</UserControl>
Hi Doggy, Thank participate respond and help solve problems. XAML code above, shows an animation loop for the entire storyboard. That Joe wanted only certain parts "flare" that should loop animation. while the other stops. and has now been fixed. Thank You
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 12/27/2012(UTC) Posts: 5,219 Location: Belgium Thanks: 292 times Was thanked: 955 time(s) in 790 post(s)
|
can we see an examplecode with start/end animation and loop within ?
Guy
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 5/5/2013(UTC) Posts: 53 Location: eeuu
Thanks: 1 times Was thanked: 4 time(s) in 3 post(s)
|
kayllastudio wrote:joe1378 wrote:
yeap with expression blend you can do that. .but still no loop animation when is on. only have animation when they in and out. If I wrong ..Kayla please tell me. .if there animation in the middle when is on. ..I want it. Thanks
Hi Joe, I'm sorry too late to respond. There is little reason why I did not make the animation loop flare. There are some PC cases provide animation loop, making an increase in CPU usage. Now please check the PM to get .xaml file that has been my fix. thanks..last year I created some .xaml and I noticed that the cpu increase or slowdown the speed in the animation playing the .xaml. Thats why ..I created some lowerthirds with flash .swf ...let mectry the last one that You send. Thanks
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 6/11/2012(UTC) Posts: 36 Location: jakarta Thanks: 34 times Was thanked: 11 time(s) in 6 post(s)
|
joe1378 wrote:
thanks..last year I created some .xaml and I noticed that the cpu increase or slowdown the speed in the animation playing the .xaml.
It sounds strange. So far I make a XAML works fine on my PC. Proc i7 4770 mem 8Gb W7 OS x64 Grph IntelHD 4600 Indeed, when trying to standard Graphic card, in vMix Render Time: more than 20ms. And make video display becomes broken. Martin possibility of more to know for this problem.
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 5/5/2013(UTC) Posts: 53 Location: eeuu
Thanks: 1 times Was thanked: 4 time(s) in 3 post(s)
|
kayllastudio wrote:joe1378 wrote:
thanks..last year I created some .xaml and I noticed that the cpu increase or slowdown the speed in the animation playing the .xaml.
It sounds strange. So far I make a XAML works fine on my PC. Proc i7 4770 mem 8Gb W7 OS x64 Grph IntelHD 4600 Indeed, when trying to standard Graphic card, in vMix Render Time: more than 20ms. And make video display becomes broken. Martin possibility of more to know for this problem. yeap last xaml with loop increase 12% of cpu. My specs: Intel Core I7 960 3.20 8 gb ram gtx 560 ti windows 10. 64bit Last year specs was the same ,but with wind 7 64bit. Joe1378
|
|
|
|
Rank: Newbie
Groups: Registered
Joined: 8/8/2015(UTC) Posts: 5
Thanks: 1 times
|
joe1378 wrote:
yeap with expression blend you can do that. .but still no loop animation when is on. only have animation when they in and out. If I wrong ..Kayla please tell me. .if there animation in the middle when is on. ..I want it. Thanks
Done with 2 overlay ,I made it with a flare loop sequence, with shortcut I setup the overlays to start overlay 1 and 2.. Lowerthird Youtube video Hi friend, Do you already have Animation News Lower Third from kayla? How can you obtain them? If kayllastudio still here, please how can I use the News Lower Third. Regards,
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 5/5/2013(UTC) Posts: 53 Location: eeuu
Thanks: 1 times Was thanked: 4 time(s) in 3 post(s)
|
atit wrote:joe1378 wrote:
yeap with expression blend you can do that. .but still no loop animation when is on. only have animation when they in and out. If I wrong ..Kayla please tell me. .if there animation in the middle when is on. ..I want it. Thanks
Done with 2 overlay ,I made it with a flare loop sequence, with shortcut I setup the overlays to start overlay 1 and 2.. Lowerthird Youtube video Hi friend, Do you already have Animation News Lower Third from kayla? How can you obtain them? If kayllastudio still here, please how can I use the News Lower Third. Regards, Kayla's email kayllastudio@gmail.comJoe1378
|
|
|
|
Rank: Newbie
Groups: Registered
Joined: 8/8/2015(UTC) Posts: 5
Thanks: 1 times
|
Thank Kayla, Thank you Joe. I've been getting and being enjoyed.
I love vmix
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 6/11/2012(UTC) Posts: 36 Location: jakarta Thanks: 34 times Was thanked: 11 time(s) in 6 post(s)
|
Hi Atit, Thank you for visiting my youtube channel. I have made soccer design pack which can be used to project the sport. watch here:
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 7/6/2013(UTC) Posts: 45 Location: Slangor Thanks: 25 times Was thanked: 4 time(s) in 4 post(s)
|
|
|
|
|
Rank: Advanced Member
Groups: Registered
Joined: 4/16/2013(UTC) Posts: 406 Location: Iowa Thanks: 281 times Was thanked: 32 time(s) in 29 post(s)
|
That is exactly what I am trying to figure out how to do! The vMix example code is a good start. Looking for more examples like that!
|
|
|
|
Forum Jump
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.
Important Information:
The vMix Forums uses cookies. By continuing to browse this site, you are agreeing to our use of cookies.
More Details
Close