
Recherche avancée
Autres articles (58)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12620)
-
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.


-
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.


-
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.