Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (7958)

  • 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
  • Unable to parse graph description substring in passing two word in android ffmpeg command

    16 janvier 2017, par Virani Ashish

    i have create video editing application and i have add text in video but i can add text in android ffmpeg command with space in two word like ’ashish virani’ then error occur.

    VideoEditingActivity: ffmpeg version n3.0.1 Copyright (c) 2000-2016 the FFmpeg developers
                 built with gcc 4.8 (GCC)
                 configuration: --target-os=linux --cross-prefix=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/bin/arm-linux-androideabi- --arch=arm --cpu=cortex-a8 --enable-runtime-cpudetect --sysroot=/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/sysroot --enable-pic --enable-libx264 --enable-libass --enable-libfreetype --enable-libfribidi --enable-libmp3lame --enable-fontconfig --enable-pthreads --disable-debug --disable-ffserver --enable-version3 --enable-hardcoded-tables --disable-ffplay --disable-ffprobe --enable-gpl --enable-yasm --disable-doc --disable-shared --enable-static --pkg-config=/home/vagrant/SourceCode/ffmpeg-android/ffmpeg-pkg-config --prefix=/home/vagrant/SourceCode/ffmpeg-android/build/armeabi-v7a --extra-cflags='-I/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/include -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -fno-strict-overflow -fstack-protector-all' --extra-ldflags='-L/home/vagrant/SourceCode/ffmpeg-android/toolchain-android/lib -Wl,-z,relro -Wl,-z,now -pie' --extra-libs='-lpng -lexpat -lm' --extra-cxxflags=
                 libavutil      55. 17.103 / 55. 17.103
                 libavcodec     57. 24.102 / 57. 24.102
                 libavformat    57. 25.100 / 57. 25.100
                 libavdevice    57.  0.101 / 57.  0.101
                 libavfilter     6. 31.100 /  6. 31.100
                 libswscale      4.  0.100 /  4.  0.100
                 libswresample   2.  0.101 /  2.  0.101
                 libpostproc    54.  0.100 / 54.  0.100
               Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/GifMaker/video/Txt_1484571055758.mp4':
                 Metadata:
                   major_brand     : isom
                   minor_version   : 512
                   compatible_brands: isomiso2avc1mp41
                   encoder         : Lavf57.25.100
                 Duration: 00:00:05.85, start: 0.021333, bitrate: 714 kb/s
                   Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p, 480x200 [SAR 1:1 DAR 12:5], 578 kb/s, 30 fps, 30 tbr, 15360 tbn, 60 tbc (default)
                   Metadata:
                     handler_name    : VideoHandler
                   Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 48000 Hz, stereo, fltp, 127 kb/s (default)
                   Metadata:
                     handler_name    : SoundHandler
               [AVFilterGraph @ 0xacf304f0] **Unable to parse graph description substring: "ccjcjcjc
               v**
               gv:x=210:y=20"
               Error opening filters!
  • 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