|
|
2010-01-02
, 08:38
|
|
|
Posts: 2,173 |
Thanked: 2,677 times |
Joined on Oct 2009
@ Cornwall, UK
|
#2
|

| The Following User Says Thank You to RevdKathy For This Useful Post: | ||
|
|
2010-01-02
, 14:54
|
|
Posts: 40 |
Thanked: 2 times |
Joined on Dec 2009
|
#3
|
|
|
2010-01-02
, 15:24
|
|
|
Posts: 321 |
Thanked: 366 times |
Joined on Nov 2009
@ Hellas
|
#4
|
|
|
2010-01-03
, 15:43
|
|
Posts: 46 |
Thanked: 13 times |
Joined on Jan 2010
@ Manchester UK
|
#5
|
|
|
2010-01-05
, 14:53
|
|
Posts: 16 |
Thanked: 0 times |
Joined on Jan 2010
@ Toronto
|
#6
|
|
|
2012-03-20
, 09:11
|
|
Posts: 96 |
Thanked: 27 times |
Joined on Sep 2011
|
#7
|
|
|
2012-03-20
, 09:30
|
|
|
Posts: 1,221 |
Thanked: 1,268 times |
Joined on Aug 2011
@ Balochistan
|
#8
|
| The Following 2 Users Say Thank You to panjgoori For This Useful Post: | ||
|
|
2012-03-20
, 09:50
|
|
Posts: 1,797 |
Thanked: 4,223 times |
Joined on Feb 2011
@ Germany
|
#9
|
| The Following User Says Thank You to reinob For This Useful Post: | ||
|
|
2012-03-20
, 10:29
|
|
Posts: 1,048 |
Thanked: 1,127 times |
Joined on Jan 2010
@ Amsterdam
|
#10
|
Is there a way to make media player scan SPECIFIC folders eg. music and video folders only?
#!/bin/sh
LOCATIE="${PWD}"
clear
echo -n "What editor would you like to use to view the playlist? "
read var1 # Opmerking, GÉÉN '$' voor var1, want deze wordt aangemaakt.
echo
echo -n "What type of playlist would you like to create? (lst, pls, m3u, etc3)"
read var2
echo
echo
echo -n " Caution, only one "
echo
echo -n " choice can be "
echo
echo -n " made. "
echo
echo
echo -n " What file format do you wish to include? e.g. mp3, wma, wav, mid, * "
read var3
clear
echo " "
echo "DONE!"
echo " "
echo "Script results"
echo " "
echo " "
printf "· Current directory · " && pwd
echo " "
echo " Editor = $var1"
echo " Type playlist = $var2"
echo " Type of file = $var3"
echo
echo
find "${LOCATIE}" -type f -name "*.$var3" ! -name "*.txt" ! -name "*.jpg" ! -name "*.png" ! -name "*.gif" ! -name "*.doc" ! -name "*.rtf"| sort > playlist.$var2
echo "The playlist has been generated: "
ls *.$var2
# echo "$PLAYLISTBESTAAT"
echo
echo
echo
echo "Press any key to open the playlist"
echo
read
$var1 playlist.$var2 &
exit 0
| The Following User Says Thank You to anthonie For This Useful Post: | ||
Ok, so I got my N900. I'm an amature when it comes to linux, but I figured I don't mind learning. And since I've skipped the laptop erra and jumped straight from desktop to the pocket pc with the n900.
The first thing I wanted to do is to load my music to the n900. but when i drag and drop my playlists, it does not keep it in the playlist. I have to create playlists. And everyone knows its a pain in the *** with this media player.
1. Is there another player out there for the N900 that would just keep my playlists?
2. What's it called.
3. Where do I get it from?
Thanks for the help.