Recherche avancée

Médias (91)

Autres articles (10)

  • 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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (4133)

  • how can I restream multiple youtube videos with youtube-dl and ffmpeg

    30 octobre 2020, par mahox

    with this command :

    


    


    ffmpeg -re -i youtube-dl -g -f 18 XxXxX -i youtube-dl -g -f 18 XyXyX -c copy -f flv rtmp ://stream.XyXyX.com/live/mychannel

    


    


    streams the first video, stops the second :

    


    


    flv @ 0x557580f682c0] Failed to update header with correct duration.
flv @ 0x557580f682c0] Failed to update header with correct filesize.

    


    


  • Limit the cpu usage when converting youtube videos to mp3 using youtube-dl

    30 novembre 2015, par Kamal

    I am using youtube-dl & avconv with php on nginx server to convert youtube video into mp3. Using htop I noticed the usage of cpus peak at 100% when couple of avconv processes are running at the same time, and once my server crushed down because of that.

    The first solution that I encountered cpulimit but after some research,I’ve found cpu limit is not smart enough to handle multiple simultaneous instances.

    From this answer I learned that I can limit the number of cpu threads using -threads option.
    My basic command : youtube-dl --extract-audio --audio-format mp3 <video url="url"></video>

    I wonder if I can add -threads option to the youtube-dl command, I am not sure if that is possible.

    I have 2 cores cpu server, I am thinking of upgrading to 4 cores cpu and limit the avconv to use just 2 cores, what do you think ? Is that the best way to go (using thread option) ?

  • ffmpeg libx264 settings to keep exact colors

    21 juin 2017, par vinni

    does anyone have an idea how I need to edit these ffmpeg settings to keep the original colors ? I’m trying to convert a video, but need to absolutely keep the rgb colors, as it’s going to be embedded into a website with a background color.

    The parameters look currently like this :

    '-acodec aac -ac 2 -ab 160k  '
    '-vcodec libx264 -preset slow -profile:v baseline -level 25 '
    '-maxrate 10000000 -bufsize 10000000 -vb 1200k -f mp4 '
    '-threads 0'

    Thanks !