|
2010-07-31
, 21:11
|
Posts: 486 |
Thanked: 251 times |
Joined on Oct 2009
|
#12
|
I've created this script that makes a playlist for each folder in your music. This lets you play a folder at a time with the default media player.
Code:cd ~/MyDocs/.sounds for i in *; do echo Processing $i if [ -d "$i" ]; then find "$i/" -type f -iname "*.mp3" > "$i.m3u" fi done
cd $1 for i in *; do echo Processing $i if [ -d "$i" ]; then cd $i ls "*.mp3" "*.ogg" "*.wma" > "$i.m3u" cd .. fi done
cd $1 for i in *; do echo Processing $i if [ -d "$i" ]; then cd $i ls -rt "*.mp3" "*.ogg" "*.wma" > "$i.m3u" cd .. fi done
The Following User Says Thank You to j.s For This Useful Post: | ||
|
2010-07-31
, 21:50
|
Posts: 36 |
Thanked: 28 times |
Joined on Jul 2010
|
#13
|
Question, all my songs are in m4a format so does m3u support this format.
find "$i/" -type f -iname "*.m4a" > "$i.m3u"
|
2010-07-31
, 21:57
|
Posts: 36 |
Thanked: 28 times |
Joined on Jul 2010
|
#14
|
|
2010-07-31
, 22:47
|
|
Posts: 35 |
Thanked: 2 times |
Joined on Jul 2010
@ lagos, Nigeria
|
#15
|
|
2010-08-01
, 17:24
|
Posts: 36 |
Thanked: 28 times |
Joined on Jul 2010
|
#16
|
The Following User Says Thank You to dave1010 For This Useful Post: | ||
|
2010-08-20
, 11:34
|
Posts: 2 |
Thanked: 0 times |
Joined on Aug 2010
|
#17
|
Question, all my songs are in m4a format so does m3u support this format.. thanks. I do not want to use mp3 going forward as well.