
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
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
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (71)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10957)
-
MPEG DASH : Playing video segments from .m4s files instead of byte ranges in the MPD File using Simple DASH Player
1er novembre 2018, par TrycoderI have followed the tutorial from the link below to create an MPEG DASH player using HTML5 and javascript.
Building a simple MPEG dash player using HTML5 and JS.In the given tutorial, it is possible to play the video segments using byte ranges. But for my application, I need the following features.
- The video player should read the .m4s segment files and play the video instead of byte ranges.
- The amount of data in the MediaSource buffer should be calculated periodically, also the amount of space left in the buffer.
Are these possible in the given player or Is there a better MPEG DASH Player with the above features ?
PS : The MPD File is created using FFmpeg.
ffmpeg -f avfoundation -video_size 1280x720 -framerate 30 -i 0 -vcodec libx264 -acodec aac -b:v 800k -f dash -use_template 0 -min_seg_duration 4000 -single_file 1 -start_at_zero -live 1 ffmpeg.mpd
Also, I tried using the DASH.js player but the documentation is very vast in it. Can we get the size of the source buffer in dash.js (The space available in the source buffer and also the amount of space filled) ? This is the main feature which is required for my project.
Edit :
Code which I tried -
A query on ffmpeg's DASH muxer and setting timeShiftBufferDepth values in MPEG-DASH Media Presentation Description (MPD) files
18 février 2019, par 林正浩The documentation for the webm_dash_manifest muxer mentions the time_shift_buffer_depth option, defined as "Smallest time (in seconds) shifting buffer for which any Representation is guaranteed to be available. "
What’s the equivalent option/setting for the same in the dash muxer (,if implemented) ?
-
Android Samsung Galaxy S2 / S3 device bitmap rendering to ImageView issue
18 décembre 2014, par SteveI am stuck in a very strange
Bitmap
rendering issue with Samsung Android devices. Let me discuss in brief what I have done.I am taking frame from a video and rendering it in a
ImageView
using ffmpeg. Following code gives me a bitmap object in return fromJNI
callback.img_convert_ctx = sws_getContext(pCodecCtx->width,
pCodecCtx->height, pCodecCtx->pix_fmt, target_width,
target_height, PIX_FMT_RGB24, SWS_BICUBIC, NULL, NULL,NULL);
sws_scale(img_convert_ctx,(const uint8_t* const *)
pFrame->data,pFrame->linesize, 0, pCodecCtx->height,pFrameRGB->data,
pFrameRGB->linesize);Next, I’m just setting the
Bitmap
toImageView
. Now the issue is theBitmap
I get is rendering very well in maximum devices except Samsung S2/S3.A>Working well In :- Screen Shot 1
- Nexus 4
- HTC One / HTC One x
- LG Optimus
- Sony Experia
- Samsung Galaxy S Plus / Samsung Exhibit (Android 2.3)
Issue With :-
B>Samsung Galaxy S2 & S3 : The second screen shot.For Case B, A part of the video is rendering at the right side if you notice.
I have tried saving the
Bitmap
I get fromJNI
as jpg in SD card and read that again to set theImageView
and it works. I Don’t understand what is going wrong with the raw Bitmap that I get fromJNI
callback, is it with Samsung S2 Hardware ? Please someone help me on this.