Recherche avancée

Médias (91)

Autres articles (51)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

  • use ffmpeg to create mp4 from avcc example

    20 juillet 2014, par user2517182

    How can I use ffmpeg to create an .mp4 from the avcc bitstream example from this post ?

    According the post, using the annexb bitstream ;

    This is a complete h.264 stream. if you type these values into a hex
    editor and save the file with a .264 extension, you will be able to
    convert it to an image.

    I was able to do this.

    However, when it comes to the avcc bitstream, the post states,

    You will notice SPS and PPS is now stored out of band. That is,
    separate from the elementary stream data. Storing and transmission
    this data is the job of the file container, and beyond the scope of
    this document.

    Is there a way to tell ffmpeg to store and transmit the sps and pps data to the file container ? If so how ?

  • Merge commit ’95a41311ac3a44773cc4dc407408aca35b1f8e26’

    16 septembre 2015, par Hendrik Leppkes
    Merge commit ’95a41311ac3a44773cc4dc407408aca35b1f8e26’
    

    * commit ’95a41311ac3a44773cc4dc407408aca35b1f8e26’ :
    jpeg2000 : Factor out band stepsize initialization

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] libavcodec/jpeg2000.c
  • hevc/sao : use aligned copies

    1er février 2015, par Christophe Gisquet
    hevc/sao : use aligned copies
    

    For band filter, source and destination are aligned (except for 16x16 ctbs),
    and otherwise, they are most often aligned. Overall, the total width is also
    too small for amortizing memcpy.

    Timings (using an intrinsic version of edge filters) :
    B/32 B/64 E/32 E/64
    Before : 32045 93952 38925 126896
    After : 26772 83803 33942 117182

    • [DH] libavcodec/hevc_filter.c