Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (104)

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

  • 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

Sur d’autres sites (13323)

  • Using ffmpeg to restream youtube videos

    2 juin 2020, par ILoveCake

    I want to restream 3 youtube videos (each one is a live webcam) in this way : they would run one after the other, but each one runs for only 1 minute. All this in a loop. So my live stream would eventually look like this :
cam1, cam2, cam3, cam1, cam2, cam3, ...
I have tried to used youtube-dl and ffmpeg (these are my preferred command line tools) to download each stream, let it run for 1 minute and restream it. The problem is that I have to start ffmpeg each time. So when it stops and starts again, the live stream stops and starts again (after about 15 seconds). Here is my code (for bash) :

    



    The main script : (FILE is an array with the 3 URLs for the videos)

    



    for URL in "${FILE[@]}"
do
  timeout 1m /usr/local/bin/get_livestream.sh $URL
done



    



    and get_livestream.sh :

    



    youtube-dl -q -o - -- $1 | ffmpeg -re -loglevel warning -hide_banner \&#xA;  -i - -s 960x540 -c:v libx264 -b:v 2M -c:a copy \&#xA;  -strict -2 -flags &#x2B;global_header -bsf:a aac_adtstoasc -bufsize 2100k \&#xA;  -f flv rtmp://live.twitch.tv/app/<key>&#xA;</key>

    &#xA;

  • online free media hosting for live streaming

    30 novembre 2013, par Abdul Ali

    wanted to ask two things :

    1- How can we put the output of FFMPEG to a stream (online address to put the stream).

    2- Is there any free service (for testing purpose) to use FFMPEG and pass the output to it for live streaming .

    apologies if am unable to explain properly what is intended.

    to summarize, wish to convert images to video using FFMPEG (have tried the image to video conversion locally and seems to be working) and put the output to an online resource for live streaming and possibly also have VOD (so users who later logon can view at least from some point behind which they have missed).

    regards,

  • Extract image frames from live non-youtube video streams

    20 mars 2021, par feed_me_pi

    I am trying to extract https videos which are live streaming on earthcam.net, skyline.net, etc. I have been,

    &#xA;

    FFmpeg -i "https://&lt;>" -vf fps=1/5 out%d.png&#xA;

    &#xA;

    but it gives Invalid data found when processing input

    &#xA;