
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (7409)
-
Online video editing server for streaming content
23 février 2014, par netCreateI'm looking for software that will enable me to make online video editing for streaming content.
I do have background with FFmpeg (as video multiplying), MLT framework and Red5 as streaming server.Now what I need to do is to be able to stream online content and modify it - add layers and effects online.
I know how to do this thing offline with Kdenlive or generate MLT scripts. I want to be able to to this online.
What should I do to enable online editing ?
-
Dropping the latency of streaming in Gopro hero 8 via ffplay and ffmpeg
13 août 2020, par ShirinI'm currently working on a low-latency live streaming using FFplay and FFmpeg library. My target is achieving to 100 or 200 msec latency and for next steps manipulating the latency.
Now I use the followed code and received 800msec-1sec latency in streaming live video but it is not sufficient.


-ffplay -probesize 32 -sync video -an -sn -fast -infbuf -f mpegts -i udp ://127.0.0.1:10000


I was wondering if you help me for dropping the latency.


-
golomb : always check for invalid UE golomb codes in get_ue_golomb
13 décembre 2015, par Andreas Cadhalpungolomb : always check for invalid UE golomb codes in get_ue_golomb
Also correct the check to reject log < 7, because UPDATE_CACHE only
guarantees 25 meaningful bits.This fixes undefined behavior :
runtime error : shift exponent is negativeTesting with START/STOP timers in get_ue_golomb, one for the first
branch (A) and one for the second (B), shows that there is practically no
slowdown, e.g. for the cavs decoder :With the check in the B branch :
629 decicycles in get_ue_golomb B, 4194260 runs, 44 skips
433 decicycles in get_ue_golomb A,268434102 runs, 1354 skipsWithout the check :
624 decicycles in get_ue_golomb B, 4194273 runs, 31 skips
433 decicycles in get_ue_golomb A,268434203 runs, 1253 skipsSince the B branch is executed far less often than the A branch, this
change is negligible, even more so for the h264 decoder, where the ratio
B/A is a lot smaller.Fixes : mozilla bug 1230239
Fixes : fbeb8b2c7c996e9b91c6b1af319d7ebc/asan_heap-oob_195450f_2743_e8856ece4579ea486670be2b236099a0.bitFound-by : Tyson Smith
Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>