
Recherche avancée
Autres articles (53)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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, (...) -
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 (5791)
-
How to make a nonstreamable mp4 streamable from a JS browser client ?
14 mai 2020, par Daniel KobeFor my service we are sending videos that need processing. Unfortunately some of the videos are non streamable. By that I mean the metadata information is at the end of the file and not the beginning. With ffmpeg you can make a video streamable with this command :
ffmpeg -i source.mp4 -a:v copy -a:c copy -movflags faststart output.mp4



Is there anyway I can replicate ffmpegs
faststart
logic from a JS client ?


I see that there are libaries like
ffmpeg.js
but I was hoping to avoid having a huge library in the code.

-
Evolution #3503 (Fermé) : ajaxReload et formulaire_traiter
3 mai 2017, par cedric -sauf que "redirect" a un sens dans tous les contextes (qu’on soit en ajax ou non), alors que ’ajaxreload’ n’a de sens que si on est en ajax, et qui plus est uniquement dans le cas d’une page qui contient certains blocs. Ça devient donc complètement non générique et à ce titre il semble difficile d’intégrer ça au core.
Cela dit je pense que ça peux se maquetter en plugin sans problème : un pipeline sur formulaire_traiter qui prend l’éventuel ajax_reload du resultat et le transforme dans le html idoine, injecté dans message_ok. Ça te rendra le même service -
commande ffmpeg not working from php [on hold]
29 août 2016, par Elmehdi AlloulI have a PHP file which executes a command :
echo shell_exec ( 'ffmpeg -i "http://ip:8000/play/a02o" -b:v 1000k -vb 1000k -minrate 1000k -maxrate 1000k -aspect 16:9 -s 720x480 -vprofile main -r 25 -threads 4 -bufsize 1500k -c:v libx264 -preset veryfast -g 60 -acodec libmp3lame -ar 44100 -ab 64k -strict experimental -f flv "rtmp://127.0.0.1:708/live/test" > /dev/null 2>/dev/null & ' ) ;
Everything is okay now, but when I restart nginx service, I’m forced to rerun the command again. Is there any way to start this command every time it is stopped ? Also, how can I know the status of the streaming, i.e., whether it is started or not ?