
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (84)
-
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe 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, parMediaSPIP 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, parLe 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 YuChanged 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 06Add 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.webmNEON 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 regressionChange-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 -
Insert discontinuous ad video at the center of a HLS playlist
25 juin 2020, par A-Circle ZhangI'm trying to use "EXT-X-DISCONTINUITY" tag to add ad video at the center of another HLS video,


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


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



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


#EXTM3U
#EXT-X-TARGETDURATION:10
#EXT-X-VERSION:4
#EXT-X-MEDIA-SEQUENCE:0
#EXTINF:10.0,
movie001.ts
#EXTINF:10.0,
movie002.ts
#EXT-X-DISCONTINUITY

#EXTINF:10.0,
ad001.ts
#EXTINF:8.0,
ad002.ts
#EXT-X-DISCONTINUITY

#EXTINF:10.0,
movie003.ts
#EXTINF:10.0,
movie004.ts
...



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


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


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


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.