|
Home > Archive > Macromedia Flash Server > April 2005 > video recording issue
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
video recording issue
|
|
|
| Hi
I am using server side code to merge two videos. Problem is that the newly
recorded video is of less length than it should be. I mean if video 1 is of
17.1 and video 2 is of 5 then new video is of 20 and the data from merged
video is lost in some proportions from video1 and video2. What is the
resolve. Here is the code I am using
application.myStream = Stream.get(newName);
if (application.myStream) {
application.myStream.play(video1,0,-1,false);
application.myStream.play(video2,0,-1,false);
application.myStream.record();
}
Regards
Rishi
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
| Bill Sanders 2005-04-07, 5:56 pm |
| Rishi,
Try this:
application.myStream = Stream.get(newName);
if (application.myStream) {
application.myStream.record();
application.myStream.play(video1,0);
application.myStream.play(video2,0,-1,false);
}
HTH,
Bill
On Apr 1, 2005, at 1:02 AM, Rishi wrote:
> Hi
>
> I am using server side code to merge two videos. Problem is that the
> newly
> recorded video is of less length than it should be. I mean if video 1
> is of
> 17.1 and video 2 is of 5 then new video is of 20 and the data from
> merged
> video is lost in some proportions from video1 and video2. What is the
> resolve. Here is the code I am using
>
>
> application.myStream = Stream.get(newName);
> if (application.myStream) {
> application.myStream.play(video1,0,-1,false);
> application.myStream.play(video2,0,-1,false);
> application.myStream.record();
> }
>
> Regards
> Rishi
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>
bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
| |
|
| Hi Bill
Its same as I faced earlier. For further info if I write
application.myStream = Stream.get(newName);
if (application.myStream) {
application.myStream.record();
application.myStream.play(video1,0);
}
I get the flv to its full but with the below code the flv recorded is again
shortened from its original length.
Regards
Rishi
-----Original Message-----
From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
[mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of Bill Sanders
Sent: Friday, April 01, 2005 3:40 PM
To: FlashComm Mailing List
Subject: Re: [FlashComm] video recording issue
Rishi,
Try this:
application.myStream = Stream.get(newName);
if (application.myStream) {
application.myStream.record();
application.myStream.play(video1,0);
application.myStream.play(video2,0,-1,false);
}
HTH,
Bill
On Apr 1, 2005, at 1:02 AM, Rishi wrote:
> Hi
>
> I am using server side code to merge two videos. Problem is that the
> newly
> recorded video is of less length than it should be. I mean if video 1
> is of
> 17.1 and video 2 is of 5 then new video is of 20 and the data from
> merged
> video is lost in some proportions from video1 and video2. What is the
> resolve. Here is the code I am using
>
>
> application.myStream = Stream.get(newName);
> if (application.myStream) {
> application.myStream.play(video1,0,-1,false);
> application.myStream.play(video2,0,-1,false);
> application.myStream.record();
> }
>
> Regards
> Rishi
>
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
>
bill sanders | www.sandlight.com | bloomfield, ct | 860-242-2260
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
|
|
|
|
|