
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (53)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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. -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)
Sur d’autres sites (4422)
-
Create a subtitle mpd file with MP4box
13 juillet 2020, par 123abcI'm creating a mpd file for a video player and for now I have everything to cover the video, audio and language settings but I'm struggling with the subtitles.


Here's the command I used for audio and video :


mp4box -dash 10000 -profile dashavc:264:onDemand -rap video/audio.mp4#audio/video



-
FFMpeg Batch Image + Multiple Audio to video
23 juillet 2020, par PecoIm trying to do the following with FFMpeg I want to create multiple videos with one image and different audio files (music albums). These are my own albums so I have rights to do so before you ask. I have 100's of audio files to stick up on youtube.



Is there a way I can create this in batch so i can just load one image (album cover) and multiple audio files (the album tracks) and get videos to the tracks length automatically ?



Appreciate any help


-
Crop multiple images in Flutter
31 juillet 2020, par asoredI have multiple images in different resolutions in a folder. With ffmpeg I create a video from all of these.


My code


await _flutterFFmpeg.execute('-framerate 1 -pattern_type glob -i "$tempPath/*.jpg" $tempPath/$videoFileName.mov')



What I get is a video from all of my images. This works well. But : Many of my images are skewed. So I think I need to crop them. Or is there a function like CSS
background-size: cover
?

Or can I crop images with Dart before creating the video with
ffmpeg
?

Thanks for your helo !