Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (79)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (9198)

  • Additionals : Brazilian CPF number

    11 novembre 2014, par gorork
    Additionals : Brazilian CPF number
    

    Closes #1310

  • How to get frame number of Blackdetect result ?

    16 janvier 2023, par JustNoobish619

    I am attempting to get the frame number of a black detect result. For instance, on Blackdetect I get two results that display a start time, end time and duration, how do I get the frame number of the start time ?

    


    FPS is 59.94

    


    Here's my command I'm working with to get my blackdetect :

    


    ffmpeg –i e1.mp4 –vf “blackdetect=d=0:pix_th=0.40,” –an –f null -


    


    It results in (the start time value is the frame's timestamp (ffmpeg wiki says))

    


    [blackdetect @ 000001f4d022c900] black_start:1.06773 black_end:1.08442 black_duration:0.0166833
[blackdetect @ 000001f4d022c900] black_start:1.41808 black_end:1.43477 black_duration:0.0166833


    


    When I append -n to it to hopefully display the frame number however, it spits out 3 entries of random frame numbers that aren't even remotely close to the blackdetect frame number really is

    


    ffmpeg –i e1.mov –vf “blackdetect=d=0:pix_th=0.40” -n –an –f null - 2>showinfo.log


    


    How can I get the frame number of the start time of blackdetect ?

    


  • avformat/webmdashenc : Avoid allocation for parsing a number

    18 mai 2020, par Andreas Rheinhardt
    avformat/webmdashenc : Avoid allocation for parsing a number
    

    In order to parse a number from a string, the WebM DASH manifest muxer
    would duplicate (via heap-allocation) the part of the string that
    contains the number, then read the number via atoi() and then free the
    duplicate again. This has been replaced by simply using strtoll() (which
    in contrast to atoi() has defined behaviour when the number is not
    representable).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/webmdashenc.c