
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (84)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...)
Sur d’autres sites (4816)
-
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.


-
3 seconds latency while streaming with Wowza Server
18 mai 2015, par kaizen_labsI’m trying to develop a live streaming application with RTSP protocol.
On the PC with the Wowza Server, I execute the following command :
Code :
ffmpeg -f dshow -i video="Name_Of_My_Cam":audio="Name_Of_My_Microphone" -vcodec
h263p -f rtsp -muxdelay 0.1 rtsp://:1935/live/testAnd I’m trying to play this stream on a VideoView on my Samsung Galaxy Note 3 Lite. Here is the code :
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
VideoView vv = (VideoView) findViewById(R.id.videoView);
// Receive RTSP video from Wowza Server
vv.setVideoURI(Uri.parse("rtsp://:1935/live/test"));
vv.requestFocus();
vv.start();
}I managed to read the video and the sound but it makes 3 secondes (or more...) to start and I keep this delay during all the streaming. It is very annoying because I want to develop a call session.
Does anybody know how to reduce this delay ? Is it a Wowza issue ?