convertovanie do 3gp...

Sekcia: Aplikácie & Desktop 25.11.2006 | 21:24
Avatar marallo Ubuntu  Používateľ
Zdravim, nevie niekto ako by sa dal v linuxe skonvertovat videosubor na 3gp? Velmi nerad by som koli tomu chodil do WindoWs... Zatial dik.
    • Re: convertovanie do 3gp... 24.11.2006 | 18:27
      ---   Návštevník
      napr. http://ubuntuforums.org/showthread.php?t=216083&highlight=convert+to+3gp
      • Re: Re: convertovanie do 3gp... 25.11.2006 | 10:32
        Avatar marallo Ubuntu  Používateľ
        No, mozno by to bolo dobre, ale ten program sa mi akosi nepodarilo sosnut, a ta webova sluzba je strasne pomala. Nevie niekto o niecom dalsom?
        • Re: Re: Re: convertovanie do 3gp... 25.11.2006 | 12:07
          ---   Návštevník
          http://ubuntuforums.org/search.php?searchid=10159543 co takto pouzit vyhladavanie? Zeby u teba nefungovalo?
          • Re: Re: Re: Re: convertovanie do 3gp... 25.11.2006 | 21:24
            Avatar marallo Ubuntu  Používateľ
            Dakujem, problem vyrieseny. Poriesil som to nasledujuco: 1. Vytvoris subor /usr/bin/mk3gp 2. Vlozis donho: #!/bin/bash SETUP () { rm -rf ~/.3gptemp mkdir ~/.3gptempcd ~/.3gptemp sudo apt-get install -y subversion mencoder mplayer build-essential svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg mkdir ffmpeg/libavcodec/amr_float cd ffmpeg/libavcodec/amr_float wget http://www.3gpp.org/ftp/Specs/archive/26_series/26.104/26104-510.zip unzip 26104-510.zip unzip 26104-510_ANSI*.zip cp -f makefile.gcc makefile cd ../../ echo -e "\nWe are in `pwd`\n" ./configure --enable-amr_nb make sudo make install } MAKE () { echo $file mencoder $file -nosound -ovc lavc -lavcopts vcodec=mpeg4 -vop expand=176:144,scale=176:-2 -o movie.avi -ofps 12 mplayer -vo null -ao pcm -af resample=8000,volume=+4db:sc $file ffmpeg -i movie.avi -i audiodump.wav -b 48 -ac 1 -ab 12 -map 0.0 -map 1.0 $file2 } if [ "$1" = "setup" ] ; then SETUP elif [ "$1" = "make" ] ; then file=$2; file2=$3 ;MAKE else echo "Useage: mk3gp setup|make input_filename output_filename" fi 3. zmenis prava na spustitelny subor (sudo chmod a+x /usr/bin/mk3gp) 4. zadas prikaz: mk3gp setup A hotovo. Ked xces konvertovat, zadas: mk3gp make video_vstupne video_vystupne zdroj: http://ubuntuforums.org/showthread.php?t=257653&highlight=3gp+convert Hotovo, nieje co riesit, uzatvaram temu, dakujem za pomoc.