[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Re: Codificar VCD con mencoder



El mié, 05-09-2007 a las 14:58 -0400, Josue Marrero Bermúdez escribió:
> Saludo colegas.
> 
> Necesito el script para codificar a VCD un fichero  .avi utilizando el 
> mencoder....

¿tiene que ser necesariamente con mencoder?

#--------------------------------------

#!/bin/bash
# script para Josue
# licencia MSERLQHCN

echo "¿tiene que ser con memcoder?"
read TIENE_QUE_SER

if [ $UID != 0 ] ; then
	echo "Necesitas ser root para hacer esto"
	exit 1
fi

if [ $TIENE_QUE_SER == no ]; then
	/usr/bin/aptitude install -y ffmpeg
	man ffmpeg
else
	echo "deb-src http://www.debian-multimedia.org etch main"
	/usr/bin/aptitude update
	/usr/bin/aptitude install -y debian-multimedia-keyring
	/usr/bin/aptitude update
	/usr/bin/aptitude install -y mencoder
	/usr/bin/man mencoder
fi

/usr/bin/man bash

echo "Ahora aplica lo del manual."

#--------------------------------------

Espero que te funcione ;)

Saludos




Reply to: