
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (50)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (9573)
-
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 ?


-
wavdec : refactor wav_read_header()
19 décembre 2014, par Thomas Volkert