
Recherche avancée
Autres articles (41)
-
Demande de création d’un canal
12 mars 2010, parEn 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 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. -
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 -
yuv4mpeg : Correctly round chroma up for odd luma sizes
25 juin 2013, par Ronald S. Bultje -
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 HusaynTwo 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.


foreach ($video as $value) {
 exec("ffmpeg -i ".$this->APP_PATH.$value." -c:v libx264 -c:a aac -b:a 192k ".$this->TEMP_PATH.++$this->temp_file.".mp4");
 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.++$this->temp_file.".mp4");
 $text .= "file '".$this->TEMP_PATH.$this->temp_file.".mp4'\n";
 }
 
 $file = $this->TEMP_PATH.++$this->temp_file.".txt";
 //chmod($this->TEMP_PATH, 0777);
 file_put_contents($file,$text);
 chmod($file, 0777);

 Log::info(" ********** file paths ********** ".$text);

 exec("ffmpeg -safe 0 -f concat -i ".$file." -c copy ".$this->TEMP_PATH.$this->final);