commandlinefu.com is the place to record those command-line gems that you return to again and again.
Delete that bloated snippets file you've been using and share your personal repository with the world. That way others can gain from your CLI wisdom and you from theirs too. All commands can be commented on, discussed and voted up or down.
If you have a new feature suggestion or find a bug, please get in touch via http://commandlinefu.uservoice.com/
You can sign-in using OpenID credentials, or register a traditional username and password.
First-time OpenID users will be automatically assigned a username which can be changed after signing in.
Every new command is wrapped in a tweet and posted to Twitter. Following the stream is a great way of staying abreast of the latest commands. For the more discerning, there are Twitter accounts for commands that get a minimum of 3 and 10 votes - that way only the great commands get tweeted.
» http://twitter.com/commandlinefu
» http://twitter.com/commandlinefu3
» http://twitter.com/commandlinefu10
Use your favourite RSS aggregator to stay in touch with the latest commands. There are feeds mirroring the 3 Twitter streams as well as for virtually every other subset (users, tags, functions,…):
Subscribe to the feed for:
./encode.sh [ h264 | xvid | theora | mpeg4 ]
There are 4 alternatives - vote for the best!
If you can do better, submit your command here.
You must be signed in to comment.
nice work!
it s not a oneliner !
and why not put directly the script ? You can put the link to pdf in the comment eventually isn't ?
ok I put it here :
#!/bin/sh
#
# Example script to encode video in various test formats for streaming
# by jaromil and xname
#
# commands used:
#### H.264 + MP3
# mencoder -oac mp3lame -lameopts vbr=0:br=128:mode=0
# -ovc x264 -x264encopts bitrate=$bitrate
#### XVID + MP3
# mencoder -oac mp3lame -lameopts vbr=0:br=128:mode=0
# -ovc xvid -xvidencopts bitrate=$bitrate
#### THEORA + VORBIS
# ffmpeg2theora --audiobitrate 128 --samplerate 44 -a 8
# --videobitrate $bitrate --videoquality 8
#### MPEG4
# mencoder -oac mp3lame -lameopts vbr=0:br=128:mode=0
# -ovc lavc -lavcopts vcodec=mpeg4:vbitrate=$bitrate
if [ -z $1 ]; then
echo "usage: $0 [ h264 | xvid | theora | mpeg4 ]"
exit 1
fi
ORIGS=/Streamtestfiles/Originaltestfiles/
DEST_H264=/Streamtestfiles/h264/mp3
DEST_XVID=/Streamtestfiles/xvid/mp3
DEST_THEORA=/Streamtestfiles/theora/vorbis
DEST_MPEG4=/Streamtestfiles/mpeg4/mp3
mkdir -p $DEST_H264 $DEST_XVID $DEST_THEORA $DEST_MPEG4
BITRATES="200,300,600,800,1200,4000,8000"
# small useful function to iterate comma separated arrays:
iterate() {
echo "$1" | awk '
BEGIN { RS = "," }
{ print $0 }';
}
##########################################################
## main ()
for bitrate in `iterate $BITRATES`; do
for f in `ls $ORIGS`; do
if [ `echo $@ | grep -i h264` ]; then
########################################################
## H264
encoding="`echo ${f} | cut -d. -f1`_h264_$bitrate.avi"
echo "(`date`) encoding $encoding"
echo "using h.264/mp3 at bitrate $bitrate"
echo "starting up in 3 seconds (press ctrl-c to cancel)"
sleep 3
mencoder -oac mp3lame -lameopts vbr=0:br=128:mode=0 \
-ovc x264 -x264encopts bitrate=$bitrate \
${ORIGS}/${f} -o ${DEST_H264}/${encoding}
########################################################
fi
if [ `echo $@ | grep -i xvid` ]; then
########################################################
## XVID
encoding="`echo ${f} | cut -d. -f1`_xvid_$bitrate.avi"
echo "(`date`) encoding $encoding"
echo "using xvid/mp3 at bitrate $bitrate"
echo "starting up in 3 seconds (press ctrl-c to cancel)"
sleep 3
mencoder -oac mp3lame -lameopts vbr=0:br=128:mode=0 \
-ovc xvid -xvidencopts bitrate=$bitrate \
${ORIGS}/${f} -o ${DEST_XVID}/${encoding}
########################################################
fi
if [ `echo $@ | grep -i theora` ]; then
########################################################
## THEORA
encoding="`echo ${f} | cut -d. -f1`_theora_$bitrate.ogg"
echo "(`date`) encoding $encoding"
echo "using theora/vorbis at bitrate $bitrate"
echo "starting up in 3 seconds (press ctrl-c to cancel)"
sleep 3
ffmpeg2theora --audiobitrate 128 \
--videobitrate $bitrate \
${ORIGS}/${f} -o ${DEST_THEORA}/${encoding}
########################################################
fi
if [ `echo $@ | grep -i mpeg4` ]; then
########################################################
## MPEG4
encoding="`echo ${f} | cut -d. -f1`_mpeg4_$bitrate.avi"
echo "(`date`) encoding $encoding"
echo "using mpeg4/mp3 at bitrate $bitrate"
echo "starting up in 3 seconds (press ctrl-c to cancel)"
sleep 3
mencoder -oac mp3lame -lameopts vbr=0:br=128:mode=0 \
-ovc lavc -lavcopts vcodec=mpeg4:vbitrate=$bitrate \
${ORIGS}/${f} -o ${DEST_MPEG4}/${encoding}
########################################################
fi
done
done
## end
########################################################################