Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (92)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

Sur d’autres sites (6914)

  • Understanding ffmpeg -benchmark results

    6 septembre 2022, par Ivy Growing

    Adding -benchmark flag to ffmpeg command resutls with addition of following 2 lines in the shell output :

    


    bench: utime=10.125s stime=4.234s rtime=5.606s
bench: maxrss=110080kB


    


    The maxrss serves to indicate the maximum RAM used during the ffmpeg execution. The utime, stime, rtime indicate accordingly :

    


      

    • user time ;
    • 


    • system time ;
    • 


    • real time.
    • 


    


    I tried to understand the meaning of these times from the source code and failed. Please, help.

    


      

    1. Which of these times indicate how much time was human waiting while the ffpmeg was processing the video ?
    2. 


    3. Can this time be seen directly or it's a combination/calculation of these 3 parameters ?
    4. 


    5. How it can be for certain videos utime > rtime and for others utime < rtime ?
    6. 


    


  • ffmpeg wav output length not correct or consistant

    3 avril 2013, par user2241026

    Trying to run a very simple command via php a exec() command. All my other commands are working fine except for a simple audio trim that I am trying to run.

    The user posts a file, and a start time (in mm:ss.xxx format). and ffmpeg is supposed to trim the file to 5 seconds after the start time. The problem is, some times it works, but other times the audio file is 6 or even 7 seconds long. I can't figure out the problem.

    Oh, I'm aware of the lack of sanitizing in the code right now.

    here is the PHP code

    //user entered number for example "01:30"
    //$newFilePath1 is the location of the file, no issue there
    $starttime = $_POST["starttime"];

    $makeWav1 = "ffmpeg -y -ss 00:".$starttime." -i \"$newFilePath1\" -acodec pcm_s16le -sample_rate 48000 -t 00:00:05.000 temp/audiocut1.wav";

    exec($makeWav1);

    Thank you for the help !!

  • checkasm/sw_range_convert : test all supported bit depths

    18 septembre 2024, par Ramiro Polla
    checkasm/sw_range_convert : test all supported bit depths
    

    This commit also reduces the number of times ff_sws_init_scale() gets
    called (only once per bit depth), and the number of times randomize_buffers()
    gets called (only if the function must be checked).

    Benchmarks are only performed on bit depths 8 and 16 (since they are
    different functions, and not only different constants).

    • [DH] tests/checkasm/sw_range_convert.c