Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (66)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

Sur d’autres sites (10973)

  • How to create slideshow from images with ffmpeg ?

    7 novembre 2012, par Arsen Zahray

    I want to create a slideshow from images, where each image would be displayed for some period of time (several seconds).

    How do I do that ?

    Currently I was trying to encode short clips with ffmpeg and then stitch those together with mencoder :

           foreach (var item in filePattern)
           {
               var otpt = item.Key + ".mpg";
               Process.Start("ffmpeg",
                   string.Format("-y -r 25 -f image2 -vframes 75 -i {0} {1}", item.Value, otpt)//-loop 1
                   ).WaitForExit();
           }

    ffmpeg -y -r 25 -f image2 -vframes 75 -i input-pattern output does create a file with 1 frame in it, while ffmpeg -y -loop 1 -r 25 -f image2 -vframes 75 -i input-pattern output on windows never finishes (needs ctrl+c to stop) ; the second command worked on linux for me.

    I need to make this work primary on Windows. Which params should I use ?

  • Revision fe74c4286a : Rename quantize_sse2_intrinsics.c The only reason for the _intrinsics part of t

    24 avril 2013, par Johann

    Changed Paths :
     Add /vp8/encoder/x86/quantize_sse2.c
    (from /vp8/encoder/x86/quantize_sse2_intrinsics.c
    :f71e5246f214353fea1d14a1d10fcc38859db58d)
     Delete /vp8/encoder/x86/quantize_sse2_intrinsics.c


     Modify /vp8/vp8cx.mk



    Rename quantize_sse2_intrinsics.c

    The only reason for the _intrinsics part of the file name was for the
    interim period where only one of the functions was redone and the base
    file name was the same.

    Change-Id : I7851154f1633d48821bee885b1cadb2148e65a23

  • Fragmented MP4 file playback in web browser

    5 octobre 2013, par Steven Chang

    I want to build a MP4 streaming server.
    I generated MP4 file with ffmpeg as follow.

    $ffmpeg -i input.avi -movflags frag_keyframe output.mp4  

    It works normally in Google Chrome but IE9 and Safari just play a short period.
    (One keyframe duration)
    What is the proglem ?

    Thanks

    The HTML code is here :

     <video controls="controls">
       <source src="output.mp4" type="video/mp4"></source>
          The browser does not support HTML5
     </video>