2014. 5. 25. 16:13

자게에 어떤분이 프레이어 만들고 싶은데 리리슐츠님꺼 보고 못알아보겠다고 해서 다시 올립니다.

최대한 쉽게 풀어놓고 자세하게 설명했습니다

그리고 맨밑에 예제로 플레이어 실행되고 있는데, 듣기 싫으시다면 끄시고 봐주세요...

-------------------------------------------


안녕하세요?

이번 시간엔 jwplayer 를 이용하여 여러 mp3를 재생시켜보겠습니다


준비물: Apache or ngnix(선택), jwplayer(3.16), config.xml, list.xml

jwplayer 3.16: http://share.dnip.co.kr/Files/heartbrea/jw_player316.swf

config 양식: http://share.dnip.co.kr/Files/heartbrea/config.xml

list.xml 양식: http://share.dnip.co.kr/Files/heartbrea/list.xml


여기서 jwplayer는 플레이어 역할을 하고 건들일 필요가 없습니다

config.xml은 제목 그대로 설정 파일입니다. config.xml은 자동 재생, 플레이어 색상, 사운드 크기, 폰트 색상, 순차적 및 랜덤 재생 등... 사람으로 치면 머리겠죠

list.xml은 재생할 음악, 클릭시 이동할 주소, 타이틀을 담당합니다

만약 플레이어를 만들어서 웹에 게시하실땐 이글루스, 티스토리 같은곳에 업로드 하시면 됩니다

파일이름은 임의로 수정이 가능합니다


이제 config.xml를 만들어보겠습니다

양식을 다운받으면 대충 이런식으로 적혀 있을겁니다

-----------------------------------------

<config>
<allowscriptaccess>always</allowscriptaccess>
<allownetworking>all</allownetworking>
<allowfullscreen>false</allowfullscreen>
<autostart>true</autostart>
<repeat>always</repeat>
<shuffle>true</shuffle>
<icons>false</icons>
<volume>100</volume>
<linktarget>_top</linktarget>
<displayheight>0</displayheight>
<thumbsinplaylist>false</thumbsinplaylist>
<showeq>false</showeq>
<backcolor>0x5868A7</backcolor>
<frontcolor>0xB5DFEF</frontcolor>
<lightcolor>0x0000FF</lightcolor>
<overstretch>false</overstretch>
<usefullscreen>true</usefullscreen>
</config>

-----------------------------------------


<allowscriptaccess>always</allowscriptaccess>
<allownetworking>all</allownetworking>
<allowfullscreen>false</allowfullscreen>

이 위에 3개를 이렇게 설정시, >| 누르면 순차적 재생되고, 자동으로 노래가 끝나고 다음 재생으로 넘어갈땐, 랜덤으로 됨.(suffle 값을 ture 기준. 사용안할시, 위에 3개 없애도 무방)



autostart: 자동 재생 유무 설정입니다. true 하면 자동재생, false 하면 수동재생입니다

shuffle: true 설정시 랜덤 재생, flase 설정시 순차적 재생

icons: 아이콘 파일 유무 설정. 현 버전에서 지원되는지는 의문.

volume: 0~100 사이 값으로 설정. 100은 최대 음령

displayheight: 상단에 이미지 표시할 공간을 설정합니다. 0일시 표시가 되지 않습니다(이미지 표시를 할시, list.xml 수정)

showeq: 이퀄라이전가 뭐 그거 막대기 같은거 막 움직이고 하는거. true일시 표시

backcolor: 배경 색상

frontcolor: 맨앞에거 색상

lightcolor: 글자 마우스 커서 대면 색상




list.xml

-----------------------------------------

<?xml version="1.0" encoding="UTF-8" ?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<title></title>
<info></info>
<trackList>
<track>
<creator></creator>
<title></title>
<location></location>

<image></image>
<link rel="captions"/>
<info></info>
</track>
<track>
<creator></creator>
<title></title>
<location></location>

<image></image>
<link rel="captions"/>
<info></info>
</track>
<track>
<creator></creator>
<title></title>
<location></location>

<image></image>
<link rel="captions"/>
<info></info>
</track>
</trackList>
</playlist>

-----------------------------------------


title: 제목

creator: 앨범재목

location: 음악파일 주소(http)

image: 플레이어 상단 이미지. 표시할시, config.xml displayheight 값 설정. 사용하지않을시

<image></image>

삭제해도 무관.


info: 오른쪽 화살표를 누를시 이동할 주소. 네이버 같은곳에선 통하지 않음. 사용하지 않을 시,

<link rel="captions"/>
<info></info>

둘다 지워도 됨



 

이때 크기는 480x360 로 가정할때 주소는

<embed type="application/x-shockwave-flash" src="jwplayer 주소" 
flashvars
="config=config.xml주소&amp;file=list.xml 주소"
wmode
="transparent" autostart="true" height="360" width="480">


============================================
============================================

이제 예제를 봅시다

config.xml (blog_config.xml로 사용)
-------------
<config>
<allowscriptaccess>always</allowscriptaccess>
<allownetworking>all</allownetworking>
<allowfullscreen>false</allowfullscreen>
<autostart>true</autostart>
<repeat>always</repeat>
<shuffle>true</shuffle>
<icons>false</icons>
<volume>100</volume>
<linktarget>_top</linktarget>
<displayheight>0</displayheight>
<thumbsinplaylist>false</thumbsinplaylist>
<showeq>false</showeq>
<backcolor>0x5868A7</backcolor>
<frontcolor>0xB5DFEF</frontcolor>
<lightcolor>0x0000FF</lightcolor>
<overstretch>false</overstretch>
<usefullscreen>true</usefullscreen>
</config>
--------------

list.xml(blog_list.xml)
--------------
<?xml version="1.0" encoding="UTF-8" ?>
<playlist version="1" xmlns="http://xspf.org/ns/0/">
<title>unknown</title>
<info>unknown</info>
<trackList>
<track>
<creator>Fear, and Loathing in Las Vegas</creator>
<title>Burn the Disco Floor with Your “2-step”!!</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/01 - Burn the Disco Floor w...mp3</location>
</track>
<track>
<creator>Fear, and Loathing in Las Vegas</creator>
<title>Love at First Sight</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/04 - Love at First Sight.mp3</location>
</track>
<track>
<creator>SEAMO</creator>
<title>Kimini1nichi1kaisukitoiu</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/01 Kimini1nichi1kaisukitoiu.mp3</location>
</track>
<track>
<creator>Alexander Brandon</creator>
<title>Two Steps</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/01 Two Steps.mp3</location>
</track>
<track>
<creator>Alexander Brandon</creator>
<title>Snowstorm</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/06 - Snowstorm.mp3</location>
</track>
<track>
<creator>Simple Plan</creator>
<title>Take My Hand</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/02 Take My Hand.mp3</location>
</track>
<track>
<creator>Avril Lavigne</creator>
<title>Smile</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/Avril Lavigne - Smile.mp3</location>
</track>
<track>
<creator>DJ Sammy</creator>
<title>Heaven</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/02. DJ Sammy - Heaven.mp3</location>
</track>
<track>
<creator>Ronald Jenkees</creator>
<title>Throwing Fire</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/05._Ronald_Jenkees_-_Throwing_Fire.mp3</location>
</track>
<track>
<creator>Italobrothers</creator>
<title>So Small (Dance Radio Edit)</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/08-italobrothers-so_small_(dance_radio_edit).mp3</location>
</track>
<track>
<creator>Maroon 5</creator>
<title>Payphone</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/02 - Maroon 5 - Payphone.mp3</location>
</track>
<track>
<creator>Boys Like Girls</creator>
<title>The Great Escape</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/Boys Like Girls - The Great Escape.mp3</location>
</track>
<track>
<creator>Dash Berlin</creator>
<title>Go It Alone - Radio Edit</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/01. Dash Berlin - Go It Alone - Radio Edit.mp3</location>
</track>
<track>
<creator>Donkeyboy</creator>
<title>Stay</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/12. Stay.mp3</location>
</track>
<track>
<creator>DJ Manian</creator>
<title>Darren Styles - Outta My Head</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/13.Manian___Darren_Styles_-_Outta_My_Head.mp3</location>
</track>
<track>
<creator>DJ Manian</creator>
<title>Sky</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/32.Manian_-_Sky.mp3</location>
</track>
<track>
<creator>Sascha Grunwaldt</creator>
<title>alles was ich fuhle (cubase) improvised</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/alles_cubase.mp3</location>
</track>
<track>
<creator>David Defeis; Tobias Sammett</creator>
<title>Avantasia - The Final Sacrifice</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/Avantasia - The Final Sacrifice.mp3</location>
</track>
<track>
<creator>B.O.B</creator>
<title>Airplanes (Feint Drum & Bass Remix)</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/B.O.B - Airplanes (Feint Drum & Bass Remix).mp3</location>
</track>
<track>
<creator>Feint</creator>
<title>Clockwork Hearts [forth. Subsphere Records]</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/Feint - Clockwork Hearts [forth. Subsphere Records].mp3</location>
</track>
<track>
<creator>Pendulum</creator>
<title>Encoder</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/pendulum - encoder.mp3</location>
</track>
<track>
<creator>Siren & Sirrus</creator>
<title>Snowfall</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/Siren & Sirrus - Snowfall.mp3</location>
</track>
<track>
<creator>Owl City</creator>
<title>Fireflies</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/09.Owl City-Fireflies.mp3</location>
</track>
<track>
<creator>Owl City</creator>
<title>Honey and The Bee</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/05 - Honey and The Bee.mp3</location>
</track>
<track>
<creator>Sum 41</creator>
<title>Still Waiting</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/Sum 41 - 04. Still Waiting.mp3</location>
</track>
<track>
<creator>Sum 41</creator>
<title>Summer</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/08 - Sum 41 - Summer.mp3</location>
</track>
<track>
<creator>Muse</creator>
<title>New Born</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/03.New Born.mp3</location>
</track>
<track>
<creator>Muse</creator>
<title>Plug In Baby</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/05.Plug In Baby.mp3</location>
</track>
<track>
<creator>Nickelback</creator>
<title>When We Stand Together</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/Nickelback - When We Stand Together.mp3</location>
</track>
<track>
<creator>Usher</creator>
<title>DJ Got Us Fallin' In Love Feat Pitbu</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/Usher - DJ Got Us Fallin' In Love Feat Pitbu.mp3</location>
</track>
<track>
<creator>Green Day</creator>
<title>21 Guns</title>
<location>http://share.dnip.co.kr/Files/blog/bgm/0000/16. 21 Guns.mp3</location>
</track>
</trackList>
</playlist>
------------

주소:
<embed type="application/x-shockwave-flash" src="http://share.dnip.co.kr/Files/Flash/Player/jw.swf" flashvars="config=http://share.dnip.co.kr/Files/Flash/Player/blog_config.xml&amp;file=http://share.dnip.co.kr/Files/Flash/Player/blog_list.xml" wmode="transparent" autostart="true" height="360" width="480">

by 死^死=254

Posted by 하늘바라KSND