
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (38)
-
ANNEXE : Les extensions, plugins SPIP des canaux
11 février 2010, parUn plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
Les extensions que MediaSPIP nécessite pour fonctionner
Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...) -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...)
Sur d’autres sites (5292)
-
How to re-encode a 120fps (or higher) MP4 from my Samsung Galaxy to a 30fps (example) so it plays on Windows like it does on the Samsung
21 septembre 2022, par remark70I have some high fps slow-motion videos (mp4) that I've recorded on my phone, but when I copy them to windows and play them back, they play at the normal speed (or they play really fast), unless I slow down playback but this isn't a good result.


What I'd like to do is re-encode (if that's the right word) the video to a standard fps (such as 30) to get a longer video (keeping all the frames), i.e. a 10 second 120fps would end up being a 40 second video at 30fps.


-
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. -
Android FFMPEG video compression issue in Samsung Galaxy S4 device
13 novembre 2015, par momersaleemI am using this library to compress video in android. App gets crash when I try to compress video second time. It works fine on other android devices except Samsung Galaxy S4. It gives the following signal on crash.
Fatal signal 11 (SIGSEGV) at 0x7b820a94 (code=2), thread 960 (Thread-1277)
I searched a lot for this issue but couldn’t find solution. Any help would be greatly appreciated.