Hi typos,

Quote Originally Posted by typos1 View Post
Sorry, I cut the top off the terminal, but not the bottom:
Code:
jason@jason-desktop:~$ mplayer -v 01 - Track 1.ra
[...]

It seems (I m no expert tho) that it doesnt know where the file is, should there be something in the command to tell it?
Indeed, you have to give the correct path to the file and also escape the spaces in the filename. If the file is on your Desktop try:

Code:
 
cd $HOME/Desktop
mplayer -v '01 - Track 1.ra'
Andrew