
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (81)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (11072)
-
ffmpeg video segmentation for hls (m3u8) not displaying current time and duration
27 janvier 2015, par Yuri A. BritoI’m following the tutorial on http://www.bogotobogo.com/VideoStreaming/ffmpeg_http_live_streaming_hls.php
I can play the file on VLC. However, it doesn’t show the current time neither the total video duration.
When I try to play it on safari using html5’s , it gives me an error (on embedded quicktime)
How can I make it work on safari and show times ?
I’m using ffpmeg 2.5.3 and the following command :
ffmpeg -i source.mp4 -map 0
-codec:v libx264 -codec:a libfaac
-f ssegment -segment_list playlist.m3u8
-segment_list_flags +live -segment_time 10
out%03d.ts -
libx264 : Define X264_API_IMPORTS on MSVC/ICL
19 juillet 2013, par Derek Buitenhuislibx264 : Define X264_API_IMPORTS on MSVC/ICL
libx264 has a few data exports which require X264_API_IMPORTS
to be defined if we link to libx264 dynamically on Windows.In a similar fashion to how we handle our compat snprintf
implementation, if we define it all the time, the compiler
will first try and link to __imp_x264_symbol_name, and failing
that, as in the case of a static libx264, will attempt to link
to the non-prefixed symbol, which has already been pulled in by
other x264 functions’ object files.Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Rendering video streaming in android sdl ? or ?
15 avril 2013, par user1568549I've successfully cross-compiled a c++ video streaming library to the android ICS platform
This library contains a sample player that uses sdl library to render the resulting decoded video streams and libav for decoding that i've also succeeded to cross compile(libav ... classes) Then, i 've made the necessary jni classes and tested it using log tags it seems that everything is fine but now i want to show the result on the screen(show the real streaming not just log messages)
I am searching for the easiest way to render my stream (just to be sure that everything works fine)
Am i oblige to cross compile the sdl library too ? is it possible ? if yes is there any good tutorial ?
Is there any other solution to render directly ffmpeg decoded frames ?