Recherche avancée

Médias (91)

Autres articles (38)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

Sur d’autres sites (6009)

  • Changelog : add entry on wtvdec performance improvement

    1er février 2016, par Timothy Gu
    Changelog : add entry on wtvdec performance improvement
    
    • [DH] Changelog
  • How to create a video file with zoom effect using ffmpeg

    10 mars 2016, par dasarath sahoo

    I am trying to create a video file with zooming effect using ffmpeg and image should be in center and zooming should be start for a particular time

    Here is the code I am using :

    $ ffmpeg -loop 1 -i India-gate.jpg -vf "zoompan=z='zoom+0.001':x='if(gte(zoom,1.5),x+1)'" -c:v libx264 -t 5 -s "1024x960" zoomout.mp4

    this command working fine, but it creates zooming effect for 3seconds while video length is 5second and after 3second zooming going to repeat once again.

  • How to create Ken Burns effect using FFMPEG on Windows

    22 mars 2016, par B A

    I need to create slideshow videos from a bunch of images and apply ken burns and other transition effects to them as well if possible.
    I found some tools for Linux like http://imagemovie.sourceforge.net/ and http://diascope.sourceforge.net/ that allowed creating ken burns effect from the command line but couldn’t find any for Windows. Does anyone know of any technique to do this ?

    Right now i am using an FFMPEG code but it only produces a zooming in effect from the top left corner of the video. I need a ken burns(pan and zoom effect) from the command line, how can i do that ?