
Recherche avancée
Autres articles (32)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...) -
Les images
15 mai 2013
Sur d’autres sites (3316)
-
Revision 32d88c2209 : Properly set size based on actual buffer layout VP9FrameSizeTestsLarge.OneByOne
30 décembre 2014, par Yaowu XuChanged Paths :
Modify /test/encode_test_driver.cc
Modify /test/video_source.h
Properly set size based on actual buffer layoutVP9FrameSizeTestsLarge.OneByOneVideo has been causing a failure in
jenkins libvpx__unit_tests-valgrind_long for "using of uninitialized
memory", the root cause was that the input image for this test was
not initialized with proper size, therefore plan U and V were not
initialized at all.This commit fixes the size initialization, and resolves the issue.
Change-Id : Ic4dd1542b7bb0cb260a1e0aeeb505db21ae5edc8
-
Anomalie #2381 : Corriger le niveau d’intertitre
24 octobre 2014, par cedric -HTML5 ne résoud rien car si la spec dit en effet que chaque section a son propre niveau d’intertite, en pratique ça reste le plan de la page dans son ensemble qui fait foi pour le SEO
-
Stream two vides in a row over http?
24 juillet 2014, par ZlatkoI have two video files (mpg) and I want to stream them back to a client (mobile devices) but as one video : the first one appended to the second one.
I know I can use ffmpeg to concat them :
ffmpeg -i "concat:input1.mpg|input2.mpg|input3.mpg" -c copy output.mpg
What I want is to avoid creating that concatenated file because I have potentially dozens of files to play, and I want to stream them and stop when the user closes the window and not create that one big output chunk.
For what it’s worth, I plan to stream those with Node.js.