Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (44)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6692)

  • Revision 306319387b : acm_random : provide full range for Rand8() the gtest implementation used only r

    27 novembre 2014, par James Zern

    Changed Paths :
     Modify /test/acm_random.h


     Modify /test/lpf_8_test.cc



    acm_random : provide full range for Rand8()

    the gtest implementation used only returns values between 0 and 2^31-1

    + temporarily disable some tests in lpf_8_test which misbehave with the
    new range

    Change-Id : I8a026680c4b8c12dc14d4f24c33edb2315963114

  • Show video length in HLS player before all TS files are created

    14 novembre 2022, par WilliamTaco

    I have a spring-boot backend which on request (on demand) uses ffmpeg to create a m3u8 playlist with its ts files from a mp4 file. So basically my react frontend requests the index.m3u8 from the backend and if it doesnt already exist it creates it and then start serving it with its ts files. This causes the frontend HLS player to show the length of the video to the combined length of the generated chunks which gets longer as time goes on until its fully there. It totally makes sense but was wondering what the correct way of showing the full length in the player even though its not fully created yet ?

    


    Im using react-hls-player for playing the stream and spring-boot + a java ffmpeg wrapper to transcode the video.

    


    Might be thinking about this the wrong way so feel free to correct me if im in the wrong path !

    


  • Use value of video's length

    8 mars 2019, par Mai Huy

    i use this code to take video’s length :

    ffprobe -i output.mp4 -show_entries format=duration -v quiet -of csv="p=0"

    the result is like this :

    enter image description here

    how can i use that value for next command, example :

    if $lengthofoutput$ LSS 100 goto end

    Thank you,