
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 (42)
-
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 (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (4022)
-
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 ?