Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (72)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (7269)

  • Cannot install Libtool library used but `LIBTOOL' is undefined trying to install ffmpeg

    23 décembre 2014, par user1503606

    I am trying to install ffmpeg on centos following this tutorial.

    http://ffmpeg.org/trac/ffmpeg/wiki/CentosCompilationGuide

    but when i run.

    cd ~/ffmpeg_sources
    git clone --depth 1 git://github.com/mstorsjo/fdk-aac.git
    cd fdk-aac
    autoreconf -fiv
    ./configure --prefix="$HOME/ffmpeg_build" --disable-shared
    make
    make install
    make distclean

    I get the following error.

    cd . && /bin/sh /root/ffmpeg_sources/fdk-aac/missing --run automake-1.9 --foreign
    Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
    make: *** [Makefile.in] Error 1
    [root@worldnewstranslate fdk-aac]# make install
    cd . && /bin/sh /root/ffmpeg_sources/fdk-aac/missing --run automake-1.9 --foreign
    Makefile.am: C objects in subdir but `AM_PROG_CC_C_O' not in `configure.ac'
    make: *** [Makefile.in] Error 1

    I cannot get it to work for the life of me any help please why i maybe getting these errors.

    Thanks

  • Revision 45200 : Utiliser MediaInfo ...

    6 mars 2011, par kent1@… — Log

    Utiliser MediaInfo ?

  • ffmpeg build thumbnail sequence while transcoding

    9 novembre 2018, par Redtopia

    With the goal of improving performance while processing a video file and outputting it into 3 parallel output files, would it be possible to also build a thumbnail sequence as another parallel output or in another process ?

    To create the 3 parallel outputs, I’m following the example on this page : https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs

    ...and using this example :

    ffmpeg -i input \
       -s 1280x720 -acodec … -vcodec … output1 \
       -s 640x480  -acodec … -vcodec … output2 \
       -s 320x240  -acodec … -vcodec … output3

    My command to generate thumbnails looks like this :

    ffmpeg -f image2 -ss 2 -r "1/3" -s 100x50 ./thumbs/th-%04d.png

    I’m using the ffmpeg 4.1

    What I’m finding is that building a series of thumbnails, say 1 every 10 seconds, can be quite time consuming for large video files, so I’m guessing I could save some processing time if I could build the thumbs at the same time.