Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (63)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (8540)

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