Link to home
Start Free TrialLog in
Avatar of PJ0302917
PJ0302917

asked on

Need to use FFmpeg (WMV) to record desktop

Hi
I have a PC running Win XP x64 SP2 with Windows Media Player 11. I need to record the screen (no audio) and playback on the same PC. I'm using FFmpeg and have grabbed a command off google to get me started and tweaked it to get it to use the Windows Media Video codec

ffmpeg -y -rtbufsize 100M -f gdigrab -framerate 30 -probesize 10M -draw_mouse 1 -i desktop -c:v wmv2 -r 30 -preset ultrafast -tune zerolatency -crf 25 -pix_fmt yuv420p "video output.wmv"

Using pretty much the same command except swapping the codec (-c:v libx264) and filetype to ("video output.mp4") results in nice clear video. When I use the initial example, it works but is not very clear and pretty pixelated.

Unfortunately I can't install codecs and better media plays on the PC so I'm trying to work with Windows Media Player.

Does anyone have any idea how I can get better quality video which will play in Windows Media Player 11?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of marsilies
marsilies

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of PJ0302917
PJ0302917

ASKER

Thanks, upping the bitrate worked perfectly