
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (50)
-
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 (8524)
-
C++ How to stream mpeg over http?
9 mai 2014, par Titouan42I have a streaming server (nodejs) which listen a mpeg stream over http,
by using this code.Currently, I would like to feed my server without the ffmpeg tool, as below, but with a C++ code.
ffmpeg -s 640x480 -f video4linux2 -i /dev/video0 -f mpeg1video \
b 800k -r 30 http://example.com:8082/yourpassword/640/480/
So, my question is how to simply stream mpeg over http?
Help please !
-
C++ Send mpeg over http FFmpeg [on hold]
10 mai 2014, par Titouan42I have a streaming server (nodejs) which listen a mpeg stream over http,
by using this code.Currently, I feed my server using ffmpeg tool as below :
ffmpeg -s 640x480 -f video4linux2 -i /dev/video0 -f mpeg1video \
b 800k -r 30 http://example.com:8082/yourpassword/640/480/
Now, I would like to do similar job by feeding the nodejs server using a C++ code, that acquire frame with OpenCV then encode and send it with ffmpeg.
Help please !
-
Streaming webcam using ffmpeg and ffserver
24 octobre 2012, par gazzwi86I'm using a Logitech C270 webcam and a Raspberry Pi and attempting to stream an audio and video feed to my mac. I've tried this quite a number of ways and now managed to get a video feed using mjpeg-streamer, however, this does not support audio.
I was wondering if anyone could explain where I have gone wrong with my ffmpeg configuration. I am trying to stream /dev/video0, and if possible would like to do away with mjpeg-streamer so that I can use just one tool for the full task.
ffmpeg installation
echo "deb-src http://www.deb-multimedia.org sid main" >> /etc/apt/sources.list
sudo apt-get update && apt-get install deb-multimedia-keyring
#Remove the second line from /etc/apt/sources.list
#deb http://www.deb-multimedia.org wheezy main non-free
sudo apt-get source ffmpeg-dmo
cd ffmpeg-dmo-0.11
./configure
make && make install:/etc/ffserver.config
Port 80
BindAddress 0.0.0.0
MaxClients 10
MaxBandwidth 50000
NoDaemon
<feed>
file /tmp/webcam.ffm
FileMaxSize 10M
</feed>
<stream>
Format status
ACL allow 192.168.2.0 192.168.2.255
</stream>
<stream>
Feed feed1.ffm
Format asf
VideoFrameRate 15
VideoSize 352x240
VideoBitRate 256
VideoBufferSize 40
VideoGopSize 30
AudioBitRate 64
StartSendOnKey
</stream>
<stream>
Feed webcam.ffm
Format swf
VideoSize 640x480
VideoFrameRate 15
VideoBitRate 2000
VideoQMin 1
VideoQMax 10
</stream>:/usr/sbin/webcam.sh
ffserver -f /etc/ffserver.conf & ffmpeg -v verbose -r 5 -s 640x480 -f video4linux2 -i /dev/video0 http://localhost/webcam.ffm