리눅스, 무선 네트워크, 윈도우, 프로그래밍 등에 관한 삽질들을 기록하는 곳
http://www.jeroenwijering.com/?item=Flash_Video_Player

여기서 CCL  라이센스로 flv player 를 다운받을 수 있다.

상업용으로 쓸려면은 15유로를 내라고 되어 있다.

(이 홈페이지에 보면 mp3 플레이어도 있다. 이것도 함 써봐야지 ㅋ)

사용법은 매우 간단한데

아랫분이 설명을 잘해 두었다.
http://blog.daum.net/iamkyg/9814602

(근데 height 에 19를 더하는게 아니라 20을 더하는게 맞는 듯..., 윗 링크에서 )

아래는 설명서 파일 일부 발췌

INSTALLING

The example flvplayer.html works right out of the box. If you look at it's source code (in a text or HTML editor), you can see that both instances of the flvplayer are inserted in the page with a small javascript. These javascripts use the external ufo.js script by Bobby van der Sluis in order to prevent the annoying "click here to activate" message. If you copy the flvplayer to your website, make sure you don't forget to copy the ufo.js file as well. The ufo.js is inserted in the HTML page right at the top:

<script type="text/javascript" src="ufo.js"></script>

An insertion javascript allows you to set the location of the movie, it's width and height, the version and build of Flash that is needed (just leave this to 7 and 0) and the backgroundcolor of the movie. You can also send a list of so-called Flashvars to the script (for that see the next paragraph):

<p id="player1"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p>
<script type="text/javascript">
var FO = { movie:"flvplayer.swf",width:"300",height:"20",majorversion:"7",build:"0",bgcolor:"#FFFFFF",
flashvars:"file=video.flv&showdigits=true&autostart=true" };
UFO.create(FO,"player1");
</script>

When the HTML page loads, the javascript replaces the part of your HTML with the "id" you provided in the javascript (in this case the paragraph with the id "player1"), and you have a Flash player running on your website.

If you cannot use javascript on your website (for example if you run the flvplayer on a profile site like MySpace), you can use an "embed" code instead of the javascript. Your flvplayer.swf will probably be on another server then. That is OK, but note that your playlist.xml should always reside on the same server than your SWF, or else the security restrictions won't allow the flvplayer to load it:

<embed src="http://www.myfileserver.com/folder/flvplayer.swf" width="300" height="200" bgcolor="#FFFFFF"
type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"
flashvars="file=http://www.myfileserver.com/folder/playlist.xml&showdigits=true&autostart=true" /
http://bluezery.com/blog/trackback/78
  1. WebFLV 동영상 플레이어 버젼2 공개

    FROM 얘네이뽀 스토리 - NA4 UCC 서비스 군단 2007/07/16 11:26  삭제

    Web FLV 버전2 두번째 버젼입니다. 역시 디자인은 젬병이라 ㄱ- 좋은 디자인 있으면 피드백 주세요. 추가사항으로는 스펙트럼 혹은 오실로스콥스를 표시할수 있게 되어있으며 한 페이지에 여러개의 영상을 한꺼번에 표시하시면 제대로 작동하지 않을수 있습니다. (스펙트럼을 사용하고 싶으시면 한 페이지에 한개의 영상만 업로드해 사용해 보세요) 또한 버젼1에서 지원하지 않는 YouTube영상의 재생이 가능해졌습니다. 사용법 사용법은 이하의 태그를 복사해 붙여..

Your comment is the critical success factor for the quality of blog post ..
  1. BlogIcon Yumeno_Sekai 2006/12/17 11:36  댓글주소  수정/삭제  댓글쓰기

    유익한 정보 감사합니다.
    태그쓰는법은 알았는데요. 다운받은 파일을 어떻게 해야 되는지 모르겠습니다.
    http://blog.daum.net/iamkyg/9814602 이분 불로그 가보면 zip 파일이 2개가 있는데 2개 다 다운받아야 하는건지 2개 다 같은건지도 잘 모르겠고여. 인스톨은 어떻게 하는지좀 알려주세요..

    • BlogIcon BlueZery 2006/12/17 21:03  댓글주소  수정/삭제

      zip 파일이 두개 있긴 한데 굳이 받으실 필요 없이
      flvplayer.swf(flv 플레이어입니다.) 파일만 받으시면 됩니다.(zip파일아래링크가 있네요)
      이 파일이 온라인에서 플래시를 플레이시켜 주는 파일입니다.
      그리고 아래와 같이 태그를 주시면 됩니다.

      <EMBED src=http://플레이어파일위치?autoStart=false&image=http://처음실행전보여줄그림파일위치&file=http://플레이할flv파일 width=400 height=285 type=application/x-shockwave-flash >

      위치만 잘 지정해 주시면 됩니다. image 부분은 굳이 안주셔도 되고
      주의하실건 높이가 실제 flv 파일 높이보다 +20 해주셔야 됩니다.

  2. BlogIcon gum2 2006/12/17 12:15  댓글주소  수정/삭제  댓글쓰기

    오호 좋은 정보 감사드립니다^^