|
2009-03-31
, 18:38
|
|
Posts: 670 |
Thanked: 359 times |
Joined on May 2007
|
#82
|
|
2009-03-31
, 19:38
|
Posts: 63 |
Thanked: 43 times |
Joined on May 2008
|
#83
|
btw, now that panucci can do playlists, hows the quickest way to dump a whole dir of files into it?
find /path/to/files -type f -iname '*.mp3' > playlist.m3u
|
2009-03-31
, 22:19
|
Posts: 39 |
Thanked: 0 times |
Joined on Aug 2007
|
#84
|
|
2009-04-01
, 02:27
|
|
Posts: 4,783 |
Thanked: 1,253 times |
Joined on Aug 2007
@ norway
|
#85
|
For a directory with subdirectories:Or, if you'd like a single directory, place a file with a ".m3u" extension in the directory. From there you could do "ls | sort > some-file.m3u" or simply place a single period in the file and the contents of the directory will be imported (this is a feature of the m3u spec, you can include directories as items in the playlist).Code:find /path/to/files -type f -iname '*.mp3' > playlist.m3u
Panucci 0.4 will make this even easier, you'll be able to add directories from the GUI.
|
2009-04-02
, 04:12
|
Posts: 78 |
Thanked: 6 times |
Joined on Dec 2007
|
#87
|
|
2009-04-02
, 07:57
|
|
Posts: 4,783 |
Thanked: 1,253 times |
Joined on Aug 2007
@ norway
|
#88
|
|
2009-04-02
, 14:56
|
Posts: 78 |
Thanked: 6 times |
Joined on Dec 2007
|
#89
|
|
2009-04-03
, 13:24
|
Posts: 63 |
Thanked: 43 times |
Joined on May 2008
|
#90
|
apt-get says I have the newest version of python2.5-gnome installed.
~ $ python >>> from gnome import gconf
Tags |
barbiestrsand |
Thread Tools | |
|
btw, now that panucci can do playlists, hows the quickest way to dump a whole dir of files into it?