
Recherche avancée
Autres articles (38)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (6645)
-
faq : Solutions for common problems with sample paths when running FATE.
30 décembre 2011, par Diego Biurrunfaq : Solutions for common problems with sample paths when running FATE.
-
Running PHP from command line
9 juin 2014, par Kit CarrauI am trying to manage a queue of files waiting to be processed by ffmpeg. A page is run using CRON that runs through a database of files waiting to be processed. The page then builds the commands and sends them to the command line using
exec()
.However, when the PHP page is run from the command line or CRON, it runs the
exec()
OK, but does not return to the PHP page to continue updating the database and other functions.Example :
<?php
$cmd = "ffmpeg inpupt.mpg output.m4v";
exec($cmd . ' 2>&1', $output, $return);
//Page continues...but not executed
$update = mysql_query("UPDATE.....");
?>When this page is run from the command line, the command is run using
exec()
but then the rest of the page is not executed. I think the problem may be that I am running a command usingexec()
in a page run from the command line.Is it possible to run a PHP page in full from the command line which includes
exec()
?Or is there a better way of doing this ?
Thank you.
-
Keep FFMPEG running and waiting for new image files to encode and stream
28 janvier 2016, par user2165039I am converting TIFF images to HTTP Live Stream. The images are being continuously streamed by a camera and saved to hard drive. FFMPEG is then converting the files to MPEG transport stream (.ts) and segmenting them. However, as soon as FFMPEG runs out of currently saved images to disk, it ends the conversion. Is there a way how I could keep FFMPEG running and waiting for new images to be saved to disk and converting them ?
This is what I am using :
ffmpeg -f image2 -r 10/1 -i MMseries_%3d.jpg -c:v libx264 -r 30 -b:v 256000 -flags
-global_header -map 0 -f segment -segment_time 4 -segment_list_size 0
-segment_list demo_list.m3u8 -segment_format mpegts video_seg_%05d.ts