Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (44)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6157)

  • Ffmpeg create gif from images with fullPath

    4 juillet 2020, par padavan

    I need create gif from images in one line (without external file with list images). I dont understand how create if i have full paths ?

    


    /home/userMo/test/dir1/4.jpg 
/home/userMo/pics/late/sada_342.jpg


    


    I try by concat , but its dont work

    


    ffmpeg -i "concat:/home/userMo/test/dir1/4.jpg|/home/userMo/pics/late/sada_342.jpg" -loop -1 out.gif


    


  • Compiler Optimization flags for ffmpeg on Intel Xeon Phi

    10 octobre 2016, par Ambujam

    I am trying to compile ffmpeg on Xeon Phi processor. Are there any specific compiler optimization flags specific for Xeon Phi that I can enable while configuring ffmpeg so that I can achieve better performance in terms of encoder frames per second ?

    Encoder used : x264
    Operating System : CentOS 7.2
    Compiler : GCC 4.8.5

    Currently, I am configuring ffmpeg with the below command line :

    ./configure --prefix="$HOME/ffmpeg_build"
    --extra-cflags="-I$HOME/ffmpeg_build/include"
    --extra-ldflags="-L$HOME/ffmpeg_build/lib" --bindir="$HOME/bin"
    --pkg-config-flags="--static" --enable-gpl --enable-nonfree
    --enable-libx264
  • Compiling and packging FFmpeg with special configuration

    1er septembre 2020, par Tnimni

    I need to compile FFmepg with specific configuration, that support nvidia cuda hardware acceleration.
In order to achive that, I'm compiling the code using the nvidia-cude-10.2 devel docker image.

    


    I want to take the files I compiled and move them to a python alpine docker after which.

    


    question is, if i follow the instructions here

    


    to be exact this part

    


    

       cd ~/ffmpeg_sources && \
   wget -O ffmpeg-snapshot.tar.bz2 https://ffmpeg.org/releases/ffmpeg-snapshot.tar.bz2 && \
   tar xjvf ffmpeg-snapshot.tar.bz2 && \
   cd ffmpeg && \
   PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
     --prefix="$HOME/ffmpeg_build" \
     --pkg-config-flags="--static" \
     --extra-cflags="-I$HOME/ffmpeg_build/include" \
     --extra-ldflags="-L$HOME/ffmpeg_build/lib" \
     --extra-libs="-lpthread -lm" \
     --bindir="$HOME/bin" \
     --enable-gpl \
     --enable-gnutls \
     --enable-libaom \
     --enable-libass \
     --enable-libfdk-aac \
     --enable-libfreetype \
     --enable-libmp3lame \
     --enable-libopus \
     --enable-libvorbis \
     --enable-libvpx \
     --enable-libx264 \
     --enable-libx265 \
     --enable-nonfree && \
   PATH="$HOME/bin:$PATH" make && \
   make install && \
   hash -r


    


    


    and than copy the files in the $HOME/bin directory will it be enough ?

    


    Should I use cuda container instead of python alpine and install python on it ? I'm not sure if the cuda runtime is required after compilation