Recherche avancée

Médias (91)

Autres articles (85)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (11248)

  • Passing file name in youtube-dl post-process script without file extension suffix

    2 avril 2021, par Arete

    The documentation for youtube-dl says I can run a post-process command with the --exec option.

    


    Using Windows, here is an example I have tried :

    


    youtube-dl --exec "ffmpeg -i {} -ac 2 -c:a libfdk_aac -cutoff 20000 -afterburner 1 -vbr 0 {}.m4a" https://www.youtube.com/watch?v=sw9DlMNnpPM


    


    Note that {} passes the file name to the post-process command. For example filename.webm.

    


    The problem is that {} includes the file extension.

    


    How can I pass the file name to the post-process command without the file extension ?

    


    For example, if I were to convert the video, I would rather avoid getting an output name like filename.webm.m4a. Needless to say, I would rather want filename.m4a.

    


  • How do I auto-start streamlink to capture YouTube live stream once the capture stopes in 6 hours with session expiration ? [closed]

    13 janvier 2020, par Anoma

    I’m using Streamlink to capture a YouTube live stream. But as everyone knows, the capture ends in 6hrs with YouTube session expiration. As I’m new in scripting, could anyone please help me to overcome this issue ?

    I’m looking for a script that can automatically start a new session with the same YouTube live stream after a given time or once the scrip detects the error : "Error when reading from stream : Read timeout, exiting" in 6 hours.

    Thank you in advance.

  • re-stream rtsp stream to youtube [closed]

    2 novembre 2024, par Darter

    i would like to re-stream an rtsp stream of a wifi camera to youtube
the stream is allready a H.264 codec.

    


    The camera does not have any audio, but youtube needs audio to accept the stream, thats why i faked and audio stream.
I tried this

    


    ffmpeg -re -rtsp_transport tcp -i rtsp://192.168.1.140/live -f lavfi -i anullsrc -f rawvideo rtmp://a.rtmp.youtube.com/live2/<stream key="key">&#xA;</stream>

    &#xA;

    but it fails

    &#xA;

    av_interleaved_write_frame(): Broken pipeB time=00:00:00.20 bitrate=884736.0kbits/s speed=0.0156x    &#xA;Error writing trailer of rtmp://a.rtmp.youtube.com/live2/dgyh-qzba-t13k-6qtf-6rgq: Broken pipe&#xA;

    &#xA;

    i would like to not change the codec to not put any stress on the machine

    &#xA;