Recherche avancée

Médias (91)

Autres articles (38)

  • ANNEXE : Les extensions, plugins SPIP des canaux

    11 février 2010, par

    Un 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, par

    Le 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 remark70

    I 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.

    &#xA;

    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.

    &#xA;

  • Android Samsung Galaxy S2 / S3 device bitmap rendering to ImageView issue

    18 décembre 2014, par Steve

    I 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 from JNI 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 to ImageView. Now the issue is the Bitmap I get is rendering very well in maximum devices except Samsung S2/S3.

    A>Working well In :- Screen Shot 1

    1. Nexus 4
    2. HTC One / HTC One x
    3. LG Optimus
    4. Sony Experia
    5. 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 from JNI as jpg in SD card and read that again to set the ImageView and it works. I Don’t understand what is going wrong with the raw Bitmap that I get from JNI callback, is it with Samsung S2 Hardware ? Please someone help me on this.

    With Nexus 4/HTC/XOLO/Sony/Samsung S plus

    With Samsung S3/S3

  • Android FFMPEG video compression issue in Samsung Galaxy S4 device

    13 novembre 2015, par momersaleem

    I 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.