
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (52)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)
Sur d’autres sites (4020)
-
"No accelerated colorspace conversion found from yuv420p to bgr24" when using OpenCV with FFMPEG on mac
31 octobre 2011, par Itay kWhen trying to acquire a frame from a video file (I've tried several video formats) I am getting an error message "No accelerated colorspace conversion found from yuv420p to bgr24".
The exact same code ran perfectly fine on a windows machine and I couldn't get it to run on a mac even after I recompiled and installed FFMPEG and OpenCV. I am using lion for my OS.
Any ideas ? -
Compile ffserver or where can I find a prebuilt ffserver for android
18 décembre 2016, par yeahmanI want to run ffserver on my android tv box. (arm processor)
Any idea how to compile ffserver for android tv box (I am on a windows machine) ? or is there a prebuilt ffserver for android ?I am already using a prebuilt ffmpeg for android which runs great.
-
Optimise FFmpeg command for less CPU utilisation
12 juin 2021, par kmrinmoy07I have a ffmpeg command which is used to modify the quality of an audio file. I have a php script which runs the commands in background but I have seen during simultaneous process by multiple users the command takes 100% of the CPU and the server gets down.
The command is


ffmpeg -i ‘input_file’ -vn -ab 54k -f mp3 pipe:1 | aws s3 cp - 's3://mybucket/output_file’



So can anyone give me a better optimised command or an another approach using PHP in my CentOS machine to modify audio quality with less CPU utilisation.