Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (37)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (5491)

  • avfilter/vf_libplacebo : set correct alpha mode before blending

    19 février, par Niklas Haas
    avfilter/vf_libplacebo : set correct alpha mode before blending
    

    &pl_alpha_overlay expects straight alpha, but the alpha output may be
    premultiplied as a result of the target alpha mode (or in the absence of an
    alpha channel). Fix it by requesting independent alpha explicitly when
    blending.

    • [DH] libavfilter/vf_libplacebo.c
  • Best way to combine 16 live streams into a live 4x4 collage within Linux [duplicate]

    13 mars 2013, par CoryG

    This question already has an answer here :

    I'm setting up a CCTV system with two 8ch capture cards in a Linux box and am looking for the most efficient way to combine all 16 channels into a 4x4 grid and send it straight to the VGA output of a machine. Is this possible without running a window manager - and if not what is the best way to handle this ? So far I'm leaning toward ffmpeg but am not sure how best to combine the streams.

  • C - FFmpeg streaming from a C program ?

    16 août 2017, par golmschenk

    I’m looking to replicate an FFmpeg command-line command in my C code. Specifically I would like to be able to run :

    ffmpeg -re -i video.mp4 -f mpegts udp://localhost:7777

    One thing I’ve noticed when looking at people’s code who have used the libraries of FFmpeg in their own code is that they often have a few hundred lines of code for a single command similar to an FFmpeg command-line command. I’m guessing this is just because they are doing something very specific, because if I can run that short command on my command line and get what I want it should probably only take about ten lines of code to do the same thing in my C code. This should only take about that much work right ? Why would it take much more ?

    I’m having a bit of difficulty finding explanations on how to use the streaming capabilities of the FFmpeg libraries that aren’t overly complex because they’re for a very specific purpose. Can anyone explain how I might go about writing the code for the above command ? Or at the very least point me to some documentation explaining how to write such a script/program ? Thank you much !

    EDIT : I do hope to run this from an iPhone app eventually so I won’t just be able to straight up call FFmpeg from my program. I’ll need to use the libraries used by FFmpeg.