Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (37)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

Sur d’autres sites (6869)

  • ffserver : fix broken HTML on generated status page

    30 novembre 2016, par Reynaldo H. Verdejo Pinochet
    ffserver : fix broken HTML on generated status page
    

    Dropped incompatible/obsoleted HTML tag attributes

    Signed-off-by : Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>

    • [DH] ffserver.c
    • [DH] tests/ffserver.regression.ref
  • ffserver : Clear avio context after closing it

    1er novembre 2015, par Michael Niedermayer
    ffserver : Clear avio context after closing it
    

    Fixes : ==13287== Invalid read of size 4
    ==13287== at 0x45161A : flush_buffer (aviobuf.c:143)
    ==13287== by 0x451971 : avio_flush (aviobuf.c:200)
    ==13287== by 0x512CCF : av_write_trailer (mux.c:1016)
    ==13287== by 0x41A5E0 : close_connection (ffserver.c:853)
    ==13287== by 0x421EDC : rtsp_cmd_interrupt (ffserver.c:3245)
    ==13287== by 0x420B9C : rtsp_parse_request (ffserver.c:2854)
    ==13287== by 0x41A9C2 : handle_connection (ffserver.c:930)
    ==13287== by 0x41A04B : http_server (ffserver.c:700)
    ==13287== by 0x423A60 : main (ffserver.c:3897)
    ==13287== Address 0xb6cd258 is 88 bytes inside a block of size 192 free’d
    ==13287== at 0x4C2B5D9 : free (vg_replace_malloc.c:446)
    ==13287== by 0x1004DAC : av_free (mem.c:239)
    ==13287== by 0x454835 : avio_close_dyn_buf (aviobuf.c:1170)
    ==13287== by 0x41F385 : http_prepare_data (ffserver.c:2368)
    ==13287== by 0x41F59B : http_send_data (ffserver.c:2416)
    ==13287== by 0x41ABE2 : handle_connection (ffserver.c:986)
    ==13287== by 0x41A04B : http_server (ffserver.c:700)
    ==13287== by 0x423A60 : main (ffserver.c:3897)

    Reviewed-by : "Reynaldo H. Verdejo Pinochet" <reynaldo@osg.samsung.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] ffserver.c
  • Using OpenMAX (IL ?) for audio/video decoding on Android

    14 septembre 2012, par Christopher Corsi

    Many of the newer hardware platforms running Android, in particular NVIDIA's Tegra 2, support OpenMAX for media acceleration. It's effectively impossible on today's devices to decode 720p video without this support, but the number of demuxers supported on Android are quite slim. The only public API I've been able to find has been through the MediaPlayer class in the Android SDK. There are multiple places in the Android source tree with OpenMAX related tidbits, however.

    On my device (Samsung Galaxy Tab 10.1) I've got access to hardware decoders through a multitude of OpenMAX libs in /system/lib, and it would be great to interface my video application with these. Can anyone point me to information on implementing a decoder powered by OpenMAX ? I've found the documentation from Khronos, but nothing in the way of example code or tutorials. I've already got demuxing and even software decoding taken care of (via libavcodec/libavformat), I'd just like to put hooks in to enable hardware encoding. I'm also assuming here it would be necessary to link directly to the ones available on the device, which makes it pretty lackluster in terms of portability, but it works.

    Alternatively, I'm interested in anything anyone knows about private APIs for accessing the video decoding available on Tegra 2 devices. Especially if there's a vdpau interface like what NVIDIA implements for desktop linux distributions, since there's plenty available for that - but I wasn't able to find shared libraries that indicate that support.