Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (41)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Les sons

    15 mai 2013, par

Sur d’autres sites (4546)

  • doc/filters : reference ffmpeg-utils manual for color and sizes options

    14 octobre 2013, par Timothy Gu
    doc/filters : reference ffmpeg-utils manual for color and sizes options
    

    Signed-off-by : Timothy Gu <timothygu99@gmail.com>
    Signed-off-by : Stefano Sabatini <stefasab@gmail.com>

    • [DH] doc/filters.texi
  • yuv4mpeg : Correctly round chroma up for odd luma sizes

    25 juin 2013, par Ronald S. Bultje
    yuv4mpeg : Correctly round chroma up for odd luma sizes
    

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/yuv4mpeg.c
  • To concat two videos, one of which is the first video webcam recorder and the other is the normal video(Mp4) using ffmpeg

    8 décembre 2020, par Zargam Husayn

    Two videos have to be join in which the first video is a webcam recorder and the other is a normal video in which the first video I set up plays correctly but the second video does not play, only the audio is heard.

    &#xA;

     foreach ($video as $value) {&#xA;            exec("ffmpeg -i ".$this->APP_PATH.$value." -c:v libx264 -c:a aac -b:a 192k ".$this->TEMP_PATH.&#x2B;&#x2B;$this->temp_file.".mp4");&#xA;            exec("ffmpeg -i ".$this->TEMP_PATH.$this->temp_file.".mp4 -c:a aac -ar 48000 -ac 2 -c:v copy -video_track_timescale 600 ".$this->TEMP_PATH.&#x2B;&#x2B;$this->temp_file.".mp4");&#xA;            $text .= "file &#x27;".$this->TEMP_PATH.$this->temp_file.".mp4&#x27;\n";&#xA;        }&#xA;        &#xA;        $file = $this->TEMP_PATH.&#x2B;&#x2B;$this->temp_file.".txt";&#xA;        //chmod($this->TEMP_PATH, 0777);&#xA;        file_put_contents($file,$text);&#xA;        chmod($file, 0777);&#xA;&#xA;        Log::info(" ********** file paths ********** ".$text);&#xA;&#xA;        exec("ffmpeg -safe 0 -f concat -i ".$file." -c copy ".$this->TEMP_PATH.$this->final);&#xA;

    &#xA;