Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (73)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (10761)

  • Live Streaming RTMP to RTSP

    19 septembre 2013, par user2794054

    i need to test a restream work like this.
    now i m using crtmpserver. i want to restream rtmp live source to iis smooth streaming format & rtsp format. Please guide me
    rtmp live to rtsp live
    &
    rtmp to live http streaming (target IIS server)

    Thanks

  • A delay on streaming the video in some ANDROID device

    15 juillet 2017, par Alwin Varghese

    i have an application used for streaming and recording videos from an external device and i have a
    customized tablet with the following specifications :

    1) Android OS 4.2

    2) Processor : Freescale iMX6 Quad

    On running the application on this tablet, there is a delay in streaming the video.

    i.e for example : The video is being streamed to the application and we move our hand over the camera, the hand appears inside application after some delay, say 2seconds.App is working fine with other devices.My assumption is that cause of lower hardware specification.

    My android application is using ffmpeg library for streaming the video.
    The video received from the external camera is MPEG encoded
    The Bosch tablet decoder is h.254

    is there any way to stream without delay on above mentioned device ?

  • Dynamically Extending FFMPEG Playlist for Continuous Video Streaming

    3 août 2023, par dumbQuestions

    I am trying to create a seamless FFMPEG playlist so I can add new videos without interrupting the stream. Currently, I'm using the following command :

    


    ffmpeg -re -f concat -safe 0 -i playlist.txt -c copy -f flv "${INPUT_URL}"

    


    The initial playlist works fine, but when I try to append new files to it, the streaming stops and the newly added files don't seem to affect the output.

    


    I've tried manually editing the playlist.txt file and adding new video files to it while streaming, but it seems like FFMPEG doesn't automatically detect the changes and continues the streaming seamlessly. I also attempted using the -concat option, but it didn't work as expected.

    


    Is there a proper way to dynamically extend the FFMPEG playlist while maintaining continuous video streaming, or a way to continuously stream new clips one after the other without interruptions ? Any insights or suggestions on how to achieve this would be greatly appreciated. Thanks in advance !