Recherche avancée

Médias (91)

Autres articles (41)

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

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

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

  • Delay streaming gopro Android with ffmpeg

    19 octobre 2017, par Marco Bernardi

    i’m stream the gopro on my android device with ffmpeg library.
    I can see the stream correctly but i have 3 seconds of delay.
    Can i remove this ?

  • vaapi_h264 : Fix CPB/DPB delays

    9 septembre 2017, par Mark Thompson
    vaapi_h264 : Fix CPB/DPB delays
    

    This should be ticks, not time_scale steps - it was wrong for all
    framerates not a multiple of 1/2.

    (cherry picked from commit 30645174e333c7db1946ab09be769db9be9d7481)

    • [DH] libavcodec/vaapi_encode_h264.c
  • Merge two videos by ffmpeg hstack and add delay for second video

    16 octobre 2017, par venkat

    having two videos and two audio files

    1. starting at 00:00:03 and duration 145 seconds
    2. starting at 00:00:09 and duration 140 seconds

    want to merge two videos side by side and add delay for second video by 6 seconds, for the 6 seconds need to show black color or some empty frame and merge audio files respectively with delay.

    using the following command to merge two videos

    ffmpeg -i first.mkv -i second.mkv -filter_complex "
    [0:v]scale=320:240,pad=325:240,setsar=1[l];[1:v]scale=320:240,setsar=1[r];
    [l][r]hstack" -c:v libx264 -preset ultrafast -crf 0 merged.mp4

    as far now i didn’t use audio in merging.

    any suggestions or help ?