
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (112)
-
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 ;
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (11313)
-
FLAC__stream_encoder_finish : Sanity improvement
30 janvier 2017, par Erik de Castro Lopo -
FFMPEG exec exit code 126
17 mai 2020, par Ali Lordhere is my code for FFMPEG



$mp3path=realpath("1.mp3");
$cmd = "/usr/include/ffmpeg -i $mp3path -ab 128 /home/swiftfa1/public_html/output.mp3 2>&1";
exec($cmd, $output, $value);
echo '<pre>'; print_r($output); echo '</pre>';
echo '<pre>'; print_r($value); echo '</pre>';
exit;




and here is my result :



Array
(
 [0] => sh: /usr/include/ffmpeg: Is a directory
)
126




I used whereis for ffmpeg path and searched a lot but can't solve my issue. any command returns 126 !


-
editly - Where can I get the return value after a video is created ?
21 février 2021, par romQuick question...


Following along the README of editly, I managed to create videos after calling editly like this :


// create video
 editly(editSpec)
 .catch(console.error);



Unfortunately, I am using ExpressJS to do this and I need to send back a response when video creation completes.


However, when I tried to extract any value using .then, it returns undefined :


// create video
 editly(editSpec)
 .then(r => {
 console.log(`Is this undefined? Probably yes! r: `, r)
 res.json(r)
 })
 .catch(console.error);



How can I accomplish this ?