
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (111)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)
Sur d’autres sites (6646)
-
FFMPEG RTP UBUNTU NETWORK issue
14 août 2015, par Иван КолесниковI’m want to copy a bunch of SD sources from mpegts transported with RTP on local files. (VBR mpeg2video, mp2 audio). It works fine for one multicast source with following command : ffmpeg -i rtp ://@IP1:PORT -c copy video1.mpg. But when I run a second ffmpeg instance with following command :
ffmpeg -i rtp ://@IP2:PORT -c copy video2.mpg then I’m start to getting errors from both ffmpeg instance ("RTP : dropping old packet received too late") and in both files (video1.mpg and video2.mpg) start to recording video from second source (rtp ://@IP2:PORT). This issue is only under Linux (Ubuntu 15.04). I have no problems under Windows and when try the same actions from files to files. Under Ubuntu even two ffplay instances tuned to different sources play back the same content (from source which was opened second). I tried playing back with vlc and there is no such problem.
I can resolve this issue when using ffmpeg with -f key : ffmpeg -f mpegts -i rtp ://@IP1:PORT -c copy video1.mpg and ffmpeg -f mpegts -i rtp ://@IP2:PORT -c copy video2.mpg, but then I getting following errors : "[mpegts @ 0x306e240] PES packet size mismatch" and receive both files (video1.mpg and video2.mpg) with artifacts and freeze effects. This issue appears for both operation systems. How can I recording video from few RTP streams contemporaneously under Ubuntu without errors and artifacts ? Please give advice. -
Executing FFmpeg recording using in-line SDP
3 décembre 2020, par Sarvesh PatilI'm trying to record audio on a webrtc server in NodeJS using FFmpeg.


I am able to record the audio if I explicitly create an input.sdp file and use it with the "-i" flag of FFmpeg.


My question is : How to create a string in the code to dynamically change port numbers for recording different streams at the same time ?


I tried doing this :


const sdpInfo = `data:application/sdp;charset=UTF-8,v=0\no=- 0 0 IN IP4 ${ipAddr}\ns=-\nc=IN IP4 ${ipAddr}\nt=0 0\nm=audio ${port} RTP/AVPF 111\na=rtcp:${port+1}\na=rtpmap:111 opus/48000/2\na=fmtp:111 minptime=10;useinbandfec=1`



However, if I give it as input with "-i" flag, I get the following error :




data:application/sdp ;charset=UTF-8,v=0 : Invalid data found when processing input




Can someone please help ?


-
FFmpeg RTP network issue in Ubuntu
4 mai 2017, par Ivan KolesnikovI want to copy a bunch of SD sources from mpegts transported with RTP on local files. (VBR mpeg2video, mp2 audio). It works fine for one multicast source with the following command :
ffmpeg -i rtp://@IP1:PORT -c copy video1.mpg
but when I ran a second ffmpeg instance with the following command :
ffmpeg -i rtp://@IP2:PORT -c copy video2.mpg
then I got errors from both FFmpeg instances ("RTP : dropping old packet received too late") and in both files (video1.mpg and video2.mpg) recorded video from the second source (rtp ://@IP2:PORT).
This issue occurs only in Linux (I checked Ubuntu 14.04 - 16.04). I have no problems in Windows and can transcoding video correctly in parallel from files. Under Ubuntu even two ffplay instances tuned to different sources play back the same content (from the source which was opened last). I tried playing back with VLC and there is no such problem.
I can resolve this issue when using FFmpeg with the -f option :
ffmpeg -f mpegts -i rtp ://@IP1:PORT -c copy video1.mpg
and
ffmpeg -f mpegts -i rtp ://@IP2:PORT -c copy video2.mpg, but then I’m getting the following errors : "[mpegts @ 0x306e240] PES packet size mismatch" and receive both files (video1.mpg and video2.mpg) with artifacts and freeze effects. This issue appears for both operating systems.How can I record|transcode videos from multiple RTP streams with FFmpeg simultaneously under Ubuntu without errors and artifacts ?