
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 (20)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash 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 (...)
Sur d’autres sites (3009)
-
how to use ffmpeg to cache a stream
17 septembre 2018, par Marceli am using the following command to copy a live stream and restream it to a different endpoint. This works Ok , but the problem is that the stream breaks up/buffer occurs on client/stuttering and does not run smoothly or even fails.
Here is the command i am usingffmpeg -loglevel fatal -fflags +igndts -re -i "$1" -acodec copy -vcodec copy -tune zerolatency -f mpegts pipe:1
$1 is an mpegts http stream url
what will be the correct command to use for ffmpeg to "cache" few seconds of the input stream (input is mpegts) before emitting the stream out as is ? I hope by caching i can get a smooth playback , no stuttering or buffering on the client side.
thanks for help !!
-
compat/avisynth/avxsynth_c : Clear all unused fields in returned structs
11 décembre 2014, par Michael Niedermayer -
x86inc : Clear __SECT__
26 mai 2015, par Timothy Gux86inc : Clear __SECT__
Silences warning(s) like :
libavcodec/x86/fft.asm:93 : warning : section flags ignored on
section redeclarationThe cause of this warning is that because `struc` and `endstruc`
attempts to revert to the previous section state [1].The section state is stored in the macro __SECT__, defined by
x86inc.asm to be `.note.GNU-stack ...`, through the `SECTION`
directive [2].Thus, the `.note.GNU-stack` section is defined twice
(once in x86inc.asm, once during `endstruc`), causing the warning.That is the first part of the commit : using the primitive `[section]` format
for .note.GNU-stack etc., which does not update `__SECT__` [2].That fixes only half of the problem. Even without any `SECTION` directives,
`__SECT__` is predefined as `.text`, which conflicting with the later
`SECTION_TEXT` (which expands to `.text align=16`).[1] : http://www.nasm.us/doc/nasmdoc6.html#section-6.4
[2] : http://www.nasm.us/doc/nasmdoc6.html#section-6.3Signed-off-by : Luca Barbato <lu_zero@gentoo.org>