Recherche avancée

Médias (91)

Autres articles (32)

  • 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 (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (6203)

  • compress keynote compatible movie with alpha channel

    26 janvier 2015, par John Smith

    I am creating a movie with alpha channel by converting png-images with imagemagicks convert and then compiling the movie with ffmpeg :

    ffmpeg -i image%04d_t.png -vcodec png -q:v 1 -compression_level 100 transparent.mov

    I can import those movies into the latest (6.5.2) Apple Keynote, but they tend to be very large (560 frames of size 615x189, no sound, 22 sec. = 113 MB). Is there a way to convert the movie to a different format (that is also Keynote compatible) that uses less disk space ?

    A second option would be to use a lower framerate for the same length (=using less frames) - would that save on file size and if so, what command would I use for that ?

  • FFmpeg exit with error code 1 when using .bat file

    30 avril 2022, par Taqi Vaheed

    I use a .bat file to batch attach audio tracks to movies. Everything was good but in last days the ffmpeg stopped working correctly. When I restart the pc it work again but after some task the error come back. I tried to reinstall the windows but the problem does not solved.

    


    here is my ffmpeg code :

    


    for %%a in ("*.mp4*") do ffmpeg -y -i "%%a"^
 -itsoffset 0^
 -i %%~na.mp3 -i cover.jpg^
 -map 2 -map 0:v:0 -disposition:0 attached_pic^
 -map 1:a:0 -disposition:a:0 default^
 -map 0:a:0 -disposition:a:1 none -sn^
 -metadata title=""^
 -metadata:s:a:0 handler_name="Persian"^
 -metadata:s:a:1 handler_name="English"^
 -metadata:s:v:0 handler_name="English"^
 -metadata:s:a:0 language=per^
 -metadata:s:a:1 language=eng^
 -c copy "Final\%%~na.mp4"


    


  • ffmpeg - on end function probably not working correctly ?

    19 janvier 2020, par Jul Pod

    got this code to loop through some .mp4 files and create a screenshot of them :

    files.forEach(file => {
       console.log(file);
       if(!fs.existsSync('img/' + file.replace('.mp4', '.png'))) {

           ffmpeg({ source: 'movies/' + file})
           .takeScreenshots({ timemarks: [ '50' ], size: '150x100' }, 'img/', function(err, filenames) {
           })
           .on('end', function() {      
             fs.rename('img/tn.png', 'img/' + file.replace('.mp4', '.png'), function(err) {if (err) console.log('Error: ' + err) });
             sleep(1000);  
         })  
         }    
    });

    Now i got the problem that it seems like that .on(end) is sometimes not working, Error :
    ENOENT : no such file or directory, rename

    i think it´s because the process of saving the tn.png is slower than the renaming...