Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (69)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12754)

  • How do I download the past x minutes of an ongoing livestream with FFMPEG and Youtube-dl

    8 août 2018, par Arno van der Weijden

    I’m trying to download the last 2 minutes of a livestream upon a certain trigger.
    However this trigger triggers just after the thing I want to record.

    I tried the following but that doesn’t seem to work. I can only download what is currently streaming or will stream in the near future.

    ffmpeg -i (output of youtube-dl -g youtube-live-stream-url) -c:v copy -c:a aac -ss -00:02:00 -strict experimental -t 00:02:00 last2minutes.mp4

    Does anyone have an idea how I could set a negative start time ?

  • FFMPEG download m3u8 faster

    23 août 2018, par Bruno Andrade

    I have a server with 1 Gbps port speed where I am trying to download m3u8 videos from a website. But he is very slow. I want to know if there is something in my ffmpeg code that I can do to make it get faster ?

    ffmpeg -hide_banner -loglevel verbose -n -i http://example.com/list.m3u8 -map 0:4 -map 0:5 -acodec copy -bsf:a aac_adtstoasc -vcodec copy video.mp4 1> log.tx  2>&1

    Does the CPU influence this type of ffmpeg download ? What I understand of the code is that it is saying not to encode anything. Download the same video is on the site. So CPU processing would not influence the speed correct ?

  • How can I use ffmpeg to download an m3u8 with multiple audio tracks ?

    4 septembre 2018, par casolorz

    I want to download an m3u8 with multiple audio tracks but when I use ffmpeg to do it the file ends up with just one audio track. What switches do I need on ffmpeg to get all the audio tracks that are on the m3u8 manifest ?

    This is the command I used :

    ffmpeg -i  https://domain/path_to_m3u8 -c copy multitrack.mp4

    Thanks.