Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (92)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (12094)

  • Revision 6796 : On sort le formulaire d’embed du player pour un plugin à part Petite ...

    9 juillet 2012, par kent1 — Log

    On sort le formulaire d’embed du player pour un plugin à part
    Petite modif CSS

  • Revision 33199783ea : Added tests for high bit depth quantize functions This was originally part of c

    4 juin 2015, par Julia Robson

    Changed Paths :
     Add /test/quantize_test.cc


     Modify /test/test.mk



    Added tests for high bit depth quantize functions

    This was originally part of change-id:Idef18f90b111a0d0c9546543d3347e551908fd78
    but the rest of that patch has previously been incorporated into nextgen
    without these tests.

    Change-Id : I6ac491ed1cfc153e0ed3cb999c76feac9d5e74e3

  • The phenomenon of missing video data for the first part 1 to 2 seconds in streaming

    22 novembre 2022, par 양관식

    The phenomenon of missing video data for the first part (1 to 2 seconds) in streaming - ffmpeg
(specific hls live streaming, intermittent occurrence)
( I'm using it to check the frame (fps) )

    


    [root@ ]# ffmpeg -i http://live_streaming_url/PATH/definst/sample.stream/playlist.m3u8 -t 1 -f null -
frame= 5 fps=0.0 q=-0.0 Lsize=N/A time=00:00:01.00 bitrate=N/A speed=23.3x
video:3kB audio:188kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : unknown

    



    


    When monitoring is performed by setting it to -t 10 (playtime), about 1 second of the first part is omitted, and only the frames for the next 9 seconds are added up
There is a phenomenon that is measured.

    


    [root@streaming_monitoring_test ~]# ffmpeg -i http://live_streaming_url/PATH/_definst_/sample.stream/playlist.m3u8 -t 10 -f null -
ffmpeg version 4.4 Copyright (c) 2000-2021 the FFmpeg developers
  built with gcc 7 (GCC)
  configuration: --enable-demuxer=dash --enable-libxml2
**frame=  277 fps=134 q=-0.0 Lsize=N/A time=00:00:10.00 bitrate=N/A speed=4.84x    
video:145kB audio:1875kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown**

------------------------------------------------------------------------------------------------------



    


    The reason for missing video data in the front part is under investigation
As a solution, the problem seems to be resolved when monitoring is carried out by adjusting the playback start time (-ss).

    


    ffmpeg -i http://live_streaming_url/PATH/definst/sample.stream/playlist.m3u8 -ss 10 -t 1 -f null –
frame= 29 fps=7.2 q=-0.0 Lsize=N/A time=00:00:01.00 bitrate=N/A speed=0.249x
    
video:15kB audio:188kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : unknown

    



    


    but.... Why is the video data missing for the first part (1 to 2 seconds) checked ?

    


    thankyou...