
Recherche avancée
Médias (1)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (68)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 ) (...)
Sur d’autres sites (14094)
-
ffmpeg/avconv taking an rtp dump or pcap of a stream as input
16 août 2013, par RyvenI'm trying to get ffmpeg (or avconv) to take some kind of file representing an rtp dump as the input source and output this to a video.
I can get this to work fine in scenarios where i specify something like
ffmpeg -i rtp://:<port> <outputfile></outputfile></port>
orffmpeg -i sdp.sdp <outputfile></outputfile>
and then stream (usingrtpplay
from anrtpdump
) to that address/port. However, i'd like to give the actualrtpdump
itself as the input - or something representing the rtp or rtp payload that can be fed in as a file (instead of streamed).Thus far any type of
rtpdump
i try and input to to ffmpeg doesn't seem to work (usually complaining about not being able to find codec parameters for payload types that i'm not actually using, making me question the format of the input file).Does anybody know of a way to do this ? I'm not so concerned about the input being an
rtpdump
per se, but something derivable from awireshark
pcap would be good.Thanks
-
Merge commit ’62cc8f4d79dad119e8efeaae080a58a8dcb1e89d’
29 novembre 2015, par Hendrik Leppkes -
Is it possible to mute the ffmpeg rtp stream ?
21 janvier 2016, par Mr.ComputerFunkI am using ffmpeg to stream audio from my microphone using rtp. I am using following command :
ffmpeg -re -f dshow -audio_buffer_size 80 -i audio="Mikrofon (Intel
SST Audio Device (WDM))" -acodec pcm_s16be -ar 44100 -f rtp
rtp ://@multicast_ip:portIt is running perfectly. However, for my application I need to mute the stream. I have searched but could not find anything that would allow me to mute during runtime.
Anyone has any idea perhaps ?