Recherche avancée

Médias (91)

Autres articles (75)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (10547)

  • FFmpeg-generated .m2v file shows strange video length

    15 août 2016, par John Doe 2

    I created a .m2v file using ffmpeg like this :

    ffmpeg -framerate 1/300 -s 720x576 -i img%3d.jpg -c:v mpeg2video -b:v 2000k -r 5 video.m2v

    This worked successfully, but if I right click on the .m2v file and go to details and scroll to video length I get this information which is really strange ( Using Windows 10) :

    Video

    Length: 256204778:48:05

    If I run the .m2v file with a program like PowerDVD the length of the video is 5 minutes long.

    Why does this happen ?

  • ffmpeg library does not work from path but directly

    19 juin 2020, par Ángel Barrios

    I want to add a watermark to a video.

    



    I'm trying with windows 10 and ffmpeg library

    



    The command I am using.

    



    ffmpeg -i example.mp4 -i watermark.png  -filter_complex "overlay=0-0+0:main_h-overlay_h-0+0" watermark.mp4


    



    When I use it this way accesing the path I get this error :

    



    enter image description here

    



    But when I execute it not from path but opening cmd right on the executable folder it works fine

    



    I did some research and couldn't find the answers I was looking for.

    



    Why does this happen ? I can´t understand really

    



    Thank you !

    


  • Sometimes normal conversion fails on Windows with error 1

    23 mai 2019, par Nuthinking

    I run ffmpeg.exe from node (spawn()) and sometimes (not random but depending on the day) it fails on Windows with error 1

    I use a very basic syntax :

    const outputPath = getTempFolder() + path.sep + 'video.mp4';
    const command = spawn(ffmpegPath, [
     '-i',
     getTempFolder() + path.sep + 'video.webm',
     '-y',
     outputPath
    ]);

    Any idea why this could happen and eventually how to debug it ? Thanks !