The Wii Network
Would you like to react to this message? Create an account in a few clicks or log in to continue.

MPlayer CE Youtube tutorial

Go down

MPlayer CE Youtube tutorial Empty MPlayer CE Youtube tutorial

Post by LightyKD Wed Dec 30, 2009 5:33 pm

Ok peeps. I decided to do a youtube tutorial for MPlayer CE. The Way I'm going at it will be simple but if you look closely things should "click"...

(Prepare to scroll up and down)

Subject 1... Take a look at my menu.conf file. If you look in the folder you keep MPlayer CE in, you should have the same file... go ahead and open that up with any text editor. For this tutorial its probably best to make a copy of the original "menu.conf" file and make a copy with the code below and then edit along with this tutorial.

Subject 2... Now check out the following...

Code:
<e name="Page 1" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKD&page=1'
                      set_menu jump_to
                      menu hide"/>

... What you see is one of my Youtube Favorites pages.. I believe Youtube gives you 10 pages in which you favorites are held. See the "LightyKD"? That's my screen name. Now replace that with your Youtube screen name and you can now access your favorites for page one... now go ahead and edit that for all the other favorite pages (2-10)

Subject 3... Once you're done with the stuff above, go ahead and look for this...

What you see here is one of my Youtube playlist

Code:
<e name="Devil May Cry" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=E1DB806310E20F3C'
                      set_menu jump_to
                      menu hide"/>

The "Devil May Cry" Part is the name of my playlist the "E1DB806310E20F3C" part is the youtube number for my playlist. When you go to your youtube playlist settings look for that number and replace my playlist numbers (and titles) with your info. Also, you're more than welcome to keep any of my playlist that may be of interest to you.

Hopefully this helped everyone in some way.

-------------------------------------------------------------------------------------------------
"Menu.Conf" file below!!!
-------------------------------------------------------------------------------------------------
Code:
<keybindings name="default">
    <binding key="UP" cmd="menu up" />
    <binding key="DOWN" cmd="menu down" />
    <binding key="LEFT" cmd="menu left" />
    <binding key="RIGHT" cmd="menu right" />
    <binding key="a" cmd="menu ok" />
    <binding key="b" cmd="menu cancel" />
    <binding key="l" cmd="menu pageup" />
    <binding key="r" cmd="menu pagedown" />
   <binding key="x" cmd="menu hide" />
</keybindings>

<cmdlist name="open" title="Open" ptr="<>" >
         <e name="../" ok="menu cancel"/>
   <e name="File ..." ok="set_menu file"/>   
   <e name="Playlist ..." ok="set_menu list" />
   <e name="Subtitle ..." ok="set_menu sub" />
   <e name="DVD Video ..." ok="set_menu dvd"/>
    <e name="Radio ..." ok="set_menu radio"/>
    <e name="YouTube ..." ok="set_menu youtube"/>
    <e name="SHOUTcast ..." ok="set_menu shoutcast"/>
</cmdlist>

<cmdlist name="file" title="Load a File:" ptr="<>" >
         <e name="../" ok="menu cancel"/>
      <e name="Wii SD ..." ok="set_menu open_sd"/>
      <e name="Wii USB ..." ok="set_menu open_usb"/>
      <e name="Wii DVD ..." ok="set_menu open_dvd"/>
     <e name="SMB ..." ok="set_menu open_smb"/>
</cmdlist>

<cmdlist name="list" title="Load a Playlist:" ptr="<>" >
         <e name="../" ok="menu cancel"/>
    <e name="Wii SD ..." ok="set_menu open_sd_list"/>
    <e name="Wii USB ..." ok="set_menu open_usb_list"/>
    <e name="Wii DVD ..." ok="set_menu open_dvd_list"/>
    <e name="SMB ..." ok="set_menu open_smb_list"/>
</cmdlist>

<cmdlist name="sub" title="Load a Subtitle:" ptr="<>" >
         <e name="../" ok="menu cancel"/>
    <e name="Wii SD ..." ok="set_menu open_sd_sub"/>
    <e name="Wii USB ..." ok="set_menu open_usb_sub"/>
    <e name="Wii DVD ..." ok="set_menu open_dvd_sub"/>
    <e name="SMB ..." ok="set_menu open_smb_sub"/>
</cmdlist>

<cmdlist name="dvd" title="DVD-Video" ptr="<>" >
         <e name="../" ok="menu cancel"/>
      <e name="Play DVD" ok="menu hide
                            loadfile dvd://"/>
      <e name="Chapter ..." ok="set_menu select_chapter" left="seek_chapter -1" right="seek_chapter +1"/>
      <e name="Play Title #1" ok="loadfile dvd://1"/>
      <e name="Play Title #2" ok="loadfile dvd://2"/>
      <e name="Play Title #3" ok="loadfile dvd://3"/>
      <e name="Play Title #4" ok="loadfile dvd://4"/>
      <e name="Play Title #5" ok="loadfile dvd://5"/>
      <e name="Play DVD (libdvdnav)" ok="loadfile dvdnav://"/>
</cmdlist>
<chapsel name="select_chapter" />

<cmdlist name="radio" title="Radio" ptr="<>" >
         <e name="../" ok="menu cancel"/>
      <e name="Radio Plus" ok="loadlist 'http://radioplus.dnsalias.org:8000/listen.pls'"/>
      <e name="Otvoreni radio" ok="loadlist 'http://82.193.201.234:8001/listen.pls'"/>
      <e name="Woxy radio" ok="loadlist 'http://woxy.lala.com/stream/aac32.pls'"/>
</cmdlist>

<cmdlist name="youtube" title="YouTube" ptr="<>" >
         <e name="../" ok="menu cancel"/>
      <e name="Favorites ..." ok="set_menu ytfav"/>
     <e name="Global ..." ok="set_menu ytstd"/>
      <e name="Playlists ..." ok="set_menu ytpls"/>
      <e name="Subscriptions" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=newsubscriptionvideos&channel=ExtremsCorner'
                      set_menu jump_to
                      menu hide"/>
      <e name="Uploads" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=uploads&channel=LightyKD'
                      set_menu jump_to
                      menu hide"/>
</cmdlist>

<cmdlist name="ytfav" title="Favorites" ptr="<>" >
         <e name="../" ok="menu cancel"/>
      <e name="Page 1" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKD&page=1'
                      set_menu jump_to
                      menu hide"/>
      <e name="Page 2" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKD&page=2'
                      set_menu jump_to
                      menu hide"/>
     <e name="Page 3" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKD&page=3'
                      set_menu jump_to
                      menu hide"/>
     <e name="Page 4" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKDr&page=4'
                      set_menu jump_to
                      menu hide"/>
     <e name="Page 5" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKDr&page=5'
                      set_menu jump_to
                      menu hide"/>
     <e name="Page 6" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKD&page=6'
                      set_menu jump_to
                      menu hide"/>
     <e name="Page 7" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKD&page=7'
                      set_menu jump_to
                      menu hide"/>
     <e name="Page 8" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKD&page=8'
                      set_menu jump_to
                      menu hide"/>
     <e name="Page 9" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=favorites&channel=LightyKD&page=9'
                      set_menu jump_to
                      menu hide"/>
</cmdlist>

<cmdlist name="ytstd" title="Global" ptr="<>" >
         <e name="../" ok="menu cancel"/>
     <e name="Top rated" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=global&id=top_rated'
                      set_menu jump_to
                      menu hide"/>
      <e name="Top favorites" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=global&id=top_favorites'
                      set_menu jump_to
                      menu hide"/>
     <e name="Most viewed" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=global&id=most_viewed'
                      set_menu jump_to
                      menu hide"/>
     <e name="Most popular" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=global&id=most_popular'
                      set_menu jump_to
                      menu hide"/>
     <e name="Most recent" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=global&id=most_recent'
                      set_menu jump_to
                      menu hide"/>
     <e name="Most discussed" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=global&id=most_discussed'
                      set_menu jump_to
                      menu hide"/>
     <e name="Most linked" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=global&id=most_linked'
                      set_menu jump_to
                      menu hide"/>
     <e name="Most responded" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=global&id=most_responded'
                      set_menu jump_to
                      menu hide"/>
     <e name="Recently featured" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=global&id=recently_featured'
                      set_menu jump_to
                      menu hide"/>
</cmdlist>

<cmdlist name="ytpls" title="Playlists" ptr="<>" >
         <e name="../" ok="menu cancel"/>
     <e name="Devil May Cry" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=E1DB806310E20F3C'
                      set_menu jump_to
                      menu hide"/>
      <e name="Dragonball Z: Abridged" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=44870D7267DC72B0'
                      set_menu jump_to
                      menu hide"/>
     <e name="Gatchaman Remake" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=47941EF0742A5FC4'
                      set_menu jump_to
                      menu hide"/>
     <e name="Gundam 00 (Season 01)" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=CAC2CB3CA37DE972'
                      set_menu jump_to
                      menu hide"/>
<e name="Gundam 00 (Season 02)" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=86F0EA9A9B2B6FE9'
                      set_menu jump_to
                      menu hide"/>
<e name="Highlander (Season 01)" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=6F4A10E2BD942C13'
                      set_menu jump_to
                      menu hide"/>

<e name="Highlander (Season 02)" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=25CBC0355DAE5F45'
                      set_menu jump_to
                      menu hide"/>

<e name="Jackie Chan Adventures (Season 01)" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=53C09FADA75FDE8E'
                      set_menu jump_to
                      menu hide"/>

<e name="Jericho" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=099F374DEAAADEEE'
                      set_menu jump_to
                      menu hide"/>

<e name="Kamen Rider Decade" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=216101B9F8B6BDD5'
                      set_menu jump_to
                      menu hide"/>

<e name="Kamen Rider W" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=85A8DE39659EC605'
                      set_menu jump_to
                      menu hide"/>

<e name="Sonic X (Season 01)" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=ADE794A8BB732482'
                      set_menu jump_to
                      menu hide"/>

<e name="Star Trek TOS Season 1" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=6AED3CCA4C303B8D'
                      set_menu jump_to
                      menu hide"/>

<e name="Wrestling Secrets Exposed" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=46111A0B89DABEA1'
                      set_menu jump_to
                      menu hide"/>
<e name="TMNT (Season 01)" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=BE904D5E55E910BF'
                      set_menu jump_to
                      menu hide"/>
<e name="W.I.T.C.H. (Season 01)" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=19DAA4DDA96EFFCC'
                      set_menu jump_to
                      menu hide"/>
<e name="W.I.T.C.H. (Season 02)" ok="loadlist 'http://fallback.extremscorner.co.cc/wii/yt/playlist.php?view=specific&id=80AE40323EB21F2B'
                      set_menu jump_to
                      menu hide"/>


</cmdlist>

<cmdlist name="shoutcast" title="SHOUTcast" ptr="<>" >
         <e name="../" ok="menu cancel"/>
     <e name="Internet Radio" ok="loadlist 'http://pentium.extremscorner.co.cc:8080/wii/rd/playlist.php'
                      pause
                      set_menu jump_to"/>
     <e name="Internet TV" ok="loadlist 'http://pentium.extremscorner.co.cc:8080/wii/tv/playlist.php'
                      pause
                      set_menu jump_to"/>
</cmdlist>

<cmdlist name="open_smb" title="Choose SMB Share" ptr="<>" >
         <e name="../" ok="menu cancel"/>
      <e name="SMB share 1 ..." ok="set_menu open_smb1"/>
      <e name="SMB share 2 ..." ok="set_menu open_smb2"/>
      <e name="SMB share 3 ..." ok="set_menu open_smb3"/>
      <e name="SMB share 4 ..." ok="set_menu open_smb4"/>
      <e name="SMB share 5 ..." ok="set_menu open_smb5"/>
</cmdlist>

<cmdlist name="open_smb_list" title="Choose SMB Share" ptr="<>" >
         <e name="../" ok="menu cancel"/>
      <e name="SMB share 1 ..." ok="set_menu open_smb1_list"/>
      <e name="SMB share 2 ..." ok="set_menu open_smb2_list"/>
      <e name="SMB share 3 ..." ok="set_menu open_smb3_list"/>
      <e name="SMB share 4 ..." ok="set_menu open_smb4_list"/>
      <e name="SMB share 5 ..." ok="set_menu open_smb5_list"/>
</cmdlist>

<cmdlist name="open_smb_sub" title="Choose SMB Share" ptr="<>" >
         <e name="../" ok="menu cancel"/>
      <e name="SMB share 1 ..." ok="set_menu open_smb1_sub"/>
      <e name="SMB share 2 ..." ok="set_menu open_smb2_sub"/>
      <e name="SMB share 3 ..." ok="set_menu open_smb3_sub"/>
      <e name="SMB share 4 ..." ok="set_menu open_smb4_sub"/>
      <e name="SMB share 5 ..." ok="set_menu open_smb5_sub"/>
</cmdlist>

<filesel name="open_sd" path="sd:/"
        filter="file_ext"
        file-action="menu hide
                      pause
                      loadfile '%p'"/>
<filesel name="open_usb" path="usb:/"
        filter="file_ext"
        file-action="menu hide
                      pause
                      loadfile '%p'" />
<filesel name="open_dvd" path="dvd:/"
        filter="file_ext"
        file-action="menu hide
                      pause
                      loadfile '%p'" />
<filesel name="open_smb1" path="smb1:/"
        filter="file_ext"
        file-action="menu hide
                      pause
                      loadfile '%p'" />
<filesel name="open_smb2" path="smb2:/"
        filter="file_ext"
        file-action="menu hide
                      pause
                      loadfile '%p'" />
<filesel name="open_smb3" path="smb3:/"
        filter="file_ext"
        file-action="menu hide
                      pause
                      loadfile '%p'" />
<filesel name="open_smb4" path="smb4:/"
        filter="file_ext"
        file-action="menu hide
                      pause
                      loadfile '%p'" />
<filesel name="open_smb5" path="smb5:/"
        filter="file_ext"
        file-action="menu hide
                      pause
                      loadfile '%p'" />

<pt name="jump_to" title="Playlist" auto-close="yes"/>

<filesel name="open_sd_list" path="sd:/"
        filter="list_ext"
        file-action="loadlist '%p'
                      menu hide" />
<filesel name="open_usb_list" path="usb:/"
        filter="list_ext"
        file-action="loadlist '%p'
                      menu hide" />
<filesel name="open_smb1_list" path="smb1:/"
        filter="list_ext"
        file-action="loadlist '%p'
                      menu hide" />
<filesel name="open_smb2_list" path="smb2:/"
        filter="list_ext"
        file-action="loadlist '%p'
                      menu hide" />
<filesel name="open_smb3_list" path="smb3:/"
        filter="list_ext"
        file-action="loadlist '%p'
                      menu hide" />
<filesel name="open_smb4_list" path="smb4:/"
        filter="list_ext"
        file-action="loadlist '%p'
                      menu hide" />
<filesel name="open_smb5_list" path="smb5:/"
        filter="list_ext"
        file-action="loadlist '%p'
                      menu hide" />
<filesel name="open_dvd_list" path="dvd:/"
        filter="list_ext"
        file-action="loadlist '%p'
                      menu hide" />

<filesel name="open_sd_sub" path="sd:/"
        filter="subs_ext"
        file-action="menu hide
                      pause
                      sub_load '%p'
                      sub_select 1
                      sub_visibility 1" />
<filesel name="open_usb_sub" path="usb:/"
        filter="subs_ext"
        file-action="menu hide
                      pause
                      sub_load '%p'
                      sub_select 1
                      sub_visibility 1" />
<filesel name="open_smb1_sub" path="smb1:/"
        filter="subs_ext"
        file-action="menu hide
                      pause
                      sub_load '%p'
                      sub_select 1
                      sub_visibility 1" />
<filesel name="open_smb2_sub" path="smb2:/"
        filter="subs_ext"
        file-action="menu hide
                      pause
                      sub_load '%p'
                      sub_select 1
                      sub_visibility 1" />
<filesel name="open_smb3_sub" path="smb3:/"
        filter="subs_ext"
        file-action="menu hide
                      pause
                      sub_load '%p'
                      sub_select 1
                      sub_visibility 1" />
<filesel name="open_smb4_sub" path="smb4:/"
        filter="subs_ext"
        file-action="menu hide
                      pause
                      sub_load '%p'
                      sub_select 1
                      sub_visibility 1" />
<filesel name="open_smb5_sub" path="smb5:/"
        filter="subs_ext"
        file-action="menu hide
                      pause
                      sub_load '%p'
                      sub_select 1
                      sub_visibility 1" />
<filesel name="open_dvd_sub" path="dvd:/"
        filter="subs_ext"
        file-action="menu hide
                      pause
                      sub_load '%p'
                      sub_select 1
                      sub_visibility 1" />

<cmdlist name="pref_main" title="Options" ptr="<>" >
      <e name="../" ok="menu cancel"/>
    <e name="General ..." ok="set_menu general_pref"/>
    <e name="Audio ..." ok="set_menu audio_pref"/>
    <e name="Video ..." ok="set_menu video_pref"/>
    <e name="Subtitles ..." ok="set_menu osd_sub_pref"/>
   <e name="Aspect ..." ok="set_menu aspect"/>
   <e name="Files Filter ..." ok="set_menu filter"/>
    <e name="Properties ..." ok="set_menu properties"/>
</cmdlist>

<pref name="general_pref" title="General">
      <e property="osdlevel" name="OSD level"/>
      <e property="loop" name="Loop"/>
</pref>

<pref name="osd_sub_pref" title="Subtitles">
      <e property="sub" name="Subtitles"/>
      <e property="sub_visibility" name="Visibility"/>
      <e property="sub_forced_only" name="Forced sub only"/>
      <e property="sub_alignment" name="Alignment"/> 
      <e property="sub_pos" name="Position"/>
      <e property="sub_delay" name="Delay"/>
</pref>

<pref name="video_pref" title="Video">
      <e property="panscan" name="Panscan"/>
      <e property="framedropping" name="Frame dropping"/>
 </pref>

<pref name="audio_pref" title="Audio">
      <e property="switch_audio" name="Audio Stream"/>
      <e property="volume" name="Volume"/>
      <e property="balance" name="Balance"/>
      <e property="mute" name="Mute"/>
      <e property="audio_delay" name="Delay"/>
</pref>

<cmdlist name="aspect" title="Aspect">
   <e name="Original" ok="switch_ratio"/>
    <e name="16:9" ok="switch_ratio 1.778"/>
    <a name="4:3" ok="switch_ratio  1.333"/>
    <a name="2.35:1" ok="switch_ratio 2.350"/>
</cmdlist>

<cmdlist name="filter" title="Files Filter" >
      <e name="Display All Files" ok="file_filter 0"/>
      <e name="Display Media Files Only" ok="file_filter 1"/>
</cmdlist>

<pref name="properties" title="Stream Properties">
      <e txt="${filename}" name="Name"/>
      <e txt="${video_format}" name="Video Codec"/>
      <e txt="${video_bitrate}" name="Video Bitrate"/>
      <e txt="${width} x ${height}" name="Resolution"/>
      <e txt="${audio_codec}" name="Audio Codec"/>
      <e txt="${audio_bitrate}" name="Audio Bitrate"/>
      <e txt="${samplerate}, ${channels}" name="Audio Samples"/>
      <e txt="${metadata/Title}" name="Title"/>
      <e txt="${metadata/Artist}" name="Artist"/>
      <e txt="${metadata/Album}" name="Album"/>
      <e txt="${metadata/Year}" name="Year"/>
      <e txt="${metadata/Comment}" name="Comment"/>
      <e txt="${metadata/Track}" name="Track"/>
      <e txt="${metadata/Genre}" name="Genre"/>
      <e txt="${metadata/Software}" name="Software"/>
</pref>

<txt name="about" file="about.txt"/>

<cmdlist name="main" title="MPlayer CE" ptr="<>" >
      <e name="Stop" ok="stop"/>
      <e name="Open ..." ok="set_menu open" />
     <e name="Current playlist ..." ok="set_menu jump_to"/>
      <e name="Options ..." ok="set_menu pref_main"/>
      <e name="About" ok="set_menu about"/>
      <e name="Quit" ok="quit"/>
</cmdlist>
LightyKD
LightyKD
Gameboy Advance
Gameboy Advance

Posts : 127
Reputation : 17
Join date : 2009-08-28
Age : 38
Location : Richmond VA

http://lightykd.blogspot.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum