I want just to ask if you can help me to convert one RealMedia video file (from stream) to ogg video ?
Any advice is welcome.
Code: Select all
[marek@pluto ~]$ file stream.rm
stream.rm: RealMedia file
[marek@pluto ~]$
Code: Select all
[marek@pluto ~]$ file stream.rm
stream.rm: RealMedia file
[marek@pluto ~]$

Code: Select all
mplayer movie.rm -dumpaudio -dumpfile audio.wav
oggenc audio.wavHe is talking about video, not audio. oggenc in audio only afaik.beandog wrote:I'm not very good at doing just audio stuff with mencoder, but I think this might work:
Code: Select all
mplayer movie.rm -dumpaudio -dumpfile audio.wav oggenc audio.wav
Code: Select all
mencoder movie.rm -ovf lavf -ovc theora -oac lavc -lavcopts acodec=vorbis -o movie.ogmCode: Select all
mkfifo /tmp/temp_file
mplayer -really-quiet -vo null -vc null -ao pcm:waveheader:file="/tmp/temp_file" "source_file_or_url" &
oggenc /tmp/temp_file -Q -q 6 -o destination_file.ogg
rm -fr /tmp/temp_fileCode: Select all
mencoder ./stream.rm -o temp.avi -ovc lavc -oac lavcCode: Select all
./ffmpeg2theora-0.18.linux.bin ./temp.avi -o output.oggbeandog wrote:Code: Select all
mencoder movie.rm -ovf lavf -ovc theora -oac lavc -lavcopts acodec=vorbis -o movie.ogm
Code: Select all
[mmahut@mmahut ~]$ mencoder -ovc help
MEncoder 1.0rc1-4.1.1 (C) 2000-2006 MPlayer Team
CPU: Genuine Intel(R) CPU T2400 @ 1.83GHz (Family: 6, Model: 14, Stepping: 8)
CPUflags: Type: 6 MMX: 1 MMX2: 1 3DNow: 0 3DNow2: 0 SSE: 1 SSE2: 1
Compiled with runtime CPU detection.
Available codecs:
copy - frame copy, without re-encoding. Doesn't work with filters.
frameno - special audio-only file for 3-pass encoding, see DOCS.
raw - uncompressed video. Use fourcc option to set format explicitly.
nuv - nuppel video
lavc - libavcodec codecs - best quality!
vfw - VfW DLLs, read DOCS/HTML/en/encoding-guide.html.
qtvideo - QuickTime DLLs, currently only SVQ1/3 are supported.
libdv - DV encoding with libdv v0.9.5
xvid - XviD encoding
x264 - H.264 encoding
[mmahut@mmahut ~]$
Ah, yah. I can never remember which OSS codecs they don't support. MPlayer will play Theora files, but can't encode to them.pyxel wrote:No, mencoder/mplayer doesn't support theora at all. Already had a flame with devlopers about thatthe prive response was 'ogg developera had a smaller brain that dog' - well, it shows how mplayer developres are good.