Recherche avancée

Médias (91)

Autres articles (50)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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 vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

Sur d’autres sites (5379)

  • avconv : convert sequence of randomly-named images to video

    22 avril 2015, par eudoxos

    I have files named like alice.png, bob.png, charlie.png (there are hundreds of them) and I would like to make video from those. What I try is

    avconv -i alice.png -i bob.png -i charlie.png -r 25 -b:v 12M -y out.mp4

    but I am only getting the first image blipping in the movie, the rest is ignored.

    There is buch of tutorials how to use -i %03d.png and similar wildcards, but is there a way to do without them, passing those files on the command line ? mencoder had the option mf://alice.png,bob.png,charlie.png so I am looking for something similar.

    Writing filenames to an external file would be OK as well.

  • Revision ce3a8a6e37 : Migrating SPLITMV_4X4 decoding into decode_atom Separate the decoding process o

    30 avril 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/decoder/vp9_decodframe.c


     Modify /vp9/encoder/vp9_encodeframe.c



    Migrating SPLITMV_4X4 decoding into decode_atom

    Separate the decoding process of 4x4 block based coding (both intra
    and inter) from decode_mb and move it into decode_atom_. This allows
    to further move the rest per 16x16 block decoding of decode_mb into
    decode_sb, and hence eventually deprecating decode_mb when SB8X8 is
    enabled.

    Change-Id : I678cb8007d8a57b792d7a23020edb0c74fbf4237

  • How to set 2 audios one video and 2 subtitles using ffmpeg

    13 avril 2018, par John Goodale

    I have a problem I’m trying to wright a command line for ffmpeg to do this

    ffmpeg -i input.mkv -map v:0 -metadata title="The Main Title" -metadata:s:v:0 title="This is the Title for the Menu one" -metadata:s:v:0 language="eng" -map a:2 -metadata:s:2:a title="First Audio Selection" -metadata language="eng" -map a:3 -metadata:s:3:a title="Secound Audio Selection" -metadata:s:3:a language="eng" -map a:5 metadata:s:5:s title="The only SubTitle" -metadata:s:5:s lanuage="eng" -c copy output.mkv

    The format might be different i have fond where the video is 0:0 to v:0 to 0:v same with the rest. Thanks for all your help.