Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (97)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10043)

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

  • scalability issues with video encoding on webserver

    2 janvier 2013, par Prasanth

    On a web application that im creating the user is allowed to upload a video. The video is converted to x264 using ffmpeg for iOS playback. So if there are too many users thats going to kill the web server.

    I'm thinking about something like this. Have a few encoding servers for the application and the application on receiving the video file uploads to any one encoding server and the encoding server encodes the video and uploads it back to the web server.

    Are there any other solutions preferably which wont increase the response time for the user ? The user has to see the preview of the video as soon as the upload process finishes.

    The client does not want any 3rd party video encoding services. We have negotiated this many times but they do not want this.