Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (55)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • x264 : Optimal settings to have i-frames coincide with shot boundaries ?

    16 juin 2020, par kindoflike

    I would like to encode a video using x264 in such a way, that the keyframes (a.k.a. i-frames) are coinciding with shot boundaries (a.k.a. cuts).

    



    for testing, I used the following encoder settings (reference : http://www.chaneru.com/Roku/HLS/X264_Settings.htm) :

    



    keyint=500:min-keyint=10:scenecut:40


    



    but from the looks of it scene changes are ignored entirely, and keyframes simply inserted every 500 frames.

    



    enter image description here

    



    scenecut:40 being the default value, is my result expected behavior ? or is it an indication, that something is not quite right ?

    



    thanks a lot in advance

    




    



    edit :

    



    the complete encoder settings look like this (in handbrake) :

    



    enter image description here

    




    



    TL ;DR :

    



    it was a typo :|

    


  • avcodec/pngenc : Avoid copying APNG data, allow user-supplied buffer

    25 avril 2021, par Andreas Rheinhardt
    avcodec/pngenc : Avoid copying APNG data, allow user-supplied buffer
    

    The APNG encoder already uses internal buffers, so that the packet size
    is already known before allocating the packet ; therefore one can avoid
    another (implicit) intermediate buffer by switching to
    ff_get_encode_buffer(), thereby also supporting user-supplied buffers.

    Reviewed-by : James Almer <jamrial@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/pngenc.c
  • Node Webkit-Designing Media Player support all media codec(format)

    14 décembre 2015, par Vish

    I am working on product which classify any kind of media into movies, tv shows, videos, audio and images. Node webkit with angularjs and node is its base. Now I am trying to bring local playback, which enabled this classified media to play inside this desktop app. Have done lot of research, following are feasible solution to me :

    1. Getting ffmpegsumo.dll with all codec support, hence html <audio></audio> and <video></video> able to play all this videos.
    2. All unsupported video or audio to be converted into supporting codec format and steam it to <audio></audio> and <video></video> tag.
    3. Use some third party plugin to support like WebCherima .

    Option 1 and 2 are not looking feasible to me. For option 1, we have compile Chromium 41.0.2272.76 or nw.js v0.12.3 to update ffmpegsumo.dll with more codec. On other side Option 2 looking difficult to get good performance. I have learn few limitation of third party plugins.
    Please provide some insight ? Thanks !