Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (43)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (6099)

  • ffserver : Check allocations (likely not all)

    6 juin 2015, par Michael Niedermayer
    ffserver : Check allocations (likely not all)
    

    Reviewed-by : "Reynaldo H. Verdejo Pinochet" <reynaldo@osg.samsung.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] ffserver.c
  • ffserver : drop obvious comment

    8 février 2014, par Reynaldo H. Verdejo Pinochet
    ffserver : drop obvious comment
    

    Following code line is self explanatory

    Signed-off-by : Reynaldo H. Verdejo Pinochet <r.verdejo@sisa.samsung.com>

    • [DH] ffserver.c
  • ffmpeg display only video in Android

    19 février 2014, par Whoami

    I am Writing video player in android. So far i could able to capture the frames, with the help of av_read_frame and avcodec_decode_video2, and updating to SDL2.0. I have followed dranger tutorial02.c http://dranger.com/ffmpeg/ .

    Sudo Code is :

    while (1)

      {
            1. Read packet
            2. check if video frame; if not Go to Step 3.
                   2.1  if video frame, then update with SDL_UpdateYUVTexture,
            3. Handle SDL Event
            4. Clear the Renderer.
            5. Present Renderer.
      }

    I wonder, do i need to take care of synchronization of video, dts/pts calculation while i need only to display video ?

    This scenario works well in the samsung, but not in other mobiles.

    What woud be your advice ?