Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (43)

Sur d’autres sites (8557)

  • Revision 118453 : un label oublié sur les case dans les constructeur de saisies (Marcimat)

    7 novembre 2019, par maieul@… — Log

    un label oublié sur les case dans les constructeur de saisies (Marcimat)

  • Anomalie #4758 (Nouveau) : La case "Afficher le menu Développement" ne devrait plus être natif

    2 mai 2021, par Franck D

    Hello :)

    SPIP 4.0.0-alpha GIT [master : 2618378c] neuf avec aucun plug

    Laragon :
    php : 8.0.3
    Apache : 2.4.46
    MySQL : 8.0.23
    phpmyadmin : 5.1.0

    Maintenant que Vertèbres n’est plus dans les plugins-dist, la case à cocher "Afficher le menu Développement" ne devrait plus être visible dans ecrire/ ?exec=configurer_preferences, sauf à avoir fait l’installation du plug en question ou d’adminer

  • ffmpeg continue streaming to twitch use case

    11 juin 2023, par Hassan M. Amin

    So I have a weird use case that I'm struggling with. Here's the situation :

    


    I have 2 video files, each 1 hour long. I want to stream the first file to twitch in a process, and when that file ends, the ffmpeg process will end and then I want to pickup the other video and continue the stream with that one.

    


    Why should the process end ? because after the first video ends, I need to check via code if the 2nd video is available to be streamed, otherwise I'll re-stream the first video again.

    


    I understand that this can be done via concatenating the two videos, but again, the 2nd video might not be available just yet so we need to end the process right after the 1st video ends streaming and check if it's there.

    


    This works great on YouTube, but the issue I'm facing is that Twitch specifically, when we start streaming the 2nd video, thinks that it's a totally new live stream and resets the live duration counter.

    


    Here's the million dollar question : How can we make twitch think that the data being sent from the 2nd video is the remainder of the first video ? I think it has something to do with the timestamps being sent ? any pointers or other way to look at this ?

    


    Tried updating the pts to be the previous video length + current pts