FLV vs SWF
- Started
- Last post
- 32 Responses
- Engage_London0
having good fun with that player... now try to make it appear as multiple movies... fun
- ********0
now try to make it appear as multiple movies... fun
Engage_London
(Aug 19 05, 05:53)um, yeah. maybe replace the word fun with nightmare...
- Engage_London0
exactly... in principle it should work... it don't :D
- ********0
I've never tried to play multiple flv's at one time, but it can be difficult enough just to clear an flv from the player.
Mind you, I haven't used the one I sent you.
- fusionpixel0
SWFs load entirely before they start to play.
Trying to find a tutorial too..
MX_OnD
(Aug 19 05, 03:31)-----
False
SWFs load and they start playing right away, that is why you can use the ifFrameisLoaded command to see if a certain frame is loaded or check how many bites are loaded before letting the file play.
:)
- enjine0
FLVs offer ridiculously quick downloads and awesome playback quality.
just use this a bit o code like this:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
vid.attachVideo(ns);
ns.play("some.flv");(nicked from bit-101)
i just used an FLV in this media player:
http://www.rollingstones.com/abiā¦(look for the video link)
- UndoUndo0
nice link enjine. so flv's although bigger will playback quicker and have better quality over SWF??
- enjine0
hell yeah.
they use a totally different codec.
the flash 8 codec (i forget what its number is) will be even better.great things are on the way :)
- UndoUndo0
yeah the alpha channel and chroma key support looks great
- UndoUndo0
nice link enjine. so flv's although bigger will playback quicker and have better quality over SWF??
UndoUndo............................
sorry what I meant here is will a swf made from a FLV have any benefits over using an FLV directly apart from file size??
- ********0
SWFs load entirely before they start to play.
Trying to find a tutorial too..
MX_OnD
(Aug 19 05, 03:31)-----
False
SWFs load and they start playing right away, that is why you can use the ifFrameisLoaded command to see if a certain frame is loaded or check how many bites are loaded before letting the file play.
:)
fusionpixel
(Aug 19 05, 06:33)False,
ifFrameLoaded was deprecated
in Flash 5, it was already superceded by
the _framesLoaded property in Flash 4.Recommended in reality is only the use of getBytesLoaded which is much more accurate.
And of course since FlashMX2004 the MovieClipLoader Class.
- enjine0
sorry what I meant here is will a swf made from a FLV have any benefits over using an FLV directly apart from file size??
UndoUndo
(Aug 19 05, 07:36)no, you'd never want to make an swf from a flv. you will be using a way older codec (not to mention recompressing something that's already compressed).