Alternative to Screenium for Linux and splitting extracting audio from video

0

On my Mac I use Screenium to record screencast or streaming video. I can then take that and extract the audio from the file if I like. I'm looking for a way to do this on Linux.

I've heard of Screenr, Wink, and gtk- recordmydesktop.

What is the best way to record screencasts and streaming video, and what is the best way to split audio from the file aftwerwards in Linux?

GiH

Posted 2009-11-20T02:15:58.527

Reputation: 3 667

Answers

0

What is the best way to record screencasts and streaming video,

RecordMyDesktop / Instanbul

what is the best way to split audio from the file aftwerwards in Linux?

WinFF, is the GUI frontend to ffmpeg

Sathyajith Bhat

Posted 2009-11-20T02:15:58.527

Reputation: 58 436

0

For capture Xvidcap works well. To pull audio out of that file you can use ffmpeg, like so:

ffmpeg -i capture_vid.mpg -ab 128 -ar 44100 extracted_audio.mp3

For GUI-based audio extraction, you can use VLC and the Convert/Stream feature

SleighBoy

Posted 2009-11-20T02:15:58.527

Reputation: 2 066

i'd prefer a GUI if there is one – GiH – 2009-11-20T03:09:39.250