
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (35)
-
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (5550)
-
Encoder for FLV ffmpeg
13 mars 2014, par user2171669I need to grab desktop and write it to FLV video using ffmpeg. I need low CPU usage, but also need text to be recognizable.
Also I see, that many players (f.e. OSFLV) doesnt support H264 FLV.
1. Which codec should I choose ?
2. Which encoder should I use ?
See please (http://en.wikipedia.org/wiki/Flash_Video, 'Support for audio and video compression formats in Flash Player and in Flash Video' TABLE).
If I am wrong somewhere (I am newbie), forgive me please. Thanks in advance.
-
ffmpeg only shows one Image ?
8 juillet 2021, par m_so99Here are the images I have in my folder :


img001.png
img002.png



They are stored in
c:/frames
.

Because that my frames are not shown correctly, used the FPS filter video shown below (documentation from https://trac.ffmpeg.org/wiki/Slideshow) :


ffmpeg -r 1/5 -i img%03d.png -c:v libx264 -vf fps=25 -pix_fmt yuv420p out.mp4



I tried running on my VLC media player but it still doesn't work. It only shows one image.


-
How to convert High bitrate MP3 to lower rate using FFmpeg
28 mars 2024, par user4571931We want to convert 320kbps mp3 file to 128kbps mp3 so currently we are using below ffmpeg command but its not working.



ffmpeg -i input.mp3 -codec:a libmp3lame -qscale:a 5 output.mp3




Result :-the output bitrate same as input mp3.



And we are following the FFmpeg Encoding guideline for that here is the link :- https://trac.ffmpeg.org/wiki/Encode/MP3



so please suggest any solution.