Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (61)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (6207)

  • avformat/icecast : Free the right buffer on error

    10 novembre 2019, par Andreas Rheinhardt
    avformat/icecast : Free the right buffer on error
    

    In case an AVBPrint was not complete, icecast_open() would free some
    buffers that have not been allocated yet instead of freeing the data of
    the AVBPrint (if they have been allocated). Because this error does not
    trigger a jump to the general cleanup section any more, one can moreover
    remove a (now unnecessary) initialization of a pointer.

    Furthermore, finalizing an AVBPrint can fail (namely when the string
    inside the AVBPrint has not been allocated yet) and so this needs to be
    checked.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/icecast.c
  • avcodec/vp3 : free tables before allocating new ones

    3 juin 2014, par Michael Niedermayer
    avcodec/vp3 : free tables before allocating new ones
    

    Fixes memleak on seeking

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/vp3.c
  • Can I programmatically insert audio from a Webm file into another Webm file ?

    18 janvier 2016, par andy

    I have two WebM files, both have video and audio.

    I want to insert the audio from one WebM file into the other so that the final WebM file has two audio "streams" playing simultaneously with the video.

    Is it possible to achieve this programatically ? Preferably with Ruby, or if not with a command line interface, maybe ffmpeg ?