Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (62)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (4394)

  • FFMPEG : Controlling overlay through ZeroMQ in ffmpeg

    9 juillet 2020, par Michel

    For a project we need to manually control an overlay (static image) on top of a video stream. We concluded that we will need ZeroMQ to control this, and we've managed to control an audio filter successfully through ZeroMQ.

    


    To achieve this we've considered two options :

    


      

    1. Use a color filter to control the foreground (image) transparency
    2. 


    3. "Move" the overlay image in front of the video stream, and remove it out of the video canvas
    4. 


    


    We've managed to get both working, but not in combination with ZeroMQ, unfortunately.

    


    Example :

    


    ffmpeg -loglevel verbose    \
              -i $STREAM     \
              -i overlay.png  \
          -bsf:a aac_adtstoasc \
        -threads 12             \
             -vf "zmq=bind_address=tcp\\\://127.0.0.1\\\:1235, [0:v][1:v]overlay=25:25" \
            -c:a aac              \
             -af "azmq=bind_address=tcp\\\://127.0.0.1\\\:1235,volume=1" \
            -c:v h264 output


    


    The above example produces the following error :

    


    Error reinitializing filters!
Failed to inject frame into filter network: Invalid argument


    


    Advice on how this can be achieved is highly appreciated !

    


  • Anomalie #2537 : Redirections incorrectes avec Firefox > 5

    16 février 2012, par marcimat -

    En tout cas, ajouter l50 de inc/headers, (avant Location :) le cache-control : no-cache corrige ce problème. @header("Cache-Control : no-cache") ; @header("Location : " . $url) ;

  • Aforge VideoSourcePlayer is too slow

    20 juillet 2018, par Jasim Khan Afridi

    I am receiving continuous frames from a video device which I convert into image and then play them as live video on WPF application. I have used picture box control for this purpose. It works for 1 or two video streams. But as soon as I add more. It shows clear lag in performance and frames per second reduce drastically.

    I then tried using Aforge’s VideoSourcePlayer control. I implemented IVideoSource that receives images and pushes them to VideoSourcePlayer via NewFrame?.Invoke(this, new NewFrameEventArgs(image)) and I am expecting them to be played seemlessly. Which is not the case. It is very laggy even for one video stream.

    My question is : Is there something wrong with my approach ?

    Is there any other open source control that can help me with this problem ?