Recherche avancée

Médias (0)

Mot : - Tags -/publication

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (103)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (6730)

  • Cannot connect to the Docker daemon at unix :///var/run/docker.sock. Is the docker daemon running ? MacOS X El Capitian

    22 juillet 2020, par Dinar Abdul Hollik

    when I run the command in my terminal

    


    docker pull alfg/nginx-rtmp


    


    When it has been run, an error occurs like this

    


    Using default tag: latest
Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running?


    


    how to fix ?

    


  • ffmpeg and ffprobe file installation suggestion

    4 juillet 2020, par Mithun Deshmukh

    Where to run below code in WHM terminal or need to update in config.php ?

    


        $ffmpeg_lib="/usr/bin/";
    $ffprobe_lib="/usr/bin/";
    $ffmpeg = FFMpeg\FFMpeg::create(array(
   'ffmpeg.binaries' => $ffmpeg_lib.'ffmpeg',
   'ffprobe.binaries' => $ffprobe_lib.'ffprobe',
   'timeout' => 3600, // The timeout for the underlying process
   'ffmpeg.threads' => 12, // The number of threads that FFMpeg should use
), null);


    


    thanks

    


  • how to use cgroups in php exec

    13 juillet 2020, par Skora

    I'm trying to use cgroups in php

    


    And I did the following :

    


    sudo cgcreate -g cpu:/www-data
sudo cgset -r cpu.cfs_period_us=1000000 www-data
sudo cgset -r cpu.cfs_quota_us=100000 www-data


    


    And when I do use it on ffmpeg via the terminal it works fine

    


    But when I used it in php like :

    


    exec("cgexec -g cpu:www-data ffmpeg -i music.mp3 -ac 1 -map 0:a -acodec libopus -b:a 64k -vbr off -ar 24000 music.ogg");


    


    does not work

    


    Can it be used with exec ?