Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (111)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (14776)

  • FFMPEG thumb creation error

    12 décembre 2012, par Paul

    I've installed FFMPEG and using FFMPEG Ultimate, a class I downloaded to create thumbnail images of FLV's.

    It has been working perfectly even after upgrading to the latest release of FFMPEG last month. However it has suddenly stopped working. I had it working at 12:00 today (last thumb created at 12:02) then suddenly 30 mins later it has stopped.

    The other strange thing is I can retrieve FLV meta data using the FFMPEG Ultimate class, which leads me to believe that FFMPEG is working, but creating images is not working...

    Can anyone give any pointers as to how to test and diagnose FFMPEG, also can it suddenly crash for no apparent reason ? If it does how do you re-start it ?

    Thanks in advance

  • ffmpeg vp9 not setting constant quality

    28 mai 2018, par cclloyd

    I’m running ffmpeg to convert a 4k hevc video to vp9 but no matter what setting I use, it always comes out horrible quality and the same filesize.

    Command :

    ffmpeg -y -i /tmp/longsample.mkv -threads 6 -c:a libopus -c:v libvpx-vp9 -crf 30 /tmp/vp9-30.mkv
    ffmpeg -y -i /tmp/longsample.mkv -threads 6 -c:a libopus -c:v libvpx-vp9 -crf 15 /tmp/vp9-15.mkv
    ffmpeg -y -i /tmp/longsample.mkv -threads 6 -c:a libopus -c:v libvpx-vp9 -crf 0 /tmp/vp9-0.mkv

    I’m using the ffmpeg:latest on docker.

  • Can't build ffmpeg

    7 avril 2016, par Dev_Vlad

    I have some problems with building ffmpeg for servestream radio.

    Here’s the log :

    build-ffmpeg:
    [exec] arm-linux-androideabi-gcc is unable to create an executable file.
    [exec] C compiler test failed.
    [exec]
    [exec] If you think configure made a mistake, make sure you are using the latest
    [exec] version from Git.  If the latest version fails, report the problem to the
    [exec] ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.freenode.net.
    [exec] Include the log file "config.log" produced by configure as this will help
    [exec] solving the problem.
    [exec] Copying FFmpeg .so files from /home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/submodules/ffmpeg-0.11.1-android-2012-09-18/build/ffmpeg to /home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/jni/ffmpeg/ffmpeg/armeabi
    [exec] Copying FFmpeg .so files from /home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/submodules/ffmpeg-0.11.1-android-2012-09-18/build/ffmpeg to /home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/jni/ffmpeg/ffmpeg/armeabi-v7a
    [exec] Native build complete, exiting...
    [exec] cp: не could not execute stat for «/home/vlad/WORK/Ubuntu/OnlineRadioSamples/servestream-master-minstrely/submodules/ffmpeg-0.11.1-android-2012-09-18/build/ffmpeg/armeabi-v7a»: No such file or catalog

    native-clean:
    [exec] Android NDK: WARNING: APP_PLATFORM android-17 is larger than android:minSdkVersion 8 in ./AndroidManifest.xml    
    [exec] Android NDK: ERROR:jni/ffmpeg/Android.mk:avcodec: LOCAL_SRC_FILES points to a missing file    
    [exec] Android NDK: Check that jni/ffmpeg/ffmpeg/armeabi/lib/libavcodec.so exists  or that its path is correct  
    [exec] /home/vlad/android/ndk/build/core/prebuilt-library.mk:45: *** Android NDK: Aborting    .  Stop.

    In arm-build.sh file I edited some lines :

    export NDK=${HOME}/android-ndk

    to

    export NDK=/home/vlad/android/ndk

    next :

    TOOLCHAIN=`echo $NDK/toolchains/arm-linux-androideabi-4.6/prebuilt/linux-x86*`

    to

    TOOLCHAIN=`echo $NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/linux-x86*`

    What’s wrong ?