
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (29)
-
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 (6195)
-
Incorrect syntax using FFmpeg
25 avril 2017, par Halid KyazimHello guys i am tring to convert videos using FFmpeg...
-
I moved ffmpeg.exe in same folder with upload.php
-
I tryed this codes in upload.php :
$randname = (rand(0,1000));
$file_data=date("d-m-Y-H-i-s");
$file_name=$file_data.$randname;
move_uploaded_file($file_tmp,"vidconvert/".$file_name);
exec (ffmpeg -i vidconvert/.$file_name videos/.$file_name.mp4);
echo "Success"; -
I want to get the file in vidconvert folder, and copy converted video to videos folder
Note : when i check the vidconfert folder, the file is uploaded succesfully
-
-
Minimum PHP/Server Requirements for Yii 2
12 avril 2015, par Future KingI tried to run my yii2 app on my web hosting (It has PHP5.4 and Linux Server). But when I tried to upload files then it showed me error that Fileinfo extension is not installed. I asked the server guys and they told me that they can not enable that extension because it is a shared hosting.
I tried the same app on some other hosting. I received this error :
PHP Startup : Unable to load dynamic library ’/usr/local/lib/php/extensions/no-debug-non-zts-20100525/ffmpeg.so’ - /usr/local/lib/php/extensions/no-debug-non-zts-20100525/ffmpeg.so : cannot open shared object file : No such file or directory
I want to know, what are the minimum server requirements (or required PHP extensions) for Yii2, so that I can find another host according to that.
-
How to create a m3u8 Byte-Range playlist without creating a new file
20 mars 2019, par Rodrigo ValençaI’ve found some nice related questions,such as this one How to create byte-range m3u8 playlist for HLS ? but the best answer, that provide us this ffmpeg command
ffmpeg -i sample.ts -hls_time 20 -hls_flags single_file out.m3u8
creates a new .ts file to use in the m3u8. In my application we need to create the m3u8 file, but we want it to be faster than the solution provided, it was unworkable for us. I think that the provided solution is a little slow ’cause it has to create a new file, do you guys know a solution that uses a already existing encoded ts file ?