Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (64)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

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

Sur d’autres sites (15424)

  • ffmpeg max segment files (auto deleted oldest file)

    15 mai 2017, par Bino Oetomo

    Lets say I have this ffmpeg command

    ffmpeg -i rtsp://10.2.2.19/live/ch01_0 -c copy -map 0 -f segment -segment_time 300 -segment_atclocktime 1 -segment_format mp4 "cam01_%Y-%m%-d_%H-%M-%S.mp4"

    If currently I got 5 files :

    • cam01_2017-05-01_12-00-00.mp4
    • cam01_2017-05-01_12-05-00.mp4
    • cam01_2017-05-01_12-10-00.mp4
    • cam01_2017-05-01_12-15-00.mp4
    • cam01_2017-05-01_12-20-00.mp4

    the next file name will cam01_2017-05-01_12-25-00.mp4, and my directory will contain 6 files :

    • cam01_2017-05-01_12-00-00.mp4
    • cam01_2017-05-01_12-05-00.mp4
    • cam01_2017-05-01_12-10-00.mp4
    • cam01_2017-05-01_12-15-00.mp4
    • cam01_2017-05-01_12-20-00.mp4
    • cam01_2017-05-01_12-25-00.mp4

    My question is, is there any switch/option that make ffmpeg automaticaly limit number of segment to 5 so my directory will contain :

    • cam01_2017-05-01_12-05-00.mp4
    • cam01_2017-05-01_12-10-00.mp4
    • cam01_2017-05-01_12-15-00.mp4
    • cam01_2017-05-01_12-20-00.mp4
    • cam01_2017-05-01_12-25-00.mp4

    (oldest file ’cam01_2017-05-01_12-00-00.mp4’ auto deleted)

  • how to combine audio only live stream with audio and video live stream

    16 septembre 2015, par Ecniv Noraa Worrom

    how to combine two rtmp live streams (1 audio) and (1 audio with video) into 1 live stream and keep them in sync using ffmpeg ex.

    rtmp ://myip:1935/appname/livestream1 (audio&video)
    and
    rtmp ://myip:1935/appname/livestream2 (audio only)

    output stream
    rtmp ://myip:1935/appname/livestream (output with stream1 and 2 combined)

  • Installed ffmpeg, added to path, still can't save animation from Jupyter Notebook

    29 avril 2017, par dredre_420

    I’m trying to simulate a two-body orbit system working on Jupyter Notebook (python). Since the animation can’t display in-line I tried installing ffmpeg and adding it to the system path using steps outlined here : http://adaptivesamples.com/how-to-install-ffmpeg-on-windows/.

    However, when I try to save my animation using anim.save('orbit.mp4', fps=15, extra_args=['-vcodec', 'libx264']), I still get the error message : ValueError: Cannot save animation: no writers are available. Please install mencoder or ffmpeg to save animations.

    Not sure what else to try at this point, very inexperienced programmer here.