
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (97)
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (12710)
-
Record and livestream xvfb to facebook with audio
7 janvier 2017, par boygiandiI can live a Xvfb screen to facebook with this ffmpeg command :
ffmpeg -r 30 -framerate 5 -f x11grab -i :1045.0 -f lavfi -i anullsrc -video_size 640x480 -codec:v libx264 -x264-params keyint=60 -bufsize 500k -c:a aac -ac 1 -ar 44100 -b:a 128k -f flv "rtmp ://rtmp-api.facebook.com:80/rtmp/10208339883840092 ?ds=1&s_l=1&a=ATizxYY-84bloD-H"
But it doesn’t contain audio. I know that -f lavfi -i anullsrc mean no audio. I tried many ways but I can’t make it record audio from Xvfb screen and live to facebook.
Any one can help ? -
Streaming WebRTC via ffmpeg to Facebook Live (RTMP) [on hold]
5 février 2017, par Frederik Grevesorry for my bad english ;)
I’ve got the following problem :
I want to stream a Webcam (+audio) to Facebook Live. To capture the media I use getUserMedia. Now I will send the data to Facebook Live via RTMP.I tink there are two ways to do it, but I don’t know how.
- Create an Stream with WebRTC and encode it with ffmpeg to RTMP.
- Save every single frame with HTML5 Canvas and then stream it with ffmpeg. (In this case I don’t know to add sound from microphone.)
I’m just using html5, Javacript and PHP.
-
How to live stream on facebook via ffmpeg ?
17 août 2016, par K. TalhaI am trying live streaming on facebook via ffmpeg but I get one error. As the error, I must use AAC instead of mp3. But I don’t know how to do it.
Error :
Bad audio codec 2 (MP3). Accepted audio codecs: AAC
Normally, I can run command below for youtube succesfully.
ffmpeg -i "rtmp://..." -deinterlace -vcodec libx264
-pix_fmt yuv420p -preset medium -r 30 -g 60 -b:v 2500k
-acodec libmp3lame -ar 44100 -threads 6 -qscale 3 -b:a
712000 -bufsize 512k -f flv "rtmp://a.rtmp.youtube.com/live2/key"But when I run command below with facebook rtmp, error gets.
ffmpeg -i "rtmp://..." -deinterlace -vcodec libx264
-pix_fmt yuv420p -preset medium -r 30 -g 60 -b:v 2500k
-acodec libmp3lame -ar 44100 -threads 6 -qscale 3 -b:a
712000 -bufsize 512k -f flv "rtmp://rtmp-api.facebook.com:80/rtmp/key"I am user of Ubuntu 14.04.
Thanks in advance.