Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (84)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

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

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

Sur d’autres sites (13816)

  • Live stream failed on Youtube

    20 septembre 2023, par kuldeep chopra

    We are currently running an AWS container that utilizes FFmpeg for live streaming while concurrently saving the stream as an MP4 file. However, we encountered an issue during a recent live stream session that was functioning correctly until approximately 13 minutes in, at which point FFmpeg reported the following error logs :

    


    ffmpeg [flv @ 0x555c4bdfe680] Failed to update header with correct duration.
2023-09-07T23:06:38.490+05:30 [flv @ 0x555c4bdfe680] Failed to update header with correct filesize.
2023-09-07T23:06:38.491+05:30 failed => rtmp://a.rtmp.youtube.com/live2/key......
2023-09-07T23:06:38.491+05:30 ffmpeg [tee @ 0x555c48843700] Slave muxer #1 failed: Broken pipe, continuing with 1/2 slaves.


    


    It's worth noting that we have conducted hundreds of live streams on YouTube without encountering this error before ; this is the first occurrence of such an issue.

    


    We would greatly appreciate it if you could investigate and provide insights into the underlying problem causing these error messages.

    


  • avcodec/audiotoolboxenc : return external error if encode failed

    24 juin 2022, par Steven Liu
    avcodec/audiotoolboxenc : return external error if encode failed
    

    because the AudioConverterFillComplexBuffer can return 0 or 1 if
    success.
    so set the ret to 0 it AudioConverterFillComplexBuffer success and
    return ret value for success or return AVERROR_EXTERNAL when
    AudioConverterFillComplexBuffer failed.
    BTW change the error message log level from warning to error.

    Reviewed-by : Zhao Zhili <zhilizhao@tencent.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavcodec/audiotoolboxenc.c
  • Is there any way to trim YouTube video without downloading it to local machine ?

    12 août 2020, par Sonu Bamniya

    I am creating an app to trim video where a user either can upload the video file or can paste YouTube URL.&#xA;I am able to make the trimmer work for upload video using FFmpeg, but for YouTube URL, firstly I need to download the video to the local machine and then trim it using FFmpeg.

    &#xA;&#xA;

    I am using youtube-dl NodeJS library to save the video file to locally, but the issue is as I am allowing the user to download only 15Sec video no more than that, and I have applied validation of 60m long video, yet when I get 1080p video there are two issues.

    &#xA;&#xA;

    1. There is no audio in the 1080p video.&#xA;

    &#xA;&#xA;

    and

    &#xA;&#xA;

    2. The video is taking too long to download locally and the process is taking almost 7-8mins to complete.&#xA;

    &#xA;&#xA;

    For the first one, I can get the audio and video separately and then merge both of them in the video, but the second one is where I am stacked.

    &#xA;&#xA;

    I have added a time log I can see the trimming is taking only about 3-4 seconds, but the downloading is taking too long.

    &#xA;&#xA;

    Is there any way to make it work faster ? Or, Is there any way I can download only that part of the video, not the full video, in any technology.

    &#xA;&#xA;

    I am open to using any technology until it is working faster than my current implementation.

    &#xA;&#xA;

    If this is something related to server configuration, please suggest which one would work better.

    &#xA;