
Recherche avancée
Autres articles (62)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (6298)
-
Encoding videos for use with Adobe Live Streaming
10 mai 2016, par FiddleMeRaggedI have an original video coded at 20Mbps, 1920x1080, 30fps and want to convert it down to be 640x480 30fps at a range of (3 different) bitrates for use by Adobe Live Streaming.
Should I use ffmpeg to resize and encode at the 3 bitrates then use f4fpackager to create the f4m f4f and f4x files or just use ffmpeg to reduce the resolution and then f4fpackager to encode the relevant bitrates ?
I’ve had several tries so far, but when encoded the videos seem to play at a much larger bitrate than they’ve been encoded at. For example, if I set up the OSMF to play from my webserver, I’d be expecting my best encoded video to play at 1,500kbps but it’s way above that.
Has anyone had any experience of encoding for use like this ?
I’m using the following options to f4fpackager
--bitrate=1428 --segment-duration 30 --fragment-duration 2
-
Live Stream Android Screen
27 janvier 2012, par salamisI would like to stream Android Screen using FFMPEG and MonkeyRunners(MonkeyImage)
I found a good Tutorial for streaming your webcam using FFMPEG and
video4linux2
.Is it possible to send the
bytes
from the Monkeyrunner.MonkeyImage to the FFMPEG to be converted to a live video stream ?Actual code :
$ffmpeg -f video4linux2 -i /dev/video0 http://78.47.18.19:8090/cam1.ffm
Replace it with something similar to :
$ffmpeg -f video4linux2 -i <add here="here" python="python" stream="stream"> http://78.47.18.19:8090/cam1.ffm
</add>Any suggestions ?
-
ffmpeg : 1 image + 1 audio file = 1 video [on hold]
15 février 2016, par matteoThis should be pretty trivial but I can’t find a way to get it to work.
I want ffmpeg to take one jpg image and an audio file as input and generate a video file of the same duration as the audio file (by stretching the still image for the whole duration).
I don’t care very much about what video codec is used for output but it is vital that I can use "copy" as the audio codec (i.e. copy the audio stream without transcoding it).
What is the right command line that would do that ?
I tried :
ffmpeg -i image8.jpg -i sound11.amr -acodec copy test.avi
and tried a lot of combinations with and without
-s 640x360
,-loop_input
,-shortest
,-t xxx
,-r 0.1
(artificially low frame rate in the hope that the video would be longer) and-f image2
Either I get errors or I get a video file of the duration of one frame.
I’ve googled around and found a dozen of proposed solutions (supposedly to this very same question) none of which works.
Can anybody suggest a working command and explaing the rationale behind it ?