Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (76)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9011)

  • How to get the exact macroblock bit sizes from H.264 (CABAC) bitstream

    15 juillet 2013, par Bhaskar Dey

    I am interested to get the exact size of a macroblock (MB) in bits form H.264 bitstream (CABAC entropy coded). I would like to verify this against the MB sizes available form commercial bitstream analyzers (like Codecvisa etc). I had a look at the FFmpeg source files cabac.h, h264_cabac.c and h.264.c.

    In function ff_h264_decode_mb_cabac(H264Context *h) of h264_cabac.c, I computed the MB sizes using CABAC bytestream pointer as :

    int ff_h264_decode_mb_cabac(H264Context *h) {

       int b=(int)h->cabac.bytestream;

       // function body of ff_h264_decode_mb_cabac() unmodified

       b=(int)h->cabac.bytestream-b;
       //print value of (b<<3), i.e., MB bit size(b is the difference in bytes);

    }

    This gives the value of MB size in bits but accurate within 16 of the actual bit size found using H.264 analyzers. I also printed the contents of h->cabac.bytestream (in binary) at the start and at the end of the function call but couldn't locate the exact MB-boundary bit positions(see following table for an example). Any hint would be of immense help.

    Frame No  MB index(type)        start(hex)               end(hex)                 b<<3  Exact size(analyzer)
    ....
    Frame 2,  742(P_L0_16x16),      1110011110100001 (e7a1), 0000001110010110 (0396),   80    78
    Frame 2,  743(P_8x8),           0000001110010110 (0396), 0000101101000101 (0b45),  400   400
    Frame 2,  744(P_L0_L0_16x8),    0000101101000101 (0b45), 0110011001011011 (665b),  336   325
    Frame 2,  745(P_L0_L0_16x8),    0110011001011011 (665b), 1010001010010000 (a290),  272   284
    Frame 2,  746(P_8x8),           1010001010010000 (a290), 0010010000111101 (243d),  464   463
    ....
  • calling to ffmpeg executable that the user has installed himself

    2 octobre 2018, par user1422101

    I want to convert an uncompressed .avi to .mp4 from my commercial application.

    What i want to do is this :

    1. show instructions to the user to download and install ffmpeg to a specific location
    2. create and use ffmpeg.exe to compress my .avi to .mp4

    Am i allowed (license wise) to do this ?

    Note :
    I checked https://www.ffmpeg.org/legal.html, but it doesn’t cover this.

  • Alternatives to FFmpeg under BSD

    11 octobre 2017, par Programist

    Is there a commercial version of FFmpeg ? My company lawyers don’t like LGPL licensing on FFmpeg due to its gray area of licensing.

    Or is there BSD version of FFmpeg available or a close alternative to it ?

    I am required to use something that is commercial or BSD licensed.

    What is the closest alternative to FFmpeg with BSD licensing ?