Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (58)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • mpv / ffplay strungling with —lavfi-complex and -vf

    26 novembre 2017, par Marcuzzz

    This is what I’m trying to accomplish in mpv.
    https://user-images.githubusercontent.com/7437046/33134083-130c2cc0-cf9f-11e7-8f8d-237297dc9c93.png

    It currently works with ffplay.
    The code for it looks like this :

    LAVFI = ("movie='$MOVIE':streams=dv+da [video][audio]; " +
       "[video]scale=512:-1, split=3[video1][video2][video3];" +
       "[audio]asplit=[audio1][audio2]; " +
       "[video1]format=nv12,waveform=graticule=green:mode=column:display=overlay:" +
       "mirror=1:components=7:envelope=instant:intensity=0.2, " +
       "scale=w=512:h=512:flags=neighbor, " +
       "pad=w=812:h=812:color=gray [scopeout]; " +
       "[video2]scale=512:-1:flags=neighbor[monitorout]; " +
       "[audio1]ebur128=video=1:meter=18:framelog=verbose:peak=true[ebur128out][out1]; " +
       "[ebur128out]scale=300:300:flags=fast_bilinear[ebur128scaledout]; " +
       "[scopeout][ebur128scaledout]overlay=x=512:eval=init[videoandebu]; " +
       "[audio2]avectorscope=s=301x301:r=10:zoom=5, " +
       "drawgrid=x=149:y=149:t=2:color=green [vector]; " +
       "[videoandebu][monitorout]overlay=y=512:eval=init[comp3]; " +
       "[comp3][vector]overlay=x=512:y=300:eval=init, " +
       "setdar=1/1, setsar=1/1, " +
       "drawtext=fontfile='$FONT':timecode='$TIMECODE':" +
       "r=$FPS:x=726:y=0:fontcolor=white[comp]; " +
       "[video3]format=nv12,vectorscope=mode=color3, " +
       "scale=1:1[vectorout]; "+
       "[comp][vectorout]overlay=x=512:y=600:eval=init[out0]")  

    I found it on Github :
    https://github.com/Warblefly/FFmpeg-Scope

    After experimenting a lot. I a came to understand it a bit...
    This code works with python and mpv.

    LAVFI = "[aid1]asplit=3[audio1][audio2][audio3];" + \
       "[audio1]avectorscope=s=640x640[audioscope];" +  \
       "[audio2]ebur128=video=1:meter=18[ebu][ao];" + \
       "[audio3]showvolume[showv];" + \
       "[vid1]scale=640:-1, split=4[video1][video2][video3][video4];" + \
       "[video1]format=nv12[comp];" + \
       "[video2]hflip[comp2];" + \
       "[video3]format=nv12,[comp3]; " + \
       "[comp][audioscope]overlay=y=-160[a];" + \
       "[comp2][ebu]overlay[b];" + \
       "[comp3][showv]overlay[c];" + \
       "[video4][a]hstack=inputs=2[top]; " + \
       "[b][c]hstack=inputs=2[bottom]; " + \
       "[top][bottom]vstack=inputs=2[vo]"  

    dos_command = [MPV + 'mpv','--lavfi-complex',LAVFI,filename_raw]
    subprocess.check_output(dos_command)

    But if I change [video3]format=nv12,[comp3] to [video3]waveform[comp3] or
    [video3]vectorscope[comp3] it doesn’t work. If I change it to
    [video3]negate[comp3] it works...

    So to explain the above code a bit :
    First we split the the incoming audio 3 times.
    Then we pass it to 3 measuring outputs... avectorscope, ebur128, showvolume.
    I don’t understand ebur128=.....[ebu][ao] the "[ao]" bit...
    Then we focus on the video, we split it 4 times.
    I use "format", I don’t know exactly why...
    Then we start overlay and stacking the "labels".

  • avcodec/libjxldec : use internal AVFrame as buffered space

    10 juillet 2023, par Leo Izen
    avcodec/libjxldec : use internal AVFrame as buffered space
    

    Before this commit, the decoder erroneously assumes that the AVFrame
    passed to the receive_frame is the same one each time. Now it keeps an
    internal AVFrame to write into, and copies it over when it's done.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] libavcodec/libjxldec.c
  • asfdec : alloc enough space for storing name in asf_read_metadata_obj

    2 septembre 2015, par Alexandra Hájková
    asfdec : alloc enough space for storing name in asf_read_metadata_obj
    

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavformat/asfdec.c