
Recherche avancée
Autres articles (111)
-
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. -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Support de tous types de médias
10 avril 2011Contrairement à 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 (5978)
-
What is the difference between yuv420p and yuv420p(tv) ?
9 novembre 2018, par Aleksandr ShemetilloI am trying to implement Fairplay ready browser player (Apple’s DRM).
A stream that has h264(Main) yuv420p(tv) settings becomes non-working after drm decryption (crashed picture of green color). Converting again the video with a "Main" ffmpeg profile changes the setting to a simple yuv420 and this solves the problem.
Please explain the difference.
Or maybe some other changes I don’t see can happen during the conversion ?Of course, since we are talking about Fairplay, the problem is observed in Safari on Os X
-
Join images and audio to result video
15 octobre 2017, par Arthur AlvesI have a lot of images with different sizes (i.e. 1024x768 and 900x942) and an audio file (audio.mp3) of 30 seconds and I need to create a video from them.
I’m trying it now with : result%d.png (1 to 4) and audio.mp3
ffmpeg -y -i result%d.png -i audio.mp3 -r 30 -b 2500k -vframes 900
-acodec libvo_aacenc -ab 160k video.mp4The video video.mp4 has 30 seconds but the 3 first images is showed very quickly when the last image remains until the end of the audio.
Each image needs to be showed in a equal time until the end of the audio. Anyone knows how to do it ?
The number of the images will vary sometimes.
-
Is there a FFMPEG C# Wrapper with multiple filters ?
7 juin 2021, par AfricanMambaDoes anyone happen to know if FFMPEG or any other sources has a wrapper that I can use in C#/.NET to run certain filters ? Filters that I am trying to run on different audio files in my program include silenceremove, silencedetect, volumedetect, and etc. I want to avoid using just the .exe file that I already have when implementing this in my program.


I have looked through several forums and online resources and found one called MediaTookKit, but it lacks the filters that I am attempting to use. If anyone knows of one that already exists or can provide me with steps to make my own wrapper using certain FFMPEG filters, it would greatly help.