Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (51)

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

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (10853)

  • mov : Support fake moov boxes disguised as hoov

    8 août 2019, par Vittorio Giovara
    mov : Support fake moov boxes disguised as hoov
    

    Some broken apps generate files that have a fake box named 'hoov'
    instead of a proper 'moov' one. This is speculation but it seems like
    this box contains data to be modified later (eg as file grows in size,
    data gets re-written) and its name is supposed to be changed to 'moov'
    once it can be used as a 'moov', but for some reason this step is skipped.

    Since this is not the first time this happens ('moov' boxes can be found
    in 'free' ones) extend the existing hacks to search for the moov in such
    boxes and skip the moov_retry since it needs to be found right away.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/mov.c
  • Save screenshots taken with FFmpeg into Amazon S3 bucket

    30 mars 2021, par HomeAlone

    In my python app I take screenshots of videos. I save them locally and it works just fine but now I want to save them in an Amazon S3 bucket.

    &#xA;

    subprocess.run(["ffmpeg", "-ss", "00:00:30", "-i", src, "-map", "0:v", "-vframes", "1", "pipe:pic.jpeg | aws s3 cp - s3://mypublicbucket"])&#xA;

    &#xA;

    I get an Unable to find a suitable output format when running this command. What I try to do is to upload the picture straight into my public amazon bucket.

    &#xA;

  • ogg : relax demuxer conformance checks

    20 juin 2013, par Luca Barbato
    ogg : relax demuxer conformance checks
    

    Some samples in the wild are missing headers that are expected by the
    specification but in practice do not affect decoding.

    • [DBH] libavformat/oggdec.c