Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (36)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7487)

  • Android ffmpeg and hardware acceleration

    4 mai 2015, par ApriOri

    I want my video streaming application to utilize hardware acceleration in android.
    I’m limited to udp video broadcasting so I can’t use Android media player, so I plan to use ffmpeg.
    Is there a way to make ffmpeg utilize hardware acceleration on android ?

  • Anomalie #2332 (Nouveau) : Critère {id_parent} dans boucles RUBRIQUES

    15 septembre 2011, par marcimat -

    Hop, en ce moment (SPIP 3.0.0-alpha2 SVN [18529]) la page ?exec=plan est en erreur, il y a une récursion infinie sur les rubriques provenant du critère id_parent inopérant lorsqu’il est seul. Mettre dans prive/squelettes/inclure/plan-rubriques.html : id_parent=#ID_RUBRIQUE et tout rentre dans (...)

  • How to create buffer for video streaming

    4 juin 2014, par John Simpson

    I am developing a Android video player that can play RTSP Stream. I use ffmpeg in jni part to get and decode RTSP Stream. For now, the player can play and then pause video stream. The next step is to create a buffer for the player so that when user pauses video, the player can still load video stream in the next several seconds.

    Is there any good documentation on how to create a buffer for video streaming in proper way ?

    My plan is to create a array of packets. When the array is full, the player calls

    av_read_pause();

    to stop buffering. When the array has spaces, the player will call

    av_read_play();

    to continue buffering. There is a read_thread for getting packets from the buffer and the decode the packets. The read_thread will stop (resume), when user pauses (resume) video.

    Can this plan work ?