Best practices for building Flash video player - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T14:54:15Z http://stackoverflow.com/feeds/question/7674 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/7674/best-practices-for-building-flash-video-player 4 Best practices for building Flash video player Flubba 2008-08-11T11:17:36Z 2008-10-16T12:43:18Z <p>We have a custom-built Flash-based video player that I maintain, and it needs to support preroll ads and ideally both progressive video playback and streaming depending on a server switch.</p> <p>I've been working with the flvPlayback component but am finding myself a little out of my depth. Are there any good tutorials or resources for understanding the difference between netstream and flvPlayback? Or is one part of the other? Have googled without success.</p> <p>For the preroll ads we'll probably use DART In-Stream, which is part of the reason I feel I'm losing a grip on the best way to structure this thing.</p> <p>Any help with best practices or links most appreciated - ta!</p> http://stackoverflow.com/questions/7674/best-practices-for-building-flash-video-player/8982#8982 4 Answer by Michael Stum for Best practices for building Flash video player Michael Stum 2008-08-12T15:44:27Z 2008-08-12T15:44:27Z <p>I would definitely have a look at the JW Flash Media Player:</p> <p><a href="http://www.jeroenwijering.com/?item=JW_FLV_Player" rel="nofollow"><a href="http://www.jeroenwijering.com/?item=JW_FLV_Player" rel="nofollow">http://www.jeroenwijering.com/?item=JW_FLV_Player</a></a></p> <p>It's Open Source, and I found the Source quite clean and easy to understand, it also supports playlists. I don't know the DART In-Stream stuff, but maybe you could "creatively use" the playlist feature to achieve that?</p> <p>Source Code is available here:</p> <p><a href="http://code.jeroenwijering.com/trac/" rel="nofollow"><a href="http://code.jeroenwijering.com/trac/" rel="nofollow">http://code.jeroenwijering.com/trac/</a></a></p> http://stackoverflow.com/questions/7674/best-practices-for-building-flash-video-player/9809#9809 1 Answer by grapefrukt for Best practices for building Flash video player grapefrukt 2008-08-13T13:43:34Z 2008-08-13T13:43:34Z <p>I don't really like the flvPlayback-component, it's hard to handle both implementation wise and somewhat tricky to skin nicely and it's also quite bloated. So I'd opt to use either the JW Flash Media Player as recommended by Michael above or rolling my own entirely. </p> http://stackoverflow.com/questions/7674/best-practices-for-building-flash-video-player/33099#33099 2 Answer by onekidney for Best practices for building Flash video player onekidney 2008-08-28T18:58:05Z 2008-08-28T18:58:05Z <p>I've used the FLVPlayBack component for a while now and while it has some quirks I find it to be pretty versatile without having to write a lot of code. The only large drawback I found is that if you try to stream a file that doesn't exist the playstate remains "loading" and never resolves - at that point, you can't load anything else into and it'll stay loading forever.</p> <p>For what it sounds like you are doing though it should handle that stuff fine - any of the default control bars will handle the status of either your progressive or streaming videos and it has some cool closed captioning features to boot. </p> <p>As for documentation - Adobe's LiveDocs is really helpful:</p> <p><a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html" rel="nofollow">http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/fl/video/FLVPlayback.html</a></p> <p>Can't speak on the DART stuff though - never had to deal with it.</p> http://stackoverflow.com/questions/7674/best-practices-for-building-flash-video-player/208391#208391 1 Answer by jrutter for Best practices for building Flash video player jrutter 2008-10-16T12:43:18Z 2008-10-16T12:43:18Z <p>If you are interested in writing your own video player, you should pick up the following book; Learning ActionScript 3 <a href="http://www.learningactionscript3.com/" rel="nofollow">http://www.learningactionscript3.com/</a>. It will give you a great understanding of AS3 and there is also a chapter dedicated to creating your own basic flash player, which you can then build upon.</p>