Recherche avancée

Médias (91)

Autres articles (84)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4545)

  • Revision 81ad047ee5 : VP8 for ARMv8 by using NEON intrinsics 06 Add idct_dequant_full_2x_neon.c - idc

    17 décembre 2013, par James Yu

    Changed Paths :
     Delete /vp8/common/arm/neon/idct_dequant_full_2x_neon.asm


     Add /vp8/common/arm/neon/idct_dequant_full_2x_neon.c


     Modify /vp8/vp8_common.mk



    VP8 for ARMv8 by using NEON intrinsics 06

    Add idct_dequant_full_2x_neon.c
    - idct_dequant_full_2x_neon

    ==== Summary of apply VP8 decode patch series ====
    Benchmark on Samsung Chromebook, Cortex-A15, 1.7GHz, Dual core
    Toolchain : linaro-1.13.1-4.8-2014.01
    Compile argument : CROSS=arm-linux-gnueabihf- ../libvpx/configure
    —target=armv7-linux-gcc —prefix=$HOME/out
    —enable-shared —cpu=cortex-a7
    Test argument : vpxdec —summary —noblit ./tears_of_steel_1080p.webm

    NEON assembly 46.68 (fps)
    Apply patch 06 46.65, -0.03
    Apply patch 07 46.86, +0.21
    Apply patch 08 46.58, -0.28
    Apply patch 09 46.57, -0.01
    Apply patch 10 46.51, -0.06
    Apply patch 11 46.13, -0.38
    Apply patch 12 45.42, -0.71
    Apply patch 13 46.06, +0.64
    Apply patch 14 45.19, -0.87
    Apply patch 15 45.93, +0.74
    Apply patch 16 45.48, -0.45
    Apply patch 17 45.84, +0.36
    Apply patch 18 45.91, +0.07 <= With all NEON intrinsics patches
    Total -0.77 fps, 1.65% performance regression

    Change-Id : I77bfc9eaccfb97b8d401e949ceff8795e26ca6b7
    Signed-off-by : James Yu <james.yu@linaro.org>

  • tests/ffserver-regression.sh : give wget a timeout and prevent retries

    28 novembre 2016, par Michael Niedermayer
    tests/ffserver-regression.sh : give wget a timeout and prevent retries
    

    Reviewed-by : "Reynaldo H. Verdejo Pinochet" <reynaldo@osg.samsung.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/ffserver-regression.sh
  • Insert discontinuous ad video at the center of a HLS playlist

    25 juin 2020, par A-Circle Zhang

    I'm trying to use "EXT-X-DISCONTINUITY" tag to add ad video at the center of another HLS video,

    &#xA;

    It should be very easy if it is added to the beginning/end of the video, just like :

    &#xA;

    #EXTM3U&#xA;#EXT-X-TARGETDURATION:10&#xA;#EXT-X-VERSION:4&#xA;#EXT-X-MEDIA-SEQUENCE:0&#xA;#EXT-X-PLAYLIST-TYPE:VOD&#xA;#EXTINF:10.0,&#xA;ad001.ts&#xA;#EXTINF:8.0,&#xA;ad002.ts&#xA;#EXT-X-DISCONTINUITY&#xA;#EXTINF:10.0,&#xA;movie001.ts&#xA;#EXTINF:10.0,&#xA;movie002.ts&#xA;...&#xA;

    &#xA;

    But now I'm trying to add to the center of the video, like :

    &#xA;

    #EXTM3U&#xA;#EXT-X-TARGETDURATION:10&#xA;#EXT-X-VERSION:4&#xA;#EXT-X-MEDIA-SEQUENCE:0&#xA;#EXTINF:10.0,&#xA;movie001.ts&#xA;#EXTINF:10.0,&#xA;movie002.ts&#xA;#EXT-X-DISCONTINUITY&#xA;&#xA;#EXTINF:10.0,&#xA;ad001.ts&#xA;#EXTINF:8.0,&#xA;ad002.ts&#xA;#EXT-X-DISCONTINUITY&#xA;&#xA;#EXTINF:10.0,&#xA;movie003.ts&#xA;#EXTINF:10.0,&#xA;movie004.ts&#xA;...&#xA;

    &#xA;

    The gap between movie002.ts and ad001.ts, plays very smoothly, that's ok,

    &#xA;

    but the the gap between ad002.ts and movie003.ts, will get stuck, or directly fast forward and missing 2 3 seconds of video.

    &#xA;

    So, is there any solution to this without retranscoing whole video ? Thank you...

    &#xA;

    Edit : I found Hls.js support this very well in web browsers, but native player of some mobile browsers (like samsung internet), some desktop player (like PotPlayer) have this problem.

    &#xA;