
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (42)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (7094)
-
Add random macro-blocking to video [duplicate]
15 février 2018, par GrzegorzgThis question already has an answer here :
-
Simulating TV noise
3 answers
For some reasons I need to add random macro-blocking to my video.
Now I have clear representation, but I need to get something like this
-
Simulating TV noise
-
Set ENV PATH of php and ffmpeg to use it inside PHP scripts with CLI like shell_exec()
24 février 2015, par user3774451I would like to execute commands in a php script like this :
<?php
shell_exec(php myfile.php)or
<?php
shell_exec(ffmpeg -i ...)My problem, i think is that php and ffmpeg path are not properly configured in my apache environment because when i execute this :
<?php
var_dump(shell_exec("which php"));
var_dump(shell_exec("which ffmpeg"));I get this answer :
string '/usr/bin/php' (length=13)
nullBut in the terminal when i type :
which php
which ffmpegI get this answer :
/usr/local/opt/php55/bin/php
/usr/local/bin/ffmpegSo how can i set properly the php and ffmpeg environment path without always retype the complete path ?
I am under Mac OsX 10.10 and i installed php and ffmpeg whith brew.
-
How to concat two .mp4 files in php using ffmpeg ? [duplicate]
6 mai 2014, par user3607665This question is an exact duplicate of :
I want to concat two .mp4 files to single .mp4 in php using ffmpeg.
Thanks