________________________________
From: Chris Pugh <nisse...@googlemail.com>
To: swftools-common <swftools-common@nongnu.org>
Cc: iosif budulai <ibudu...@yahoo.ca>
Sent: Wed, August 4, 2010 12:44:30 AM
Subject: Re: [Swftools-common] swfc video

On 4 August 2010 00:13, Ricardo Pedroso <rmdpedr...@gmail.com> wrote:
> On Tue, Aug 3, 2010 at 10:49 PM, iosif budulai <ibudu...@yahoo.ca> wrote:
>> Hi,
>> I am trying to get .flv video streaming to work with swfc.
>> .flash filename="video.swf" fps=24 bbox=900x500 background=grey version=8
>> .action:
>> video_nc = new NetConnection();
>> video_nc.connect(null);
>> video_ns = new NetStream(video_nc);
>> video_holder = new Video();
>> video_holder.attachNetStream(video_ns);
>> video_ns.play('600.flv');
>> video_holder._x=50;
>> video_holder._y=50;
>> .end
>> .end
>> What I get working from this is only the sound.
>> If I remove all the lines with video_holder the result is the same, only
>> sound.
>> The problem I guess here is the video object.
>> What I found out is that even in Adobe Flash you can't create the video
>> object only with actionscript 2:
>>http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part3_Using_V2_Components_1.html
>>l
>> Video streaming with flex:
>>http://livedocs.adobe.com/flex/201/langref/flash/media/Video.html#includeExamplesSummary
>>y
>> Ming videostreaming example:
>> http://www.gazbming.com/
>> Here I can't find the correspondence of this line  $stream = new
>> SWFVideoStream(); in swfc.
>> I am not sure this feature exist in swfc and I am not sure this can be
>> created with actionscript 2 alone.
>> There is any solution to this or any work around?
>> Regards,
>> Iosif
>>
>
> Jens Michel Gens have a bunch of swfc samples
> (http://jeanmichel.gens.free.fr/swfc/)
>
> This one is for video, but in as3 - 
>http://jeanmichel.gens.free.fr/swfc/video.sc
>
> Ricardo
>

It''s a good while back now..  can't actually recall whether I got this
going or not with swfc.  Will have to check.   It can certainly be done
under AS2.

Embedding the Video Object within a Movie Object, then embedding
that Movie Object on the Stage, may help..

The alternative is using the Flash Player FLV component, or else
embedding a pre-compiled basic SWF.player, which allows full
customisation.  Plenty of them out there to grab..

Cheers,



Chris.





Hi Chris,

I was thinking about pre-compiles swf player, yes this can be a solution.
I haven't get it work embedding the video object into a movie clip.

I have to dig more to get familiar with FLV component, and I like to keep the 
code as simple as possible and to have full control over it.
Thanks.

Regards,
Iosif

Reply via email to