
Recherche avancée
Autres articles (30)
-
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 -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
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 (...)
Sur d’autres sites (6599)
-
how to stream live videos with no latency (ffplay, mplayer) and what kind of wrapper could be used with ffplay ?
10 juin 2015, par user573014I have been testing playing multiple live streams using different players because I wanted to get the lowest latency value. I tried gstreamer player (gst-launch-0.01), mplayer, totem and ffmpeg player (ffplay). I used different configuration values to get the lowest latency for each of them for example :
ffplay -fflags nobuffer
mplayer -benchmarkThe protocol I am streaming with is udp and I am getting a better values with ffplay than mplayer or gst-launch. To be honest, I don’t know what kind of configuration I need to do it the gstreamer to get a lower latency.
Now, what I need is two things :-
I would like to know if someone has a better suggestion about streaming a live stream with lower latency < 100 ms. I am now getting higher than 100 ms which is not really efficient for me.
-
Since I am using ffplay currently, because it is the best so far. I would like to do a simple gui with a play and record button and 3 screens to stream from different video servers, I just don’t know what kind of wrapper (which should be really fast) to use !
-
-
ffmpeg rotating source video and applying overlay images [on hold]
22 janvier 2014, par DrimeI'm having some trouble with this, I've got a source video that has been recorded upside down. I need this video to be rotated and have a couple of transparent PNG files overlayed on top of it. I'm using this command :
ffmpeg -i Upside_Down.mov -r 1 -i overlays_%d.png -c:v libx264 -r 30 -pix_fmt yuv420p -filter_complex "overlay=0:0" output.mkv
The above command works perfectly but keeps my source video upside down obviously, I know rotation can be achieved by -vf vflip:hflip but that doesn't seem to work. Is there a way to achieve this goal or is the only option to flip the source video and apply the overlay in a second run i.e. first do
ffmpeg -i Upside_Down.mov -vf vflip:hflip
then run the code code above upon completion ?Thanks for your help !
-
Convert .mp3 to .mov or .mp4 on iOS SDK [on hold]
3 août 2014, par SebastianI’m a little stuck with an mp3 conversion.
At this time, my app does the following :
- Receive an input text.
- The app generate a speech using an online API and download the generated .mp3 file to the app document’s folder.
Now I need to convert the .mp3 to .mov or .mp4 and then grab it to the camera roll, so the user can share the video on Facebook, Whatsapp, or wherever he wants.
Is there some easy and memory friendly way to convert from .mp3 to .mp4 without "writing a video" ?
Thank you !