Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (35)

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

  • avformat/utils : Stream specifier enhancement 2.

    13 avril 2018, par Bela Bodecs
    avformat/utils : Stream specifier enhancement 2.
    

    In some cases, mainly working with multiprogram mpeg-ts containers as
    input, it would be handy to select sub stream of a specific program by
    their metadata.
    This patch makes it possible to narrow the stream selection among
    streams of the specified program by stream metadata.

    Examples :
    p:601:m:language:hun will select all sub streams of program with id 601
    where sub streams have metadata key named 'language' with value 'hun'.
    p:602:m:guide will select all sub streams of program with id 602 where
    sub streams have metadata key named 'guide'.

    Signed-off-by : Bela Bodecs <bodecsb@vivanet.hu>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/fftools-common-opts.texi
    • [DH] libavformat/utils.c
  • FFMPEG & Centos7 Script

    5 octobre 2017, par Tony

    Looking to install FFMPEG on Centos7 - there appears to be an official compilation guide here.

    BUT I find it hard to belive that someone hasn’t already done all the work to make this into a nice install script ? :) ?

    If not I’ll proceed and make one but rather not if I don’t have too.

  • How to discover framebuffer format on android ?

    18 mars 2013, par Guilherme Torres Castro

    i'm capturing framebuffer on my android device, but each device has a different frame buffer pixel format. How can i get the this format for each device ?

    I found i can get the bbp and screen resoution using :

    ioctl -rl 28 /dev/graphics/fb0 17920

    This command return :

    return buf : f0 00 00 00 40 01 00 00 f0 00 00 00 80 02 00 00 00 00 00 00 00 00 00 00 20 00 00 00

    In little-endian format i have :

    • The last four bytes (20) is the number of bbp 32.
    • The first four bytes is the screen width 0xF0 = 240
    • Bytes 5 to 8 is the screen height 0x0140 = 320

    I tried to decode the fb (Galaxy 5) using the folowing command :

    ./ffmpeg -vframes 1 -vcodec rawvideo -f rawvideo -pix_fmt rgb32 -s 240x320 -i fb0 -f image2 -vcodec png image%d.png

    And i got this warning :

    Invalid buffer size, packet size 40960 < expected length 307200 Error
    while decoding stream #0:0 : Invalid argument

    and this two images :

    enter image description here
    enter image description here

    I think what's is wrong is the pix_fmt param.