Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (49)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

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

  • Custom routes for ffmpeg

    3 avril 2014, par Diego Castro

    I want to know how to configure the routes in and out of ffmpeg,

    I have ffmpeg in : C :/Programs/Executable/

    the input folder is : D :/Diego/sequence/

    and output folder is : E :/project/video/

    I want to do is to convert a sequence of images (jpg) to video (mp4)
    and I do not know how to set all the routes, in advance I appreciate your help

  • using ffmpeg to decode h264 streaming video in C# [on hold]

    4 août 2015, par DanielY

    I’m wokring on a small project which I get h264 video packets live, and would like to decode them and present it on the screen (in a picturebox or simillar).

    I’ve googled alot about ffmpeg usage in C# but haven’t found neither the required dll’s to load in C# project nor code examples for me to review.

    Can someone please show me some example and\or direct me to where I can download the necessary avcodec dll’s ?

    Thanks in advance

  • how do I write to avlibs AVOptions from C

    10 avril 2018, par vinay samuel

    I want to do the equivalent of the following command line from a C program.

    ffmpeg ..... -movflags frag_keyframe

    I have narrowed it down to setting some fields in priv_class in AVOutputFormat somehow. But I don’t understand how AVOptions work, I could not find a good example that explains how AVOptions are set and used. I did come across av_opt_set but if I set the name field to "movflags" what is the val and do I set a separate option for frag_keyframe or is it embedded in the flags set for "movflags" ?
    Thanks in advance for your time.