Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (34)

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

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (5745)

  • fate : adjust AAC encoder TNS test fuzziness

    29 août 2015, par Rostislav Pehlivanov
    fate : adjust AAC encoder TNS test fuzziness
    

    Tests fails on some ARM builds but it’s close enough so it’s okay.
    NEON, half-precision floats, rounding errors, who knows.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] tests/fate/aac.mak
  • flv live stream audio delay with ffmpeg refresh rate option

    15 janvier 2018, par albert200000

    I have problem with live http flv stream. I’m using the following command and it works great except for the audio. Audio has delay that increasing over time. I can fix the this by removing refresh rate option on the output (-r 30) but then stream latency goes higher for about half second.

    ffmpeg -f v4l2 -threads 0 -video_size 672X420 -i /dev/video1 -f alsa -thread_queue_size 512 -i hw:1,0 -c:a aac -ar 44100 -b:a 128k -c:v libx264 -s 672x420 -r 30 -g 60 -preset superfast -tune zerolatency -strict -2 -f flv rtmp://localhost/live/primary

    Can someone explain why this happening and what possible fixes are ?
    On the client I’m using Chrome with flv.js library.
    On the server Node-Media-Server.

  • Ffmpeg - How to force MJPEG output of whole frames ?

    27 août 2021, par Maoration

    I'm working with ffmpeg to process an incoming MPEGTS stream from remote cameras, and deliver it to multiple clients using my app.

    &#xA;&#xA;

    Technically, I'm using ffmpeg to convert the incoming stream to an MJPEG output, and piping the data chunks (from the ffmpeg process stdout) to a writeable stream on the client http response.

    &#xA;&#xA;

    However, I'm facing a problem- not all data chunks represent a full 'whole' frame. thus, displaying them in a row in the browser, results in a flickering video, with half-complete frames, on a random basis.&#xA;I know this because when printing each chunk length, results most of the time in a big value (X), but every now and then I get 2 consecutive chunks with length (2/5X) followed by (3/5X) for example.

    &#xA;&#xA;

    So the question - is there a way to force the ffmpeg process to output only whole frames ? if not, is there a way for me to check each data chunk 'manually' and look for headers/metadata/flags to indicate frame start/end ?

    &#xA;&#xA;


    &#xA;&#xA;

    my ffmpeg command for outputting MJPEG is :

    &#xA;&#xA;

    ffmpeg -i - -c:v mjpeg -f mjpeg -&#xA;

    &#xA;&#xA;

    explained :

    &#xA;&#xA;

    "-i -" : (input) is the stdin of the process (and not a static file)

    &#xA;&#xA;

    "-c:v mjpeg" : using the mjpeg codec

    &#xA;&#xA;

    "-f mjpeg" : output will be in the mjpeg format

    &#xA;&#xA;

    "-" : output not specified (file or url) - will be the process stdout

    &#xA;&#xA;


    &#xA;&#xA;

    Edit :&#xA;here are some console.log prints to visualize the problem :

    &#xA;&#xA;

    %%% FFMPEG Info %%%&#xA;frame=  832 fps= 39 q=24.8 q=29.0 size=   49399kB time=00:00:27.76 bitrate=14577.1kbits/s speed=1.29x    &#xA;data.length:  60376&#xA;data.length:  60411&#xA;data.length:  60465&#xA;data.length:  32768&#xA;data.length:  27688&#xA;data.length:  32768&#xA;data.length:  27689&#xA;data.length:  60495&#xA;data.length:  60510&#xA;data.length:  60457&#xA;data.length:  59811&#xA;data.length:  59953&#xA;data.length:  59889&#xA;data.length:  59856&#xA;data.length:  59936&#xA;data.length:  60049&#xA;data.length:  60091&#xA;data.length:  60012&#xA;%%% FFMPEG Info %%%&#xA;frame=  848 fps= 38 q=24.8 q=29.0 size=   50340kB time=00:00:28.29 bitrate=14574.4kbits/s speed=1.28x    &#xA;data.length:  60025&#xA;data.length:  60064&#xA;data.length:  60122&#xA;data.length:  60202&#xA;data.length:  60113&#xA;data.length:  60211&#xA;data.length:  60201&#xA;data.length:  60195&#xA;data.length:  60116&#xA;data.length:  60167&#xA;data.length:  60273&#xA;data.length:  60222&#xA;data.length:  60223&#xA;data.length:  60267&#xA;data.length:  60329&#xA;%%% FFMPEG Info %%%&#xA;frame=  863 fps= 38 q=24.8 q=29.0 size=   51221kB time=00:00:28.79 bitrate=14571.9kbits/s speed=1.27x  &#xA;

    &#xA;&#xA;

    As you can see, a whole frame is about 60k (my indication is a clean video stream i'm viewing on the browser), but every now and then the output consists of 2 consecutive chunks that add up to 60k. when delivered to the browser, these are 'half frames'.

    &#xA;