Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (52)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang 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 2011

    MediaSPIP 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, par

    Pour 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 k

    When 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 yeahman

    I 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 kmrinmoy07

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