
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (21)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (3911)
-
Streaming live video from Windows to Android with FFmpeg
29 avril 2018, par Alan DanielsI am capturing live video on a Windows PC and encoding it with FFmpeg. I can stream the content live to another PC using
rtsp://[dest_ip:port]/live.sdp
as FFmpeg’s output on the sender and usingffplay -rtsp_flags listen rtsp://[dest_ip:port]/live.sdp
on the receiver. However, I have to run FFplay before starting the sender. Also, VLC cannot play the rtsp path :main debug: net: connecting to 127.0.0.1 port 5555
main error: connection failed: Connection refused by peer
access_realrtsp error: cannot connect to 127.0.0.1:5555
access_realrtsp debug: could not connect to: 127.0.0.1:5555/live.sdpHowever, FFplay and VLC can play something like
ffplay rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov
.On the Android side, I am using the Media API which can play content from a URI. It works with HTTP and RTSP (as far as I know).
I’ve looked at FFmpeg’s streaming guide : https://trac.ffmpeg.org/wiki/StreamingGuide, but I am still confused about the difference between my path
rtsp://[dest_ip:port]/live.sdp
andrtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov
.Do I need a streaming server in order to have my content accessible by URI ? Any recommendations since FFserver is depreciated ?
-
Concat Demuxer in FFMPEG Autogen
21 juin 2021, par JunaidAmjadIs there option available for Concat Demuxer in FFMPEG.Autogen library. I tested it in FFMPEG and it works well through the here


-
Avconv : Select german stream not highest quality one
6 novembre 2017, par mblaettermannI am converting some input stream from my DVB S2 Card to RTMP.
Everything works fine after switching to recent avconv and x264 :)
The only thing I couldn’t find out is, how do I select the right audio stream ?
The source sometimes has up to 6 audio tracks. Avconv automatically chooses the one with the highest bitrate. However I want to select the "ger" one :
Here are the streams of ARTE german/french TV Channel for example :
Input #0, mpegts, from 'http://192.168.1.50:9981/stream/channelid/1035':
Duration: N/A, start: 19083.694722, bitrate: 15576 kb/s
Program 1
Stream #0.0[0xa8], 127, 1/90000: Video: mpeg2video (Main), yuv420p, 544x576 [PAR 32:17 DAR 16:9], 1/50, 15000 kb/s, 25 fps, 90k tb50 tbc
Stream #0.1[0x70](fre), 204, 1/90000: Audio: mp2, 48000 Hz, stereo, s16p, 192 kb/s
Stream #0.2[0x71](ger), 207, 1/90000: Audio: mp2, 48000 Hz, stereo, s16p, 128 kb/s
Stream #0.3[0x72](eng), 207, 1/90000: Audio: mp2, 48000 Hz, stereo, s16p, 128 kb/s
Stream #0.4[0x73](qaa), 207, 1/90000: Audio: mp2, 48000 Hz, stereo, s16p, 128 kb/s
No Program
Stream #0.5[0x3b], 126, 1/90000: Audio: mp1, 0 channels, s16plibav Docs are really not that helpful. Who does now the right syntax ?
EDIT : I found the -map option : http://ffmpeg.org/trac/ffmpeg/wiki/How%20to%20use%20-map%20option But it is not possible to map by name ? Only by index ?
Maybe I need to use avprobe then, to find the corrent stream index for "ger".