Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (56)

  • 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 (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (8218)

  • configure Xuggler on Ubuntu 14-04

    22 juillet 2015, par Aida

    I was trying to install Xuggle on Ubuntu with this tutorial

    But when I used ant stage it doesn`t work. I see these commands on the terminal

    > root@test1:~# ant stage Unable to locate tools.jar. Expected to find
    > it in /usr/lib/jvm/java-7-openjdk-amd64/lib/tools.jar Buildfile:
    > build.xml does not exist! Build failed

    Do you have any idea how I can fix it ?

  • Writing each I frame into a different .mp4 file and adding some additional logs

    8 juin 2018, par MSD Paul

    While using x264 encoder, how to store each and every I frame (from each and every .png file (frame)) into a different .mp4 file ?

    If I have 5 frames, after encoding those 5 frames into 5 I frames how to write those in different files ?

    Another Question : How to put few additional log messages or print statements in few functions in x264 code which I can view on the terminal as the encoding output like other logs ???

  • Ffmpeg apply filter with C++ API

    29 septembre 2022, par Turgut

    I want to apply a filter to my encoded ffmpeg video. I've found a terminal command that presumably does what I want. But the problem is I want to do this inside my code, specifically my encoder.

    


    How can I achieve this ? What function/code snippet allows me to propperly implement colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131[colorchannelmixed]
and [colorchannelmixed]eq=1.0:0:1.3:2.4:1.0:1.0:1.0:1.0[color_effect] using the C library ?