Recherche avancée

Médias (91)

Autres articles (45)

  • 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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

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

  • Revision 9016fa22e0 : Removed unnecessary VP8_COMP *cpi parameters Code cleanup Change-Id : I82f9d787

    2 novembre 2012, par Scott LaVarnway

    Changed Paths : Modify /vp8/encoder/encodeframe.c Modify /vp8/encoder/ethreading.c Modify /vp8/encoder/pickinter.c Modify /vp8/encoder/pickinter.h Modify /vp8/encoder/rdopt.c Modify /vp8/encoder/rdopt.h Removed unnecessary VP8_COMP *cpi parameters Code cleanup Change-Id : (...)

  • Generate 3gp video file using my image library

    6 novembre 2012, par Turgay Gençer

    I need to generate 3gp video file using images.

    Fore example, I have 3 pictures and I want to put slide time for each pictures and generate 3gp.

    1. Picture = 2 second,
    2. Picture = 3 second,
    3. Picture = 5 second,

    and my 3gp is include 3 pictures.

    İs that the possible to generate 3gp using my pictures library ?

    I m writing in C# .

    Thanks.

  • ffmpeg with a set of image files not formatted as %d.jpg

    12 juin 2012, par Rob Lourens

    I'm using ffmpeg to compile a set of jpgs into a video. There is plenty written about this, but it seems that the only way to do it is to have images named as consecutive padded numbers, e.g. 0001.jpg, 0002.jpg...

    The ffmpeg documentation states that it is possible to use other types of patterns, such as %*.jpg to capture all *.jpg files, but the only pattern that I have gotten to work on my own is the %0Nd-type pattern. The man page only mentions that type.

    I really want to have ffmpeg use a set of images with arbitrary names. It would simplify my app quite a lot, make it easier to keep thumbnails and metadata in sync as images are inserted and deleted, etc. Creating links is not an option since I'm working on Android. Is there any way to do this ?

    I'm also willing to modify the ffmpeg source or work with the C api to get it to do what I want, but I can't find the right spot in the code to do it, or appropriate docs for the C api. Any advice ? Thanks.