
Recherche avancée
Médias (1)
-
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 (38)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Les images
15 mai 2013
Sur d’autres sites (4219)
-
How to extract Programme service data from radio stream
12 janvier 2017, par NathanKI’m using ffmpeg to save a publicly available radio stream to mp3 files. I would like to know what the schedule is for the radio station before I begin downloading the stream. In other words, I’d like to know if a radio stream contains something akin to the electronic program guide and, if so, is there a library/api available on linux that will allow me to extract this data. I know already that a radio signal can contain a program associated data field (I’m not sure how to extract this either).
I’ve searched on stackoverflow, I wasn’t able to find anything similar. After searching for 2 hours on google to no avail, I’m choosing to post this question here. Any help is greatly appreciated.
-
video streaming server ffserver, can i use it in live env
25 décembre 2019, par shrwI was looking for video streaming server accept videos and stream it.
Saw ffserver was
https://trac.ffmpeg.org/wiki/ffserverWarning : ffserver has been removed on 2018-01-06. If you still need it checkout commit 2ca65fc or use the 3.4 release branch.
It also suggested https://github.com/klaxa/mkvserver_mk2
Can i still use ffserver.
-
How to join 2 audio files into one using either ffmpeg or eac3to ?
18 janvier 2017, par user3108268Not merge or mux into each other, because this is what I found so far, but take 2 .mp3 files e.g. 1 hour long each and join them and it becomes 1 .mp3 file with total of 2 hour long ?
I did this :
ffmpeg -i audio.mp3 -i 1.mp3 -filter_complex amerge -c:a libmp3lame -q:a 4 audiofinal.mp3
But I think it encode both files into each other or something.
And there’s nothing about this at https://en.wikibooks.org/wiki/Eac3to/How_to_Use
I’d like to prefer command line solution and not Audacity or mp3DirectCut.
edit : i tried
eac3to m1.mp3+m2.mp3 1.mp3
but it doesn’t join them, output audio is the length of first file.