Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (108)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (16774)

  • fftools/ffmpeg_opt : Fix mixed declarations and code

    6 novembre 2019, par Andreas Rheinhardt
    fftools/ffmpeg_opt : Fix mixed declarations and code
    

    Introduced in ed3c317d.

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

    • [DH] fftools/ffmpeg_opt.c
  • doc/examples/decode_audio : Fix "warning : ISO C90 forbids mixed declarations and code"

    28 août 2019, par Michael Niedermayer
    doc/examples/decode_audio : Fix "warning : ISO C90 forbids mixed declarations and code"
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/examples/decode_audio.c
  • FFMPEG : Concatenating mixed format inputs - copy if possible, transcode if not ?

    8 juin 2017, par roberb04

    My input files are in a mixture of formats - predominantly DNxHD and AVC-I MXF.

    I need to normalize these to AVC-I and I will often need to concatenate sections from non-AVC-I files with sections from AVC-I content in the process.

    I have achieved this goal already but it appears to me that whereas the sections whose source is already in AVC-I format could simply be copied through to the output file (and not decoded/retranscoded leading to potential picture quality degradation), they are in fact transcoded. I could be wrong about that.

    Is it possible for FFMPEG to "pass-through" frames from AVC-I inputs whilst transcoding frames from DNxHD inputs when concatenating both into a single AVC-I output file ? If so, how can I achieve that please ?

    Many thanks !