Recherche avancée

Médias (91)

Autres articles (49)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (5608)

  • Is there a way to replace switch out elements in after affects and output a video ? [closed]

    29 décembre 2020, par Muhammad Umer

    Is there a way to create a nice small executable for effect where you can provide it some images/text which it'd switch out in after effect template via command line.

    


      

    1. basically i want to create an effect (i.e. logo animation)
    2. 


    3. programmatically update text of logo in the executable
    4. 


    5. output a video
    6. 


    


    the smaller the executable and lighter, the better.

    


  • which video format is bessed for flat graphical animations

    26 avril 2020, par Zarc Rowden

    If i were to create an mp4 out of an svg animation, much of the color data in the output is the same, in PNG compression you can significantly reduce file size by reducing color. What I love about PNG is that the images always have a beautiful flat color / consistent look to them as opposed to jpegs which look very messy after antialiasing etc. (in the case of graphics to clarify). My feeling about .mp4 is that the compression technique results in frames that look "messy" like jpegs do when representing flat graphics or text. Is there a better codec out there ? Is this what webm does well ?
Thanks in advance for the input !

    


  • saveVideo only printing out the first image in a video

    21 octobre 2017, par Dom Burns

    I’m trying to make a video of plots that are output from a loop using saveVideo. However, at the moment the output video only gives the first image for the number of times that the loop runs (40 seconds in my example code). Probably something really obvious, but does anyone know how to fix this ?
    Example code :

    create_photos <- function(){
     for (i in 1:40){
       plot(c(0, 1), c(0, 1), ann = F, bty = 'n', type = 'n', xaxt = 'n', yaxt = 'n')
       text(x = 0.5, y = 0.5, paste(i))
     }
    }
    saveVideo(create_photos(), video.name = 'animation.mp4')