
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (45)
-
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. -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (10452)
-
is there any functional build of ffmpeg to android
11 mai 2018, par Rafael LimaI’ve searching the last 3 days for a usable API for android access ffmpeg.
Since FFMpeg group doesn’t release an official lib for android I found several paralel projects trying to build it.So it brings me to my nightmare that is called compile.
i’ve followed all these tutorials : https://trac.ffmpeg.org/wiki/CompilationGuide/Android
And others found in different places. but none of them build
NONE OF THEM IS LESS THAN 3 YEARS OLD
Sorry for the caps, but it is frustrating... no ffmpeg build projects I found deal with nkd above 14 and google doesn’t keep in archive nkds older than that, so even if i agree with get all outdated libraries source i cant reproduce de compiler i cant download the same ndk...
The only api i manage to download with a functional build of ffmpeg probably was compiled without some codecs, because on my tests i can only handle few types of videos
===============================================================
The question is, does anyone know an actual, stable, project for building ffmpeg to android ?
I’m even willing to pay in order to get a working version of it
-
FFMPEG execution from PHP
13 juin 2014, par egekhterI’m trying to execute FFMPEG from a PHP script and could not figure out the best practice for doing so when running a background process - do we use shell_exec, exec, passthru, proc_open...?
On https://trac.ffmpeg.org/wiki/Using%20FFmpeg%20from%20PHP%20scripts, they use an example of
echo shell_exec("ffmpeg -y -i input.avi output.avi null >/dev/null 2>/var/log/ffmpeg.log &");
In my code I was initially using :
exec($cmd." 2>&1", $out, $ret);
But then switched to :
passthru($cmd." 2>&1", $ret);
I chose passthru because I could actually see the encoding process in terminal, but now it’s a moot point since I’m running multiple background processes. Which is the recommended function for running background processes ?
-
Change audio speed using ffmpeg node js
26 juillet 2022, par Getwronghow do i change the speed of the song output using this function :



function addAudio()
{
 console.log("adding audio...");

 ffmpeg()
 .videoCodec('libx264')
 .format('mp4')
 .outputFormat('mp4')
 .input(song)
 .input(video)
 .output(output1)
 .on('end', () => { 
 resolve(output1);
 }).on('error', (_err) => {
 reject(_err);
 }).run();
}




https://trac.ffmpeg.org/wiki/How%20to%20speed%20up%20/%20slow%20down%20a%20video



this shows command line input but not sure how to use it in js function ?