
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (76)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (8569)
-
Generate m3u8 file with Extended M3U directives by ffmpeg
5 septembre 2014, par Sagar JoshiI am generating m3u8 files by using ffmpeg.
Command is like below :
ffmpeg -i sourcefile.mp4 -vcodec libx264 -acodec libvo_aacenc -b:v 128k -flags -global_header -map 0:0 -map 0:1 -f segment -segment_time 4 -segment_list_size 0 -segment_list testlist.m3u8 -segment_format mpegts stream%05d.ts
This is creating m3u8 files successfully, but it does not add extended m3u8 directives.
So , how to add those directives ?
Thanking in Advance,
Sagar Joshi
-
Mp3 volume up and down within specific parts Android
23 mai 2017, par Vivek BhattI want to alter the volume of an audio file(mp3) within specific parts.
Eg : In 5-10 sec, 10-15 sec, ... 10% of the original volume of audio and in rest for the part 100% of the original volume of audio.
I have tried with FFmpeg by the following command but it’s taking to much time if audio file is of longer durationffmpeg -i "input.mp3" -af volume=0.1:enable=’between(t,5,10)+between(t,5,10)’ -preset ultrafast "output.mp3
Is there any other way around which is bit quick.
Thanks in advance
-
GStreamer vs FFmpeg
4 janvier 2012, par user1129474I try to record a Video with the OpenCV Framework an would like to save that into an Matroska(mkv) Container together with some additional data streams.
First I thought using FFmpeg is the way that.
But while looking into the OpenCV Sourcecode and searching in the web I found GStreamer.Because the documentation in GStreamer is much better than the FFmpeg documentation I would prefer using this Framework.
In my understanding GStreamer is primarily used for Streaming, but could also rncode and mux video data.
Is there any disadvantage when using GStreamer instead of FFmpeg ?
Thanks in advance
Horst