
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (68)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...) -
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 (3070)
-
record webrtc steam from mediasoup v3 with ffmpeg
23 mai 2019, par EldoradoI am using mediasoup v3 and wants to record the webrtc video stream on the server. I created a plain transport and then a consumer. The following is the debug log from my mediasoup server :
created plain transport with id : f1ec98ed-2a45-4584-b393-13ff491e4e23 tuple : "localIp" :"xxx.xxx.xxx.xxx","localPort":48343,"protocol" :"udp"
new consumer created : "codecs" :["mimeType" :"video/VP8","clockRate":90000,"payloadType":101,"rtcpFeedback" :["type" :"nack","type" :"nack","parameter" :"pli","type" :"ccm","parameter" :"fir","type" :"goog-remb"],"parameters" :{},"mimeType" :"video/rtx","clockRate":90000,"payloadType":102,"rtcpFeedback" :[],"parameters" :"apt":101],"headerExtensions" :["uri" :"http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time","id":4,"uri" :"urn:3gpp:video-orientation","id":9,"uri" :"urn:ietf:params:rtp-hdrext:toffset","id":10],"encodings" :["ssrc":787151607,"rtx" :"ssrc":950796434,"scalabilityMode" :"L3T3"],"rtcp" :"cname" :"n/02NZ5XH9xJT4HC","reducedSize":true,"mux":true
Then I tried different combination of parameters in the ffmpeg command with no luck, for example :
ffmpeg -protocol_whitelist udp,rtp -i rtp://@xxx.xxx.xxx.xxx:48343 -ssrc 787151607 -c copy mmmm.webm
What should be the correct parameters passed to the ffmpeg command ?
Thanks !
-
Google Analytics Now Illegal in Austria ; Other EU Member States Expected to Follow
18 janvier 2022, par Erin — Privacy -
Problems with point to point streaming using FFmpeg
16 février 2015, par UserOfStackoverflowI want to live stream video from webcam and sound from microphone from one computer to another but there is some problems.
When I use this command line :
ffmpeg.exe -f dshow -rtbufsize 500M -i video="Camera":audio="Microphone" -c:v mpeg4 -c:a mp2 -f mpegts udp://127.0.0.1:1234
FFmpeg console starts filling with yellow color messages and stream becomes unstable : http://s16.postimg.org/qglcgr345/Untitled.png
To solve this problem I have added new parameter to the command line to set the frame rate -r 25 :
ffmpeg.exe -f dshow -rtbufsize 500M -r 25 -i video="Camera":audio="Microphone" -c:v mpeg4 -c:a mp2 -f mpegts udp://127.0.0.1:1234
After I added -r 25 problem with yellow color messages disappears but then appears another problem. When I fresh start FFmpeg with this command line video and sound looks synchronous but after one or two minutes appears 25 seconds lag between video and sound, sound goes behind video. I have tried that with different protocols UDP, TCP, RTP but problems are the same. Please help me !