Recherche avancée

Médias (91)

Autres articles (95)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

  • ffplay : fix silence insertion on error or pause

    3 avril 2016, par Marton Balint
    ffplay : fix silence insertion on error or pause
    

    Insertion of silence was a bit broken since
    df34b700981de606ca4847e1ed0bfdf9ac3e9104 because the info whether or not the
    source buffer supposed to be silence must be kept between callbacks. Failing to
    do so causes rogue samples from the last buffer to be presented, I guess even a
    crash can occur under some circumstances.

    This patch uses a NULL audio_buf to keep the silence state across audio
    callbacks.

    Reviewed-by : Lukasz Marek <lukasz.m.luki2 at gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] ffplay.c
  • ffmpeg : overlay video on top of a cropped video, map the overlay audio, cut the base video to the overlays length

    14 mars 2023, par roku

    I'm trying to overlay a video on top of a base video which is cropped to a shorts video format (standing phone). The overlayed video should be centered on top of the base layer. The base video's length should be reduced to the overlay's length. And I want to save only the overlay's audio.

    &#xA;

    I've tried a bunch of stuff without much success. The current state of my ffmpeg command is this :

    &#xA;

    ffmpeg -i overlay.mp4 -ss 00:00:00 -to <insert base="base"> -i base.mp4 -map 1:v:0 -map 1:a -vf "crop=ih*(9/16):ih" -crf 21 output.mp4&#xA;</insert>

    &#xA;

    But this only gives me the cropped version of the base video. So my questions are :

    &#xA;

      &#xA;
    1. How can I figure out the base video's length ?
    2. &#xA;

    3. How can I actually overlay (not map) other video on top of the base video ?
    4. &#xA;

    5. How can I map the overlay's audio ? Since -map 1:a the base's audio and -map 0:a says : "Stream map '0:a' matches no streams. To ignore this, add a trailing ' ?' to the map."
    6. &#xA;

    &#xA;

    Any help is appreciated.

    &#xA;

  • avcodec/avcodec : Don't free options on failure in avcodec_open2()

    12 mai 2021, par Andreas Rheinhardt
    avcodec/avcodec : Don't free options on failure in avcodec_open2()
    

    Instead return the dictionary in the state it is at the time the error
    occurred. This is more in line with the description of this parameter
    and allows to notify the user of unrecognized options if an error
    happens lateron (which might very well be due to e.g. misspelled
    options).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/avcodec.c