Jump to content
N-Europe

Converting Windows Media Center Recordings


Eddage

Recommended Posts

Just wandering if any Media Center users knew of any programs that can convert the .asf format that are created when you record a tv program?

 

I usually use VirtualDub for this sort of thing but it says that it cannot convert the file?

 

Cheers for any help!

Link to comment
Share on other sites

There are two routes that I would try.

 

i) Install avisynth (a great move) and create a text file with the extension .avs, where the text file contains the line:

 

DirectShowSource("Full FilePath of asf file", fps=25, convertfps=true)

 

So it'll be an avs file with a line like:

 

DirectShowSource("C:\Documents and Settings\Twilight Link\My Documents\My Videos\TV Show.asf", fps=25, convertfps=true)

 

Then you can open this text file in virtualdub and avisynth will work its magic.

 

Or

 

ii) Get ffmpeg, open a command window and use the commandline:

 

"full path to ffmpeg.exe" -i "full path to file" -f mpeg -vcodec copy -acodec copy output.mpg

 

Then you can open the resulting mpeg2 file in virtualdubmpeg2 (a virtualdub modification).

Link to comment
Share on other sites

I tried the first approach, however, when I try to open the .avs file in VirtualDub it just gives me this message...

 

Avisynth open failure:

Script error: DirectShowSource does not have a named argument "convert fps" (C:\Documents and Settings\Edd\My Documents\test.avs, line 1)

 

Any ideas?

Link to comment
Share on other sites

Oh, you assumed it was an asf file? I believe they are normally dvr-ms files.

 

Well when you try to open it in VirtualDub it says something along the lines of "Microsoft holds the patent to ASF file format", or something along those lines!

Link to comment
Share on other sites

A dvr-ms file uses the asf container but the file extension for these files is usually dvr-ms. Go into Windows Explorer and turn on file extensions then all confusion will be done away with.

Windows Explorer>Tools>Folder Options>View>Untick "Hide Extensions for known file types"

Link to comment
Share on other sites

×
×
  • Create New...