
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (53)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
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 (5792)
-
Capture FFMPEG output in PHP
22 novembre 2012, par AndrewI need to read the output from ffmpeg in order to even try the solution to my question from yesterday. This is a separate issue from my problem there, so I made a new question.
How the heck do I get the output from an
ffmpeg -i
command in PHP ?This is what I've been trying :
<?PHP
error_reporting(E_ALL);
$src = "/var/videos/video1.wmv";
$command = "/usr/bin/ffmpeg -i " . $src;
echo "<b>",$command,"</b><br />";
$command = escapeshellcmd($command);
echo "backtick:<br /><pre>";
`$command`;
echo "</pre><br />system:<br /><pre>";
echo system($command);
echo "</pre><br />shell_exec:<br /><pre>";
echo shell_exec($command);
echo "</pre><br />passthru:<br /><pre>";
passthru($command);
echo "</pre><br />exec:<br /><pre>";
$output = array();
exec($command,$output,$status);
foreach($output AS $o)
{
echo $o , "<br />";
}
echo "</pre><br />popen:<br /><pre>";
$handle = popen($command,'r');
echo fread($handle,1048576);
pclose($handle);
echo "</pre><br />";
?>This is my output :
<b>/usr/bin/ffmpeg -i /var/videos/video1.wmv</b><br />
backtick:<br />
<pre></pre><br />
system:<br />
<pre></pre><br />
shell_exec:<br />
<pre></pre><br />
passthru:<br />
<pre></pre><br />
exec:<br />
<pre></pre><br />
popen:<br />
<pre></pre><br />I don't get it.
safe_mode
is off. There's nothing indisable_functions
. The directory is owned bywww-data
(the apache user on my Ubuntu system). I get a valid status back fromexec()
andsystem()
and running the same command from the command line give me tons of output. I feel like I must be missing something obvious but I have no idea what it is.Help. Please.
-
Capture FFMPEG output
2 mai 2017, par AndrewI need to read the output from ffmpeg in order to even try the solution to my question from yesterday. This is a separate issue from my problem there, so I made a new question.
How the heck do I get the output from an
ffmpeg -i
command in PHP ?This is what I’ve been trying :
<?PHP
error_reporting(E_ALL);
$src = "/var/videos/video1.wmv";
$command = "/usr/bin/ffmpeg -i " . $src;
echo "<b>",$command,"</b><br />";
$command = escapeshellcmd($command);
echo "backtick:<br /><pre>";
`$command`;
echo "</pre><br />system:<br /><pre>";
echo system($command);
echo "</pre><br />shell_exec:<br /><pre>";
echo shell_exec($command);
echo "</pre><br />passthru:<br /><pre>";
passthru($command);
echo "</pre><br />exec:<br /><pre>";
$output = array();
exec($command,$output,$status);
foreach($output AS $o)
{
echo $o , "<br />";
}
echo "</pre><br />popen:<br /><pre>";
$handle = popen($command,'r');
echo fread($handle,1048576);
pclose($handle);
echo "</pre><br />";
?>This is my output :
<b>/usr/bin/ffmpeg -i /var/videos/video1.wmv</b><br />
backtick:<br />
<pre></pre><br />
system:<br />
<pre></pre><br />
shell_exec:<br />
<pre></pre><br />
passthru:<br />
<pre></pre><br />
exec:<br />
<pre></pre><br />
popen:<br />
<pre></pre><br />I don’t get it.
safe_mode
is off. There’s nothing indisable_functions
. The directory is owned bywww-data
(the apache user on my Ubuntu system). I get a valid status back fromexec()
andsystem()
and running the same command from the command line give me tons of output. I feel like I must be missing something obvious but I have no idea what it is. -
Capture FFMPEG output
6 janvier 2024, par Andrew EnsleyI need to read the output from ffmpeg in order to even try the solution to my question from yesterday. This is a separate issue from my problem there, so I made a new question.



How the heck do I get the output from an
ffmpeg -i
command in PHP ?


This is what I've been trying :



<?PHP
 error_reporting(E_ALL);
 $src = "/var/videos/video1.wmv";
 $command = "/usr/bin/ffmpeg -i " . $src;
 echo "<b>",$command,"</b><br />";
 $command = escapeshellcmd($command);

 echo "backtick:<br /><pre>";
 `$command`;

 echo "</pre><br />system:<br /><pre>";
 echo system($command);

 echo "</pre><br />shell_exec:<br /><pre>";
 echo shell_exec($command);

 echo "</pre><br />passthru:<br /><pre>";
 passthru($command);

 echo "</pre><br />exec:<br /><pre>";
 $output = array();
 exec($command,$output,$status);
 foreach($output AS $o)
 {
 echo $o , "<br />";
 }
 echo "</pre><br />popen:<br /><pre>";
 $handle = popen($command,'r');
 echo fread($handle,1048576);
 pclose($handle);
 echo "</pre><br />";
?>




This is my output :



<b>/usr/bin/ffmpeg -i /var/videos/video1.wmv</b><br />
backtick:<br />
 <pre></pre><br />
system:<br />
 <pre></pre><br />
shell_exec:<br />
 <pre></pre><br />
passthru:<br />
 <pre></pre><br />
exec:<br />
 <pre></pre><br />
popen:<br />
 <pre></pre><br />




I don't get it.
safe_mode
is off. There's nothing indisable_functions
. The directory is owned bywww-data
(the apache user on my Ubuntu system). I get a valid status back fromexec()
andsystem()
and running the same command from the command line give me tons of output. I feel like I must be missing something obvious but I have no idea what it is.