Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (52)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

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

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

Sur d’autres sites (6412)

  • avcodec/hevc_ps : fix range of num_tile_{columns,rows}_minus1

    30 juin 2019, par James Almer
    avcodec/hevc_ps : fix range of num_tile_columns,rows_minus1
    

    From 7.4.3.3.1 :

    num_tile_columns_minus1 shall be in the range of 0 to PicWidthInCtbsY - 1, inclusive.
    num_tile_rows_minus1 shall be in the range of 0 to PicHeightInCtbsY - 1, inclusive.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/hevc_ps.c
  • 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,

  • 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 ?

    &#xA;

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

    &#xA;

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

    &#xA;