Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (77)

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

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (6901)

  • How can I get info immediately when I use ffprobe

    6 février 2018, par roomy

    I want to get some info about live stream.

    I use
    ffprobe -i rtmp://****.
    (ffmpeg -i http://****) also can’t get info immediately.

    for some live stream,I can get some info immediately.
    like this :

    Input #0, flv, from 'http://hdl.9158.com/live/2f6c6ce0162f6af2cccadf289dfa9674.flv':
     Duration: N/A, start: 0.000000, bitrate: N/A
       Stream #0:0: Subtitle: text
       Stream #0:1: Audio: aac (LC), 44100 Hz, stereo, fltp
       Stream #0:2: Video: h264 (Main), yuv420p(progressive), 540x960, 20 fps, 20 tbr, 1k tbn

    but
    sometimes I can’t get info until 2mins later, although the live stream has no problem.

    how can I solve this problem.

    use

    ffprobe -analyzeduration 500k -probesize 100k -i rtmp://***

    can solve the problem.
    but then I run command to merge live streams I checked alive before.

    ffmpeg -analyzeduration 500k -i http://flv80f29ef7.live.126.net/live/8c79ace747b24694a8d6563c9e626509.flv -analyzeduration 500k -i http://flv80f29ef7.live.126.net/live/8c79ace747b24694a8d6563c9e626509.flv -analyzeduration 500k -i http://flv80f29ef7.live.126.net/live/8c79ace747b24694a8d6563c9e626509.flv -analyzeduration 500k -i http://flv80f29ef7.live.126.net/live/8c79ace747b24694a8d6563c9e626509.flv -filter_complex "nullsrc=size=640x480 [base]; [0:v] setpts=PTS-STARTPTS, scale=320x240 [upperleft]; [1:v] setpts=PTS-STARTPTS, scale=320x240 [upperright]; [2:v] setpts=PTS-STARTPTS, scale=320x240 [lowerleft]; [base][upperleft] overlay=shortest=1 [tmp1];[tmp1][upperright] overlay=shortest=1:x=320 [tmp2]; [tmp2][lowerleft] overlay=shortest=1:y=240 " -f flv rtmp://127.0.0.1:1935/live

    calls error :

    Stream specifier ':v' in filtergraph description nullsrc=size=640x480 [base];[0:v] setpts=PTS-STARTPTS, scale=320x240 [upperleft];[1:v] setpts=PTS-STARTPTS, scale=320x240 [upperright];[2:v] setpts=PTS-STARTPTS, scale=320x240 [lowerleft];[3:v] setpts=PTS-STARTPTS, scale=320x240 [lowerright];[base][upperleft] overlay=shortest=1 [tmp1];[tmp1][upperright] overlay=shortest=1:x=320 [tmp2];[tmp2][lowerleft] overlay=shortest=1:y=240 [tmp3];[tmp3][lowerright] overlay=shortest=1:x=320:y=240 matches no streams.

  • "-y" option in ffmpeg can't overwrite exist file rightly

    11 janvier 2018, par Alexander_flyer

    I want to overwrite the exists .wav file automatically

    and I found a option from the document of the ffmpeg :

    -y (global)

    Overwrite output files without asking.

    and I have a test :

    ffmpeg -i 113.wav -ar 8000 -y 113.wav

    but what I got is a .wav file with only 1 second duration, It’s 2m30s duration before !
    before
    after

    If without the "-y" option, and type "y" after the command line reminder, all is Ok

    File '113.wav' already exists. Overwrite ? [y/N] y

    I’m really confused, and waiting for your response.

    THX

  • avformat/hls : add http_persistent option

    4 octobre 2017, par Aman Gupta
    avformat/hls : add http_persistent option
    

    This teaches the HLS demuxer to use the HTTP protocols
    multiple_requests=1 option, to take advantage of "Connection :
    Keep-Alive" when downloading playlists and segments from the HLS server.

    With the new option, you can avoid TCP connection and TLS negotiation
    overhead, which is particularly beneficial when streaming via a
    high-latency internet connection.

    Similar to the http_persistent option recently implemented in hlsenc.c

    Signed-off-by : Aman Gupta <aman@tmm1.net>
    Signed-off-by : Anssi Hannula <anssi.hannula@iki.fi>

    • [DH] doc/demuxers.texi
    • [DH] libavformat/hls.c