Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (10)

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

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (2256)

  • Live stream videos on YouTube with ffmpeg ?

    30 janvier 2021, par Manuservus

    What the program should do :

    


    It should download a video from an URL.

    


    Then put the video into a streaming interface (on the right side there should be the live chat from YouTube, in the middle, there should be the downloaded video).

    


    Next stream it live to YouTube.

    


    The process should repeat endless times.

    


    Download video from URL —> Stream it live to YouTube in a streaming interface -> repeat the whole process.

    


    Is this even possible in Python ? If yes how ?

    


    I would appreciate any help !

    


    PS : The stream should run smoothly without a break. That means : As soon as a video is finished, the next comes straight away.

    


  • Is there a way to have a live website as an video overlay on RTSP stream using ffmpeg ? [closed]

    29 janvier 2021, par user161284

    I'd need to have a live website on one corner of my RTSP video stream, which is then streamed to Youtube. I know I can do this with OBS, but the point is that nobody actually operates the computer, so I though I'd use ffmpeg.

    


    I know that ffmpeg can add images as an overlay, but in my case the need would be to use a live website as the overlay. Whether this would be accomplished with "plain" ffmpeg or some other piece of (already existing) software in-between does not matter.

    


    After reading the ffmpeg documentation and some earlier posts a few years ago, it unfortunately seems that there's no way to use html as an overlay with plain ffmpeg.

    


    Any suggestions to overcome this challenge ?

    


  • I am using ffmpeg for overlaying a image on live stream. How can i scale accoring to the widht of my screen so that it fits completely

    14 janvier 2021, par anshul

    I am scaling the output from complex filter to different standard resolutions using the -s flag but the result is that the video does not fit completely into my output screen. How can i scale the different outputs dynamically according to the screen. Here is my command.

    


    ffmpeg  -i rtmp://127.0.0.1:1935/show/$2 -i $overlayUrl  -filter_complex "[1][0]scale2ref=iw:ih[ovr][base];[base][ovr] overlay=0:0, split=4[a][b]" -async 1 -vsync -1 -map 0:a -map "[a]" -c:v libx264 -c:a aac -b:v 256k -b:a 32k -s 640x360 -tune zerolatency -r 60 -preset  veryfast -crf 23 -f flv rtmp://$rtmpoutput/$2_low -map 0:a -map "[b]" -c:v libx264 -c:a aac -b:v 768k -b:a 96k -s 640x480 -tune zerolatency -r 60 -preset veryfast -crf 23 -f flv rtmp://$rtmpoutput/$2_mid code here