Recherche avancée

Médias (91)

Autres articles (112)

  • 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 ;

  • 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 (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (11355)

  • Apply different effects to Video

    10 octobre 2013, par ishan jain

    I am creating an application, in which I have to give the option to apply different effects (normal, sepia, black & white, vintage, HD) to the VIDEO. I am creating this application this application for min android 2.3 version.
    I am thinking of following the flow video -> convert to image frames -> apply effect to frames using some library -> convert frames to video.

    Can anyone help me that if above flow is correct or not ? And which library I can use for applying effects to the frames or is there any other way to apply the effects ?

    Thanks

  • Can I reduce buffering and delay using ffmpeg ?

    28 juin 2021, par Trivalio

    I'm currently working (as a total beginner) on a nginx-RTMP streaming server and i've tried to implement ffmpeg filters but as i tested them i saw that there is a lot of delay due to these filters.
I'm having a hard time finding a ffmpeg function to reduce it.
Here is what i've done so far :

    


    worker_processes auto;
rtmp_auto_push on;
events{}
rtmp{
    serveur{
        listen 1935;
        listen [::]:1935 ipv6only=on;
        chunk_size 4096;
        buflen 5s;
        application live{
            live on;
            record off;
        }
        application ffmpeg{
            live on;
            record off;
            exec /usr/bin/ffmpeg -re -i rtmp://localhost/$app/$name -vf mpdecimate,hue=s=0 -vcodec flv -acodec copy -f flv rtmp://localhost/live;
        }
    }
}


    


    i use OBS to stream to the ffmpeg application and i use VLC to see the stream exiting from the live application.

    


    I've tried many functions from rtmp but since the delay doesn't seems to come from rtmp, it doesn't change anything.
If you have any idea how to improve that, you will make me a quit happy person.

    


    Thank you !

    


  • Create a RTSP video stream on a .NET platform

    12 décembre 2012, par Goro

    I want to create a RTSP/h264 video stream from static images, and incorporate it into my .NET application. So far I have found two possible ways to do this :

    1. Use ffmpeg/ffserver, but I would need to compile ffserver on windows and then rely on it... and I don't necessarily want to rely on an external application

    2. Use the LIVE555 (http://www.live555.com) library, but they do not have any .NET libraries, so I would need to spend some effort to make it work with the rest of my .NET application.

    Can you comment on either #1, #2, or which is better. Is there a faster way to bring up a RTSP server in .NET ? I do not mind putting in development time if there is a solid solution that takes time, but it would be good to have something we can work with fast, for prototyping and demos.

    Thank you,