as

Friday 29 May 2015

How to record your computer screen using ffmpeg

Introduction
ffmpeg is used to stream the multimedia data from one source to destination. We can record our screen or stream the screen data to multiple people online.

Installation of ffmpeg
You will need to download and install 2 things

  1. ffmpeg static build
  2. Screen Capture Recorder 

Recording the screen using ffmpeg on Window system
First you should install screen capture recorder. Next, Extract ffmpeg static build zip using 7z utility. In the extracted folder, you will find the ff-prompt.bat file. Just launch it and use below command.

 ffmpeg -f dshow -r 5 -i video="screen-capture-recorder" d:\blogs\nn3.flv

After that you can do some activities on the desktop which will be recorded and flv file will be created in d:\blog folder.

Below command can be used to create mp4 files.
 ffmpeg -f dshow -r 5 -i video="screen-capture-recorder" d:\blogs\nn4.flv

Errors while Recording the screen using ffmpeg on Window system
You may see errors saying "real time buffer too full or near to full... frames dropped" This might occur due to low memory in your computer. You can solve this problem by choosing low frame rate like below 5 using command line switch say   -r 5.

What do you think on this topic? Please express your opinion or ask any question through comment below. You can write to me at reply2sagar@gmail.com

No comments:

Post a Comment

Leave your valuable feedback. Your thoughts do matter to us.

Sponsored Links

Popular Posts

Comments

ShareThis