PSPnuts
Main Menu
Home
Links
Contact Us
Search
Articles
Jx Latest Commented
Update Firmware on Japanese PSP (28 comments) Monday, 22 December 2008
PSP Internet Browser (143 comments) Monday, 22 December 2008
Top 10 Things I Like About My Beloved PSP (10 comments) Saturday, 20 December 2008
Firmware Upgrade v2.00 (13 comments) Friday, 21 November 2008
Memory Stick Duo (3 comments) Thursday, 13 November 2008
Advertisement
Latest at Play-Asia.com
Search Play-asia.com
PSPWorld.com
Watching movies on the PSP PDF Print E-mail
User Rating: / 21
PoorBest 
Written by Olle Johansson   
Saturday, 05 February 2005

This is a short introduction on how to use the PSP to watch videos from the Memory Stick. It contains information on where to save the video files as well as how to create videos that can be used on the PSP.

Update: I've added information on how to create movies for the PSP in Linux using ffmpeg.

To watch videos on the PSP you will have to create the directory for them yourself as the PSP doesn't do this for you when it formats the Memory Stick.

Create a directory in the root of the PSP, where there is a psp directory and two .ind files. This directory should be called "MP_ROOT", without the quotes. In this directory you will have to create another directory called "100MNV01", also without quotes. This is where the video files should be saved for the PSP to find them. The reason they are saved like this is presumably because that's where video files are saved on Sonys digital video cameras that also use Memory Sticks. It's also very important that they are created with capital letters, like shown, or the PSP won't recognize the directories.

Use the following commands to create the directories:

> mkdir /mnt/psp/MP_ROOT
> mkdir /mnt/psp/MP_ROOT/100MNV01

This isn't all though. The PSP can only show movies saved in the MPEG4 format, that usually has the file extension .mp4. The videos need to be saved in MPEG-4 Simple Profile at 320x240 resolution to work properly it seems. The files also needs to be named in a specific way, they have to be called "M4V03770.MP4" or something similar. That is "M4V" followed by five digits and with the extension .MP4. It is also very important that all letters are in CAPS or the PSP won't find the files.

Converting movies in Windows

At the moment there seems to be only two programs on Windows that can properly create mp4 files that the PSP can play. These are the Image Converter 2.1 which can be bought from Sony for a mere $10 and the 3GP Converter which can be found at this location: http://www.nurs.or.jp/%7Ecalcium/3gpp/

Converting movies in Linux

A patch has been added to the ffmpeg program recently that adds compatibility with the PSP. You will need to download the latest version of ffmpeg from their CVS. Run this from a terminal window to get the sources:

> cvs -z9 -d:pserver: This e-mail address is being protected from spam bots, you need JavaScript enabled to view it :/cvsroot/ffmpeg co ffmpeg

Now you can enter the ffmpeg directory and configure, compile and install the program, make sure to compile with at least the "--enable-faac" option (which means you also need the faac package).

> ./configure --enable-faac
> make
> sudo make install

If everything compiled and installed without problems you should now be able to create MP4 movies which work on the PSP. If you did encounter problems, you can check out the homepages of the programs for more information.

Here is how to convert a movie to the MP4 format, using the new option added in ffmpeg:

> ffmpeg -i sourcemovie.avi -f psp -r 14.985 -s 320x240 -b 768 -ar 24000 -ab 32 M4V00002.MP4

This will create an MP4 movie with a frame rate of 14.985 (-r 14.985), a resolution of 320 by 240 (-s 320x240), a video bitrate of 768kbps (-b 768), an audio sampling frequency of 24000 Hz (-ar 24000) and an audio bitrate of 32 kbps (-ab 32).

According to the English manual for the PSP from the FCC website that's circling the internet the maximum video bitrate the PSP can handle is 768. The maximum resolution is 320x240 for movies played back from the Memory Stick so don't go any higher than that. As a final note, the ffmpeg developer who added this PSP functionality mentions that there has been problems with other framerates than 14.985 so to be sure it will work you should stick with that. I've heard reports of other values working as well though, so you could try different rates if you want to experiment.

Comments
Add NewSearchRSS
Guest - Another good article. Unregistered | 2005-03-07 06:48:21
Just curious... how long does ffmpeg take to convert a typical movie?
Guest - Can't get this to work... Unregistered | 2005-03-24 21:10:24
I followed your notes using ffmpeg, and it happily converts the avi file to an mp4. When I try to play it in mplayer or on my PSP I get audio fine, but no video (on the PSP it looks like random green and purple pixels)
Any idea?

I'd like to use mencoder to do this conversion as it seams to be able to decode more than just avi files, any idea if it can do this conversion (its based on ffmepg afterall)

thanks

Guest - Can't get it to work either Unregistered | 2005-03-25 05:03:08
I get the same problem. Audio but video just shows a static green and purple pixels image during the audio play
Guest - I have the same problem Unregistered | 2005-03-25 07:27:40
I got audio just fine, but the screen just had a constant random pixels.
Guest - I got it to work Unregistered | 2005-03-25 08:40:36
I got it to work if I used a frame rate of 29.97 which is the default for ffmpeg. 15 did seem a little slow to me.
Guest - Still no joy with 29.97 Unregistered | 2005-03-25 09:47:26
Tried again with the 29.97 framerate, and it produces the same resulting purple and green pixels.
I'm looking into getting mencoder to do this, its built on ffmpeg, and seams to be able to read more video formats in than ffmpeg too.
If anyone has any hints/tips or wants an update on how I'm getting on my email address is on the following webpage:

www.nebulus-design.co.uk

cheers
Guest - Did you use a current ffmpeg? Unregistered | 2005-03-29 16:57:33
I do get the same garbage for half a second before the video starts, but otherwise it works fine.

Do you use the absolute latest version of ffmpeg, compiled from the CVS? The PSP option was added sometime in february I believe and might not be in the latest release yet.

As for mencoder, I've tried creating movies with it as well, but as far as I know it can't create the correct mp4 headers. This could be done with mp4creator though, but last time I tried it didn't have support for PSP compliant headers either.

Olle
Guest - Most bits fixed under Linux! Unregistered | 2005-03-30 10:42:05
Check the following link, I've got the code that is pointed to working, titles are working, and there is no purple randon bits at the start...

http://www.pspvideo9.com/forums/viewtopic.php?t=98

Guest - Dood Unregistered | 2005-03-31 00:33:26
Sweet, This worked for me!

The only thing I would add, is the info on howto download/install faac.
I did also have to run ldconfig, before ffmpeg would find it.

Im more familiar with mplayer/mencoder, but i wasnt able to encode something with mencoder that would play.

Thank you Olle
Guest - Install faac Unregistered | 2005-03-31 01:44:59
I started writing instructions about installing faac, but the instructions were ambiguous and I didn't feel like installing it again just to see what was needed. I'll see if I can add it when I have some more free time to play around with videos for the PSP.

If anyone has any information about how to use mencoder I'd be very interested. I have tried a lot of things but haven't managed to get anything to work properly either.

Oh, and I'd also love to hear about options for encoding videos in Windows as I haven't got a clue about that.

Olle
Guest - What about MAC??? Unregistered | 2005-03-31 20:00:54
You didn't mention the greatest OS... MAC how do you do the above on a mac.
Guest - Widescreen Unregistered | 2005-05-07 16:18:56
When I want to watch widescreen shows on the PSP, I transcode them to 320X240 (as shown above), then select "Full Screen" playback (Triangle -> Screen Mode -> Full Screen). It's a pain that you can't set it as the default playback mode, but it does the job nicely. Also, once set on a particular file, it does seem to remember that playback mode for the file

HTH

Mike
Guest - 512k bios Unregistered | 2005-06-29 02:24:14
I would like to know how to install NEOCD on the psp memory card. I want to install metal slug. So far what i've found out is that I have to download the 512k bios and put it in the NEOCD game directory on the psp. Then i have to find the game that should come with an iso file, I then mount it with daemon tools which I have downloaded. I then put all the files into a .zip file and name it NEOCD. I then put the NEOCD.zip into the NEOCD directoryand I am done. What i need is a site for this particular kind of metal slug file and a website for this particular kind of 512k bios. I have the daemon tools.
Guest - NEOCD EMULATOR Unregistered | 2005-07-06 11:28:17
Would someone show how to install this EMULATOR i get as far as
PSP/GAME/NEOCD/?????/????? what do i do from here please help
Guest - Yo Unregistered | 2005-07-09 05:36:59
First, please don't post the same message twice, and also, please stay ontopic. Secondly, I've had incredible luck building a modified mobilehackerz version of ffmpeg in a fairly stock install of ubuntulinux, with build-essential. I prefer this method over the one posted above, as it doesn't give me those lods of green and purple pixels at the beginning, and allows me to set a title. I've also had good luck at 368x208, which looks great in widescreen, without all of the unequal stretching.
Guest - i Unregistered | 2005-07-22 19:33:50
I tried to convert the file from avi to mp4 with ffmpeg but it says that option i is an invalid option, what should I do?
Guest - Callie Unregistered | 2005-07-27 19:15:13
I haven't gotten one yet, but i was wondering id you can play dvds on it?
Guest - jezza Unregistered | 2005-10-23 05:47:55
[EMAIL]jeremy.s.allen@hotmail.com[/EMAIL] were can i get movies psp ready as i can only use work computer and cant download new programs
Guest - Olle answers Unregistered | 2005-10-23 23:45:57
Callie - No, it's not possible to watch DVDs on the PSP, but you can buy movies made specifically for the PSP. These are called UMD movies, and should be available from most movie resellers. You can also convert movies to PSP format and transfer them to a Memory Stick in your PSP. For this you need a program such as PSP Video 9.

jeremy - You could look at bittorrent sites, or on Direct Connect, it isn't at all unusual to find movies already converted to PSP format.

Invalid ffmpeg option - I think you may have an old version of ffmpeg, download the latest version and try again.
Guest - Question? Unregistered | 2005-11-21 11:14:43
Hey all this is very well if you have a PC, but I'm on a MAC! Have converted files to MP4, created the file structure you mentioned earlier, but still no luck, Any programs out there specifically for converting dvd to PSP fromat? Any suggestions????? Cheers Rich
Guest - iPSP for Mac and Windows Unregistered | 2005-11-22 12:33:22
This is primarily for Linux, although it should work on Mac OSX as well.

There is a program called iPSP available for both Windows and Mac OSX, I haven't tried it myself but it seems to be quite capabable. You can find it here:
http://ipsp.kaisakura.com/

For Windows users there is also a program called PSP Video 9 which I've tried and it works really good. Once installed it's more or less just a matter of selecting a video file and type of compression and even that isn't necessary.

I believe both of these programs actually use ffmpeg to do the actual conversion of the movies, they are more or less just graphical interfaces to make compression easier.

Olle Johansson - Site Owner
Guest - Error: Unknown input or output Unregistered | 2005-12-01 06:25:09
Hi I don't know whta am i doing wrong but I get this error:
Unknown input or output format: psp
when i ommint -f psp the error dissapear but when io try to see on my psp I just don't unreconized the file. plz help.

Sorry about my english I'm from Ecuador.
Guest - Unknown input or output format Unregistered | 2005-12-01 16:10:38
I'm not sure, but it probably means that your version of ffmpeg is too old, try updating to the latest development version.

/Olle
Guest - SaSuke Unregistered | 2005-12-27 19:16:55
itīs good to see that someone really thinks about us linux users.
Thanks!
Guest - followed directions but still Unregistered | 2005-12-29 06:05:17
I've upgraded to firmware 2.6 prior to these instructions. I built the latest ffmpeg as directed. I named everything as instructed. The PSP sees the video but when I try to run it I get "This video cannot be played" on the PSP. I can play this video on both Linux and Windows PCs. Any suggestions? Is it possible that the 2.6 PSP firmware is the problem?
Thanks!
Guest - still no videos!!! Unregistered | 2005-12-31 19:21:06
i followed your advice and the advice of many other websites yet i can't get videos on my psp! I created the folder MP_ROOT in the root file after opening the removable disk then created the file 100MNV01 after doing this i used the 3gp converter to make the file a MPEG-4 file, i put it in the 100mnv01 folder along with the thumbnail i have also called the file M4V00001.MP4 and i called the thumbnail M4V00001.MP4 but i still can't get the files on my psp can anyone help PLEASE!
Guest - still no luck! Unregistered | 2005-12-31 19:34:25
i followed your advice(every detail) and still i cant get videos on the psp can any1 help?
Guest - Unknown input or output format Unregistered | 2006-01-01 16:15:23
I get "Unknown input or output format: psp" with the latest ffmpeg build:"ffmpeg version 0.4.9-pre1, build 4718, Copyright (c) 2000-2004 Fabrice Bellard
built on Dec 16 2005 19:08:48, gcc: 3.3.1 (Mandrake Linux 9.2 3.3.1-2mdk"
Looks like one of the only things Windows is good for, video conversion.
Thanks for the guide though, only linux/psp/video one i can find.
Guest - A site with additional info Unregistered | 2006-01-01 18:50:55
http://www.linuxpspvideo.org/
Guest - this video cannot be played Unregistered | 2006-01-13 00:11:35
I followed the exact steps mentioned in the above how-to, but with the release of latest PSP firmware 2.60, I am able to transfer videos to my PSP, but whenever I try to play the video it gives an error saying "this video cannot be played", any tips?
Guest - hi Unregistered | 2006-01-23 01:39:05
can someone please show me step by step on how to put movies and videos on my psp by using windows and mp4's... please ?
Guest - how? Unregistered | 2006-01-23 01:51:16
how do you create the directory and do you do it on the psp or on the pc
hey Unregistered | 2006-12-28 08:06:36
hey ther,im new to this...wen i try to download movies to my psp using the usb connection,it comes up with some error,it tells me that the file is corrupt,then it closes the PSP folder,please help i got no clue as wat to do........
welsly Unregistered | 2007-01-22 16:40:19
I tried saving a movie file in the M4V03500.MP4 format in MP_ROOT folder, when i went to see the movie, it said the file was corrupted, what can i do to view theseclips, do i save them a different way?
A Guy - DVD TO PSP Unregistered | 2007-01-30 20:21:29
Hey guys, i use a program called Handbrake which rips a dvd and produces an mp4 format video. have the screen size as 320 by 240 or smaller.You cannot have more than 76800 pixels. You can have the frame rate as 30fps . Use a bit rate of 500 and have audio bitrate of 128 and a sample rate of 44100.
For some reason this video will not play, so you have to re-encode using quicktime pro. Use the same exact settings are you did before, then the video will be good to go. hope that was helpful.
Write comment
Name:
Title:
UBBCode:
[b] [i] [u] [url] [quote] [code] [img] 
 
Security Image

Powered by JoomlaCommentCopyright (C) 2006 Frantisek Hliva. All rights reserved.Homepage: http://cavo.co.nr/

 
< Prev   Next >
 

Content © 2006 PSPnuts
Design by Net Dreams
Powered by Joomla