Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (94)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (6447)

  • avcodec/htmlsubtitles : Fixes denial of service due to use of sscanf in inner loop...

    6 février 2019, par Kevin Backhouse via RT
    avcodec/htmlsubtitles : Fixes denial of service due to use of sscanf in inner loop for tag scaning
    

    Fixes : [Semmle Security Reports #19438]
    Fixes : dos_sscanf1.mkv

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/htmlsubtitles.c
  • Extract number of frames without using shell-True

    26 mars 2022, par petrush

    I have the following code that extract number of frames from video :

    &#xA;

    filename = "test.mp4"&#xA;video_path = os.path.join(os.getcwd(), filename)&#xA;with open(video_path, "rb") as file:&#xA;    cmd = f&#x27;ffmpeg -i {video_path} -r 10 -q:v 3 -s 1x1 -f image2 -update 1 - >/dev/null&#x27;&#xA;    proc = sp.Popen(cmd, stdout=sp.PIPE, stderr=sp.PIPE, shell=True)&#xA;    (stdout, stderr) = proc.communicate()&#xA;&#xA;    # i.e: &#x27;frame= 2062 fps=966 q=3.0 Lsize=N/A time=00:10:34.46 bitrate=N/A dup=1049 drop=3563 speed= 297x&#x27;&#xA;    decoded = stderr.decode(&#x27;utf-8&#x27;)&#xA;    frame_count_line = decoded.splitlines()[-2]&#xA;    m = FRAME_COUNT_REGEX.search(frame_count_line)&#xA;    if m:&#xA;        print(int(m.groups()[0]))&#xA;

    &#xA;

    but because of security reasons I want to remove shell=True parameter.&#xA;Unfortunately after that the code above throws :

    &#xA;

    FileNotFoundError: [Errno 2] No such file or directory&#xA;

    &#xA;

    Please help to fix it

    &#xA;

  • Revision 11abab356e : Refactor inter mode rate-distortion search This commit separates the rate-disto

    28 septembre 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encodemb.h


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_rdopt.h



    Refactor inter mode rate-distortion search

    This commit separates the rate-distortion optimization loop of
    superblocks from that of sub8x8 blocks. This allows better design
    rate-distortion optimization search loop for each setting. It also
    removes the use of SPLITMV and I4X4_PRED therein.

    No performance change in speed 0 settings. For bus@CIF at 2000kbps,
    the speed 1 runtime goes from 48009ms to 43894ms (about 10% faster).
    The overall compression performance on derf changed by -0.021%.

    Speed 2 runtime goes from 27114ms to 28700ms (6% slower), while the
    overall coding efficiency goes up by 1.629% for derf, 1.236% for yt.

    Change-Id : Ie6bdfa0a370148dd60bd800961077f7e97e67dd4