Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (50)

  • 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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

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

Sur d’autres sites (6871)

  • avformat/matroskaenc : check packet side data for AAC extradata updates

    13 avril 2017, par James Almer
    avformat/matroskaenc : check packet side data for AAC extradata updates
    

    This adapts and merges commit f4bf236338f6001736a4784b9c23de863057a583
    from libav, originally skipped in 13a211e6320d061d9e8c29354c81239324b2db03
    as it was not necessary back then.

    Is's applied now in preparation for the following patches, where the
    aac_adtstoasc bitstream filter will start to correctly propagate the new
    extradata through packet side data.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/matroskaenc.c
  • avformat/movenc : always check for new extradata on a packet

    10 avril 2017, par James Almer
    avformat/movenc : always check for new extradata on a packet
    

    Don't just look at zero sized packets, and also check for AAC extradata
    updates, in preparation for the following patches.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/movenc.c
  • FFmpeg filter for selecting video/audio streams

    23 juin 2017, par Leif Andersen

    I am trying to create a node (a collection of nodes is fine too), that takes in many streams and an index, and outputs one stream specified by the index. Basically, I want to create a mux node, something like :

    Node : Stream ... Number -> Stream

    FFmpeg’s filter graph API seems to have two filters for doing that : streamselect (for video) and astreamselect (for audio). And for the most part, they seem to do what I want :

    [in0][in1][in2]streamselect=inputs=3:map=1[out]

    This stream will take in three video streams, and output the second one in1.

    You can use a similar filter for audio streams :

    [in0][in1]astreamselect=inputs=2:map=0[out]

    Which will take in two streams and output the first one in0.

    The question is, can I create a filter that takes in a list of both audio and video streams and outputs the stream based only on the stream index ? So something like :

    [v0][v1][a0][a1][a2]avstreamselect=inputs=5:map=3[out]

    Which maps a1 to out ?

    If it helps I am using the libavfilter C API rather than the command line interface.