Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (63)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8429)

  • compiling ffmpeg from source on debian with dependencies also from source, gives shared library error

    17 mars 2017, par devprashant

    here is a snippet from script(permalink) that is created for compiling and installing ffmpeg from source with compiling its dependencies also from source :

    local_install="$HOME/.localpacks"
    mkdir $local_install 2> /dev/null


    if [[ $PATH != *"$local_install"* ]]; then
     echo "Setting PATH to point to" $local_install
     echo PATH=$HOME/.localpacks/bin:$HOME/.localpacks/share:$HOME/.localpacks/include:$HOME/.localpacks/lib:$PATH >> ~/.bashrc
    # ======see here when pointed below=============================
    else
     echo "PATH already configured"
    fi

    ...................
     part of script which download and compile dependencies
    ...................

    wget http://ffmpeg.org/releases/ffmpeg-3.2.4.tar.bz2 && \
    tar xf ffmpeg-3.2.4.tar.bz2 && \
    cd ffmpeg-3.2.4 && \
    ./configure   \
      --prefix="$local_install" \
      --pkg-config-flags="--static"  \
      --extra-cflags="-I$HOME/.localpacks/include" \
      --extra-ldflags="-L$HOME/.localpacks/lib" \
      --bindir="$HOME/.localpacks/bin" \
      --enable-gpl \
      --enable-libass \
      --enable-libfreetype  \
      --enable-libmp3lame  \
      --enable-libx264  \
      --enable-nonfree && \
    make -j4 && make install && \
    cd .. && \
    rm ffmpeg-3.2.4* -rf

    source ~/.profile

    It install ffmpeg correctly. but when i run ffmpeg from terminal it gives :

    ffmpeg : error while loading shared libraries : libass.so.9 : cannot open
    shared object file : No such file or directory

    From upper code snippet , (where you can see now), PATH include $local_install/lib.

    On ls to /.localpacks/lib :

    abc@server:~/.localpacks/lib$ ls
    libass.a libass.so.9 libass.la libass.so.9.0.0 libass.so libavcodec.a

    So, libass.so.9 is in library path.

    To run it correctly , need to run like below :

    $ LD_LIBRARY_PATH=$HOME/.localpacks/lib/:$LD_LIBRARY_PATH
    $ LD_LIBRARY_PATH=$local_install/lib ffmpeg

    So, why i need to include it again in LD_LIBRARY_PATH to run ffmpeg.

    Here is the permalink to the script : install_ffmpeg_from_source.sh

  • create single video form 3 separate videos using FFmpeg

    24 septembre 2019, par Shijin

    I was trying to create single video form 3 separate videos using FFmpeg.

    ffmpeg -y -loglevel debug  -i /home/ubuntu/test/1569317318/15693173181124138568.webm   -i /home/ubuntu/test/1569317318/1569317318867082351.webm   -i /home/ubuntu/test/1569317318/1569317318191333163.webm  -filter_complex '[0]scale=320:-1[a];[1]scale=320:-1[b];[2]scale=320:-1[c];[3]scale=320:-1[d];[a]pad=640:480[x];[x][b]overlay=320[y];[y][c]overlay=0:240[z];[z][d]overlay=320:240;[0][1]amix'  -c:v libx264   -crf 23   -preset veryfast   -shortest   /home/ubuntu/test/1569317318/1569317318478598265.mp4

    This is not woking, It throws an error like bellow

    Invalid file index 3 in filtergraph description
    [0]scale=320 :-1[a] ;[1]scale=320 :-1[b] ;[2]scale=320 :-1[c] ;[3]scale=320 :-1[d] ;[a]pad=640:480[x] ;[x][b]overlay=320[y] ;[y][c]overlay=0:240[z] ;[z][d]overlay=320:240 ;[0][1]amix.

    How to fix it ? If we provide four inputs, It is working

  • 1 movie to 14 part video / 1 Subtitle [closed]

    10 avril 2020, par Tayfun Erbilen

    I just cut my one long movie to 14 piece with ffmpeg.

    



    And now, I don't know how to show subtitle.

    



    Subtitle was for full version, but now I have 14 pieces and I don't know how to fit subtitle to these parts. By the way, I want to show on web. I'm using jwplayer for videos, but still I didn't figure out subtitle issue.

    



    Is anyone suggestion ?