Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (42)

  • 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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (5806)

  • Revision c54801f86799721198e0c03943ef858c764e947a : le plugin ortho, seul cas derogatoire etant range au grenier, on se passe ...

    3 septembre 2010, par Cerdic — Log

    le plugin ortho, seul cas derogatoire etant range au grenier, on se passe de [16008] qui de plus ne fonctionnait que dans un cas particulier et pouvait provoquer des bugs. On elimine aussi le vieux hack fonde sur [ :... :] tout aussi derogatoire. git-svn-id : (...)

  • ffmpeg output file size grows faster than linearly with movie length

    14 janvier 2021, par Jakob Filser

    I'm using ffmpeg to string together some .bmp images into a movie. In total, there are 1001 frames, amounting to 0:40 length. The command I'm using is

    


    ffmpeg -f image2 -i render.%05d.bmp -c:v libx264 -s 512:268 render.mp4


    


    The output file is 33,2 MB large, which is about twice the size of a full HD (about 16 times the pixels !) video of the same length. Apart from the file size being unreasonably large, I realized it grows faster than linearly (can't tell exactly if it is quadratic, exponential etc.) with the number of frames. After 100 frames it is about 1536 KB large (which is already too large), after 500 frames it is already 15104 KB, and after 1001 it finally arrives at 34085 KB.

    


    My educated guess would be that for each frame it stores some information about all of the previous frames again, which makes absolutely no sense.

    


    What am I doing wrong ? Before you recommend libx265 to me : It turns the entire video green.

    


  • How can I make a slideshow of images into a video with each image having a specific length of frames to be shown ?

    24 novembre 2013, par jett

    Right now I am using something like this to create a video from a selection of images :

    avconv -i input%05d.png -r 24 -vsync cfr -c:v libx264 output.mp4

    But I want each picture to have a separate amount of time spent on it, so if I have 5 images I might want :

    [10frames, 40frames, 5frames, 80frames, 10frames]

    To be specified. The only thing I could find that may be a solution is to create five separate videos- set the length then merge them together, is this my only choice here ?