
Recherche avancée
Autres articles (32)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (6789)
-
Revision 53928 : Ajout de la possibilité de ne pas afficher les photos de profil sous ...
11 juin 2018, par yffic@… — LogAjout de la possibilité de ne pas afficher les photos de profil sous le bouton facebook like
-
How do I run and manage multiple FFMPEG streams with PHP ?
21 janvier 2017, par Cory FailI’m in the process of making a WHMCS Module that will allow my clients to paste their rtmp URLs and upload a video that will instantly create a looping live video stream. I have a linux server with FFMPEG that will do the encoding.
I have then used phpseclib to remotely connect to the linux server via SSH. I’ve been using
screen
to allow the server to host multiple streams.My problem is that I can’t figure out a way for my users to get any sort of notifications that the feed is running, nor can I figure out a way to allow them to kill the stream.
I could do
screen -X -S screenid kill
but the issue with that is that I would need to somehow have the ssh return the screenid and store it. I cant seem to figure out how to return that ID once I initiatescreen
So I guess programmatically, this is what I am looking for the SSH to do.
screen
ffmpeg -re -stream_loop 500 -i input.mp4 -strict experimental -acodec aac -ar 44100 -b:a 128k -pix_fmt yuv420p -profile:v baseline -s 426x240 -bufsize 6000k -vb 400k -maxrate 1500k -deinterlace -vcodec libx264 -preset veryfast -g 30 -r 30 -f flv "rtmp://rtmp-api.facebook.com:80/rtmp/xxxxxxxxx"
** Somehow get and Return ScreenID here **
screen -d -aNow that I have the ID I can kill it.
-
Creating personalized video from user submitted pictures and data
18 décembre 2016, par Rajat SinghalCan someone guide me towards what technology to use to create personalized video from user submitted pictures and data.. The process has to be automated, as in server must be able to create a downloadable video from photos and text submitted by user..
So the process will probably be like one video will be created by a hired artist, with placeholders where the user submitted pictures and text will fit in. Now with user submitted data video can be created and downloaded from the website..
An example can be the videos created by facebook now-a-days on your birthday or year end. They consist some of your photos, some text and have a common video theme.. You can view one here http://newsroom.fb.com/news/2016/12/facebook-2016-year-in-review/
One way I’ve found is to write the video code in html5 and then record it with phantomjs and ffmpeg.. http://mindthecode.com/recording-a-website-with-phantomjs-and-ffmpeg/
But it seems a bit unnatural way of doing it.. And also I think not a lot of good artists are out there who can create the video theme in html5..