
Recherche avancée
Autres articles (45)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (7674)
-
Exit FFMPEG when a line freezes
21 juin 2021, par user15966041I have a ffmpeg bat file for retrieving streams through rtsp


bat file


ffmpeg -xerror -loglevel error -stimeout 1111111 -rtsp_transport tcp -v verbose -i "rtsp://admin:admin1234@10.8.0.14:81/cam/realmonitor?channel=1&subtype=1 " -vf scale=1024:576 -vcodec libx264 -sc_threshold 0 -f hls -hls_flags delete_segments -hls_time 2 -segment_time 2 -hls_list_size 2 C:\Apache24\htdocs\smartmine\ipcam\video_1\stream.m3u8 





The problem im facing is that, after ffmpeg had run for a few hours, the speed decreases and the processing of the video stops and stays on that single line.


Is there any way to exit the ffmpeg when this is happening. I have tried a lot of methods, but none of them worked out. Thanks a lot


-
Any command line program to convert videos to Hap ?
29 octobre 2015, par NaBUru38I need to convert videos to Vidvox Hap from from a Windows batch file.
So I need either a program with a command line interface, or a library to be called from inside a program.
- MPEG Streamclip has a batch menu, but it can’t be called from a Windows batch file.
- VLC doesn’t convert to Hap as far as I know.
- ffmpeg supports Hap conversions, but apparently it requires recompiling the program, which has been an odyssey.
I don’t know any other video converter available as a Windows library that supports Hap converting. Any other suggestions ? Thanks.
-
ffmpeg not working from php script but works from command line [on hold]
12 février 2015, par david perlmani can run youtube-dl.php from command line "php youtube-dl.php" works fine
but not working from http...
is it someting with chown ?$url = "https://www.youtube.com/watch?v=KdS6HFQ_LUc";
echo "Saving $url";
$cmd = 'youtube-dl -o "/var/www/domain.com/test/%(title)s.%(ext)s" '.$url.' -f bestvideo+bestaudio';
exec($cmd, $output, $ret);
echo 'output: ';
var_export($output);echo "\nret : " ;
var_export($ret) ;