Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (6)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

Sur d’autres sites (2461)

  • checkasm : updated tests for sw_scale

    13 août 2022, par Swinney, Jonathan
    checkasm : updated tests for sw_scale
    

    Change the reference to exactly match the C reference in swscale,
    instead of exactly matching the x86 SIMD implementations (which
    differs slightly). Test with and without SWS_ACCURATE_RND - if this
    flag isn't set, the output must match the C reference exactly,
    otherwise it is allowed to be off by 2.

    Mark a couple x86 functions as unavailable when SWS_ACCURATE_RND
    is set - apparently this discrepancy hasn't been noticed in other
    exact tests before.

    Add a test for yuv2plane1.

    Signed-off-by : Jonathan Swinney <jswinney@amazon.com>
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libswscale/x86/swscale.c
    • [DH] tests/checkasm/sw_scale.c
  • Is there any library in python or can we use FFMPEG to detect the appearance of the lines pattern in video that is shown in the image attached below ? [closed]

    21 septembre 2022, par Shreyas R

    Video defect appearing frame

    &#xA;

    Hi All,

    &#xA;

    I am trying to find a way to detect the appearance of this lines pattern embedded in the link below.&#xA;If I get any match of this pattern in a video, I need to record that particular timestamp of the video where I got the pattern match.

    &#xA;

    My idea is to take the image and compare it against the video to find for approximate match percentage. If I get it, then I record that particular timestamp within a .txt file.

    &#xA;

    Is there any better way to achieve this ?&#xA;I think we can use Python or FFMPEG video filters to get a solution for this.

    &#xA;

    It would really help if anyone can support with a solution. Thanks

    &#xA;

    Update :&#xA;I got a reference where they have proposed a solution similar to my concern.

    &#xA;

    https://aws.amazon.com/blogs/media/metfc-automatically-compare-two-videos-to-find-common-content/

    &#xA;

    So we can try to achieve some output from this solution.

    &#xA;

  • Why does ffmpeg hang indefinitely when composing videos ?

    11 octobre 2022, par Brendan Hill

    I am executing ffmpeg commands in a Java microservice (which runs dockerised in kubernetes in a temporary pod created by KEDA from an Amazon SQS queue... but unlikely to be relevant).

    &#xA;

    About 30% of the time, the ffmpeg process hangs indefinitely :

    &#xA;

    &#xA;/usr/local/bin/ffmpeg &#xA;     -i /tmp/transcode-3b928f5f-3cd9-4cd6-9175-b7c1621aa7ce13592236077853079159/person1.mkv &#xA;     -i /tmp/transcode-3b928f5f-3cd9-4cd6-9175-b7c1621aa7ce13592236077853079159/person2.mkv&#xA;     -filter_complex [0:v][1:v]hstack=inputs=2[v];[0:a]aresample=async=1000[0sync];[1:a]aresample=async=1000[1sync];[0sync][1sync]amix[a] &#xA;     -map [v] &#xA;     -map [a] &#xA;     -c:v libx264 &#xA;     -crf 18 &#xA;     -ac 2 &#xA;     -vsync 1 &#xA;     -r 25 &#xA;     -shortest /tmp/transcode-3b928f5f-3cd9-4cd6-9175-b7c1621aa7ce13592236077853079159/composed.mp4&#xA;&#xA;

    &#xA;

    This causes the Java code to wait indefinitely :

    &#xA;

    &#xA;        Process proc = Runtime.getRuntime().exec(cmd);&#xA;&#xA;        StreamConsumer outConsumer = new StreamConsumer(proc.getInputStream(), stdout);&#xA;        StreamConsumer errConsumer = new StreamConsumer(proc.getErrorStream(), stderr);&#xA;&#xA;        // execute data read/write in separate threads&#xA;        outExecutor.submit(outConsumer);&#xA;        errorExecutor.submit(errConsumer);&#xA;&#xA;        proc.waitFor() // Hangs indefinitely, with ~30% probability&#xA;&#xA;

    &#xA;

    It is not specifically about the video files because they generally work on retry (with similar 30% failure probability so sometimes several retries are necessary). Of course, since it hangs indefinitely instead of exiting with failure, it has to wait hours before we risk another retry.

    &#xA;

      &#xA;
    1. Why is ffmpeg hanging indefinitely and how to fix ?

      &#xA;

    2. &#xA;

    3. Can I get ffmpeg to fail early instead of hanging indefinitely (so I can trigger retry immediately) ?

      &#xA;

    4. &#xA;

    5. I see many questions and posts about ffmpeg hanging indefinitely. Is ffmpeg inherently unstable ?

      &#xA;

    6. &#xA;

    &#xA;