PDA

View Full Version : Want to Convert pmf to avi, no matter what it takes!!!



borgqueenx
09-12-2007, 03:47 PM
No matter what program i need to install, what software i need to download, how many people i need to ask/pm, i really want something or someone to help me convert a .pmf into a .avi with sound and video.

Much, MUCH appriciated if you help me:);):cool:

GSmoke
09-12-2007, 03:49 PM
the only one who did it is z33 , or get yourslef a slim , and AV cable , and capture the source , pmf is closed format ....

ryanwalton50
09-12-2007, 04:20 PM
is there a program that will record the output of the psp screen? similar to screen shots but video recording of the xmb? if so just re-record the gameboot to memory stick and volla? well in practice :)

GSmoke
09-12-2007, 04:42 PM
is there a program that will record the output of the psp screen? similar to screen shots but video recording of the xmb? if so just re-record the gameboot to memory stick and volla? well in practice :)

Well actually good point , you can do this , i remember there are screen captures for the XMB , and the gameboot is included , you only capture the screen and start something to show you the gameboot , then you have = Gif file = any editing video software can make a video from gif ...

For the audio , Line In , with 2 side jack cable and REcording it , then Multiplex Audio and Video.

afiser
09-12-2007, 04:52 PM
remotejoy + PC video recorder = your answer.

matriculated
09-12-2007, 04:55 PM
remotejoy + PC video recorder = your answer.

This is probably your best bet.

GIF captures only 256 colours so it's pretty crappy.

Istari
09-12-2007, 04:57 PM
PMF is h.264 video with ATRAC3+ audio in a custom container.
Mplayer can dump the video and convert it to AVI, but it can't dump the audio.
I don't know of any legal program to dump the audio. But if you do manage to dump the audio, it should be easy to combine it with the dumped video.

Download mplayer and type the following commands on your command line.

replace infile.pmf with the name of your pmf file


mplayer -dumpvideo -dumpfile raw.264 infile.pmf
mencoder raw.264 -o outfile.avi -ovc lavc -lavcopts vcodec=mpeg4

raw.264 will contain the raw h.264 video stream
outfile.avi will contain the re-encoded video

afiser
09-12-2007, 05:03 PM
PMF is h.264 video with ATRAC3+ audio in a custom container.
Mplayer can dump the video and convert it to AVI, but it can't dump the audio.
I don't know of any legal program to dump the audio. But if you do manage to dump the audio, it should be easy to combine it with the dumped video.

Download mplayer and type the following commands on your command line.

replace infile.pmf with the name of your pmf file


mplayer -dumpvideo -dumpfile raw.264 infile.pmf
mencoder raw.264 -o outfile.avi -ovc lavc -lavcopts vcodec=mpeg4

raw.264 will contain the raw h.264 video stream
outfile.avi will contain the re-encoded video

interesting, i never knew about this...cool.