Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (65)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (8319)

  • Does ffmpeg open a connection to the console to print certain error messages ? How do I send that to my log file instead ?

    29 juin 2021, par Alexis Wilke

    I have a unit test which runs ffmpeg and sends any output messages to a log file like so :

    


    char * cmd = "ffmpeg -hide_banner -y -i audio.wav"
                   " -codec ac3_fixed -f ffm output.snd"
                   " >>ffmpeg-test.log 2>&1";
system(cmd);


    


    What I find very surprising is that I still get some output error message in my console like so :

    


    


    [ffm @ 0x7fe460001ac0] resyncing
[ffm @ 0x7fe460001ac0] cannot find FFM syncword

    


    


    (colorful output too !)

    


    I would imagine that what is happening is that the ffmpeg tool opens a file handle to the console and then writes to it. Probably something like so :

    


    FILE *console(fopen("/dev/console", "w");
fprintf(console, "[ffm @ ...] resyncing\n");
...etc...


    


    What I'm wondering is, would there be a way for me to force ffmpeg to also redirect that output to my log file ?

    


    Note : error handling not shown in samples above as a simplification.

    


  • Is there any open source HLS segmenter that supports Apple Low Latency HLS ? [closed]

    13 juillet 2021, par Marcus Wichelmann

    Currently I'm using FFmpeg to produce a HLS segmented stream to deliver some live content to our users. Now I'd like to reduce latency by using Apples latest Low Latency Standard which is unfortunately quite complex and the only standard that is supported on Apple devices.

    


    But I have not yet found any open source implementation of this. Do you know of any project that works on implementing the whole Apple LL-HLS standard including the latest #EXT-X-PRELOAD-HINT additions ?

    


    What do you use as segmenter for your low latency ABR streams ?

    


  • avcodec/acelp_vectors : Add missing brackets

    6 août 2021, par Andreas Rheinhardt
    avcodec/acelp_vectors : Add missing brackets
    

    Before 3793caa5e2d1d16ed45771574b2ffc932497cfcf the code was
    "if (...) do ... while (...) ;". After said commit this became
    "if (...) av_assert0(...) ; do ... while (...) ;", i.e. the loop
    is always executed. This commit changes the logic to what it was before
    said commit. Notice that the condition is always true in FATE, so no
    changes are necessary there.

    This fixes a -Wmisleading-indentation warning from GCC 11.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/acelp_vectors.c