mm3 Titel per shortcut in playlist einodnen

Wenn Sie Hilfe benötigen oder über MediaMonkey diskutieren möchten...

Moderator: onkel_enno

download191

mm3 Titel per shortcut in playlist einodnen

Post by download191 »

Hallo, ich bin heute von winamp zu mediamonkey gewechselt und habe ncoh eins zwei fragen.
mein wihctigstes anliegen ist die playlistenfunktion. ich habe gewechselt, weil es bei winamp keine möglichkeit gab laufende titel per shortcut in eine playliste einzuordnen.
ich wollte mal fragen, ob es bei mm3 eine möglichkeit gibt, soetwas zurealisieren? einen laufenden titel per shortcut in eine plaliste einzuordnen, oder ob man vlt per script eine taste im microplayer hinzufügen kann, auf welche man klickt und dies passiert.

eine andere frage ist: der mm3 erkennt m4b-dateien und kann diese auch auf den ipod schieben, das kann winamp auch, aber werden m4b-dateien (hörbücher) auch auf dem ipod in hörbücher einsortiert, oder sind die dann wie bei winamp ganz normal bei interpreten zufidnen (ich hoffe nciht xD)

ich danke im vorraus für support!


mfg download191
rovingcowboy
Posts: 14163
Joined: Sat Oct 25, 2003 7:57 am
Location: (Texas)
Contact:

Re: mm3 Titel per shortcut in playlist einodnen

Post by rovingcowboy »

i don't have an ipod so i can't answer number 2.

but number 1. the mm3 gold version has tons of ways to use the auto playlists so i'm sure you can find what you want done. :)
roving cowboy / keith hall. My skins http://www.mediamonkey.com/forum/viewto ... =9&t=16724 for some help check on Monkey's helpful messages at http://www.mediamonkey.com/forum/viewto ... 4008#44008 MY SYSTEMS.1.Jukebox WinXp pro sp 3 version 3.5 gigabyte mb. 281 GHz amd athlon x2 240 built by me.) 2.WinXP pro sp3, vers 2.5.5 and vers 3.5 backup storage, shuttle 32a mb,734 MHz amd athlon put together by me.) 3.Dell demension, winxp pro sp3, mm3.5 spare jukebox.) 4.WinXp pro sp3, vers 3.5, dad's computer bought from computer store. )5. Samsung Galaxy A51 5G Android ) 6. amd a8-5600 apu 3.60ghz mm version 4 windows 7 pro bought from computer store.
download191

Re: mm3 Titel per shortcut in playlist einodnen

Post by download191 »

well, i allready use the goldversion but i didn't find an option to set a shortcut for "send to playlist".
isn't there a script or plugin?
rovingcowboy
Posts: 14163
Joined: Sat Oct 25, 2003 7:57 am
Location: (Texas)
Contact:

Re: mm3 Titel per shortcut in playlist einodnen

Post by rovingcowboy »

send to playlist is on the context menu when you right click the title of the song in the listview or right click a title in a group of selected songs in the listview area.

sorry if that was not want you wanted i don't speak or read anything but english i use translators and that said you wanted to add songs in to a playlist. from what i could figure out in the bad translation of your other post. :(

but thats how to send songs to another playlist or the now playing just right click on them and click send to, you then get more options of where to put it. :)
roving cowboy / keith hall. My skins http://www.mediamonkey.com/forum/viewto ... =9&t=16724 for some help check on Monkey's helpful messages at http://www.mediamonkey.com/forum/viewto ... 4008#44008 MY SYSTEMS.1.Jukebox WinXp pro sp 3 version 3.5 gigabyte mb. 281 GHz amd athlon x2 240 built by me.) 2.WinXP pro sp3, vers 2.5.5 and vers 3.5 backup storage, shuttle 32a mb,734 MHz amd athlon put together by me.) 3.Dell demension, winxp pro sp3, mm3.5 spare jukebox.) 4.WinXp pro sp3, vers 3.5, dad's computer bought from computer store. )5. Samsung Galaxy A51 5G Android ) 6. amd a8-5600 apu 3.60ghz mm version 4 windows 7 pro bought from computer store.
download191

Re: mm3 Titel per shortcut in playlist einodnen

Post by download191 »

that's the way i know too ...
i want create a new playlist for my ipod. i just wanna listen to my music in random mode while i work. every time, when i hear a good song, i want to press a shortcut to add this song to my playlist, without searching it, right click and so on ...
it there a possibility to realize that perhaps with a little button in the microplayer?
holterpolter
Posts: 292
Joined: Wed Feb 01, 2006 7:29 am
Location: Germany

Re: mm3 Titel per shortcut in playlist einodnen

Post by holterpolter »

Da ich die Idee interessant fand hab ich einfach die 3 Zeilen Code zusammengehackt die den aktuellen Titel zu einer Playlist hinzufügt.
Der aktuelle Titel wird in eine Playlist eingefügt die "Playlist_31.11.2009" heißt, welche unter "MyIpodPlaylists" zu finden ist.
Zur Zeit musst du die noch einmalig per Hand erstellen (*siehe Edit:). Das ganze Script kann dann über Extras-Optionen->Allgemein->Tastenkürzel an ein Tastenkürzel gebunden werden. Fällt dir ein sinnvolles ein?

Code: Select all

'Adds the Now Playing Song to a default Playlist
' Add these lines to the script.ini without the quotes
' [AddNPToPlaylist]
' FileName=AddNPToPlaylist.vbs
' ProcName=AddNPToPlaylist
' Order=100
' DisplayName=&Add Now Playing To Playlist
' Description=Adds Now Playing Song to MyIpodPlaylists
' Language=VBScript
' ScriptType=0


Sub AddNPToPlaylist

  SDB.PlaylistByTitle("").CreateChildPlaylist("MyIpodPlaylists")
  Dim playList : Set playlist = SDB.PlaylistByTitle("MyIpodPlaylists").CreateChildPlaylist("Playlist_"&Date)
  playList.AddTrack(SDB.Player.CurrentSong)
  
End Sub
Das zweite Script fügt die markierten Songs zu eben dieser Playlist hinzu.

Code: Select all

'Adds the selected Songs to a default Playlist
' [AddSelToPlaylist]
' FileName=AddSelToPlaylist.vbs
' ProcName=AddSelToPlaylist
' Order=100
' DisplayName=&Add Selected To Playlist
' Description=Add Selected Songs to MyIpodPlaylists
' Language=VBScript
' ScriptType=0


Sub AddSelToPlaylist
  Set list = SDB.SelectedSongList
  If list.count>0 Then
    SDB.PlaylistByTitle("").CreateChildPlaylist("MyIpodPlaylists")
    Dim playList : Set playlist = SDB.PlaylistByTitle("MyIpodPlaylists").CreateChildPlaylist("Playlist_"&Date)
    For x = 0 To list.count-1
      playList.AddTrack(list.item(x))
    Next  
  End if
  
End Sub
Edit: Durch das hinzufügen einer weiteren Script Zeile wird die Root-Playlist auch beim ersten mal erzeugt.
Last edited by holterpolter on Mon Nov 30, 2009 3:33 pm, edited 1 time in total.
download191

Re: mm3 Titel per shortcut in playlist einodnen

Post by download191 »

ist die frage, welche kombination man noch vergeben kann ...
ehm, vlt eine der freien F-Tasten ... F2 vlt?! erreicht man schnell und ist noch frei :D
download191
Posts: 7
Joined: Mon Nov 30, 2009 2:47 pm

Re: mm3 Titel per shortcut in playlist einodnen

Post by download191 »

wie füge ich diese scripte in mm3 ein?
holterpolter
Posts: 292
Joined: Wed Feb 01, 2006 7:29 am
Location: Germany

Re: mm3 Titel per shortcut in playlist einodnen

Post by holterpolter »

Erstelle im C:\Programme\MediaMonkey\Scripts Verzeichnis eine Datei mit dem Namen AddNPToPlaylist.vbs.
Öffne sie mit einem Texteditor (z.B. notepad) und füge den Code ein. Abspeichern, aufpassen das der Dateiname vom Editor nicht in *.vbs.txt geändert wurde.
Füge die auskommentierten Zeilen 3-10 ans Ende der Script.ini hinzu und entferne die Anführungszeichen am Anfang der Linien.
Das Script sollte nach einem MM Neustart dann bei Extras-SKripte auftauchen.
download191
Posts: 7
Joined: Mon Nov 30, 2009 2:47 pm

Re: mm3 Titel per shortcut in playlist einodnen

Post by download191 »

okay, vielen dank für deine hilfe!
(das zweite ist laufendes und markiertes zusammen, oder?)
holterpolter
Posts: 292
Joined: Wed Feb 01, 2006 7:29 am
Location: Germany

Re: mm3 Titel per shortcut in playlist einodnen

Post by holterpolter »

Das zweite sollte eigentlich nur die markierten Lieder zu der Playliste hinzufügen.
Manchmal scheint das aktuelle Lied aber auch irgendwie mit markiert zu sein. Man kann ja sowohl in der Wiedergabeliste als auch im Hauptfenster markieren.
Ich hab jetzt den aktuellen Titel auf Alt-A für adden und die selektierten Titel auf Alt-S für selektiert gelegt. Das passt eigentlich ganz gut.
Post Reply