Recherche avancée

Médias (0)

Mot : - Tags -/xml-rpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (94)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (10862)

  • Streaming h264 from a named pipe to a browser (how to set up the webserver)

    22 août 2020, par Dean

    I have a h264 stream from a webcam : I set up this stream from a C library with mkfifo and I can display it with mplayer with the following line

    


    execlp("xterm", "xterm", "-e", "mplayer", "-demuxer",  "h264es", fifo_name, "-benchmark", "-really-quiet", NULL);


    


    this will open an xterm window with an mplayer instance demuxing a h264 stream from the named pipe into it.

    


    I must, somehow, stream this to a browser (one client is enough). Is there any way to achieve this by setting up a webserver on this same local machine, reading from this named pipe and sending the h264 stream to a remote browser ?

    


  • Fix edge case where ontimeout() does not fire when SM2 fails to init while using SM2_DEFER / lazy-loading

    19 mai 2012, par Scott Schiller

    + script/Copy of soundmanager2.js + script/basic/soundmanager2-basic-jsmin.js + script/basic/soundmanager2-basic-nodebug-jsmin.js + script/basic/soundmanager2-basic-nodebug.js + script/basic/soundmanager2-basic.js m script/soundmanager2-jsmin.js m script/soundmanager2-nodebug-jsmin.js m (...)

  • How to scale the YUV image from MediaCodec output with any color format ?

    17 octobre 2014, par Frank Bush

    I’m using MediaCodec to decode the video and using sws_scale(from ffmpeg) to rescale it.I can deal with one special color format,eg. YUV420P, and rescale it to destination size. But I have to do some preparing work, such as getting the linesize and memcpy the output buffer to three plain slices(data[0],data[1],data[2]).And the decoder output color format varies on different devices.If I get the colorformat,is there a method in ffmpeg to rescale it automatically without special dealing(Of course, the color format should be supported by ffmpeg) ?