46 | f4Player is an open source flash (AS3) video/stream player and library project. It is so small that it is only 10kb (with skin file) and totally free under GPL license.
47 |A few years ago I wanted to play a video (flv) on my webpage and I developed a realy small, simple flv player and I'm still developing it for HTML5 support and JS interface.
48 |I've only tested it with flv, f4v, mp4, stream, live stream, subscribed CDN and it works enough for me for now!
49 |It is under GPLv3 License.
50 | 53 |* f4Player write own log on browser's "console".
67 |
76 | <object id="f4Player" width="480" height="270" type="application/x-shockwave-flash" data="player.swf?v1.3.5">
77 | <param name="movie" value="player.swf?v1.3.5" />
78 | <param name="quality" value="high" />
79 | <param name="menu" value="false" />
80 | <param name="scale" value="noscale" />
81 | <param name="allowfullscreen" value="true">
82 | <param name="allowscriptaccess" value="always">
83 | <param name="swlivevonnect" value="true" />
84 | <param name="cachebusting" value="false">
85 | <param name="flashvars"
86 | value="skin=[SKIN_FILE]&video=[VIDEO_FILE]"/>
87 | <a href="http://www.adobe.com/go/flashplayer/">Download it from Adobe.</a>
88 | <a href="http://gokercebeci.com/dev/f4player" title="flv player">flv player</a>
89 | </object>
90 |
91 | or
92 |
93 | <embed type="application/x-shockwave-flash" src="player.swf?v1.3.5" id="f4Player" width="480" height="270" flashvars="skin=[SKIN_FILE]&video=[VIDEO_FILE]" allowscriptaccess="always" allowfullscreen="true" bgcolor="#000000"/>
94 | <noembed>
95 | You need Adobe Flash Player to watch this video.
96 | <a href="http://get.adobe.com/flashplayer/">Download it from Adobe.</a>
97 | <a href="http://gokercebeci.com/dev/f4player" title="flv player">flv player</a>
98 | </noembed>
99 |
100 | 107 | skin= => skin file (swf) 108 | stream=rtmp:// => stream url 109 | streamname=livestream => stream name 110 | live=1 => default value 0 111 | subscribe=1 => default value 0 112 | thumbnail=null => thumbnail image 113 | video=myvideo.mp4 => video file 114 | autoplay=1 => default value 0 115 |116 |