Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (47)

  • 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

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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (7221)

  • FFMPEG restream ends in 403 forbidden

    2 décembre 2018, par John Chin

    I’m trying to restream locally a .m3u8 iptv link ( http://link:port/live/username/password/3820.m3u8 ) using Nginx...
    I’ve used this command : ffmpeg -i [m3u8 link] -vcodec libx264 -b:v 500k -f flv rtmp ://192.168.1.8:1935/live/play
    It seems to work, but after 30/40 seconds, ffmpeg follows a redirect of the iptv-m3u8 and ends in "403 forbidden"...
    I’ve found online that I have to add some parameters, but I don’t know which one are this params...
    Can you help me ?
    Thank you in advance

  • ffmpeg - Recording live stream

    16 novembre 2016, par arpak

    I try to record 59 minutes from live hls(m3u8) link

    ffmpeg -i http://example.com/video.m3u8 -t 3420 -c copy -y -hls_playlist_type vod /var/www/html/recording/rec1.m3u8

    So it works But if there is a network problem with input link for few seconds it stop the recording.

    Is there a way to make the ffmpeg wait for input link and then contiue recording without killing the ffmpeg

    so i read about timeout but dont know exactly how to make it.
    so maybe ffmpeg can wait for input link and then continue to record after it is available or maybe display image when first input is down, so whatever solution is acceptable just not to kill ffmpeg if input source is down

  • Raspberry Pi : Playing multiple video files in mkfifo pipe

    19 janvier 2017, par user3246167

    I have 2 files, test.mp4 and test2.mp4 that I want to play concurrently with no noticeable break in the middle. Currently I’m using

    mkfifo test
    cat test.mp4 > test &
    cat test2.mp4 > test &
    omxplayer test

    However, when I do this, omxplayer just returns data and doesn’t play the file. But if I just put a single file into the pipe, omxplayer shows it normally. I’ve also tried using the copy command in ffmpeg, and that also just returns data, doesn’t play the file.

    I understand that I can just concatenate the 2 files together, but that will not work for my purposes, because I will need to be able to feed files to the pipe while omxplayer is running