
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (53)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (8103)
-
Video recording solution for angular and spring boot app [closed]
24 juin 2022, par Shinu MathewI am trying to build an app with angular on the front end which should be able to record video using users webcam and send data to a spring boot backend microservice in parts. I have tried using client libraries like video-recordjs but I face a lot of issues when it comes to cross platform and devices. I am looking for a reliable solution which would help me to accomplish this and work well on all browsers and devices. Any suggestion or help would really be appreciated.


-
ffmpeg native player started from spring application freezes
21 mars 2018, par Jemo MgebrishviliI have a spring-mvc project, from browser on button click I’m starting ffmpeg player (ffplay) for video/audio streaming, the problem is that, when player window is opened after the button click, it freezes and not responds, it shows one frame and stops frame updates but has audio voice, also I can’t move it and change player position, if I start the ffplay from cmd (outside from my app) it works fine.
this is how I am starting the playerThread({
val cmd = arrayOf("pathToTheffplay", "-loglevel", "verbose", "rtmp://localhost:portNum/streamName")
val pb = ProcessBuilder(*cmd)
pb.start()
println("player started")
}).start()what I am missing ? Any advice ?
-
Spring Boot serving an m3u8 playlist
13 octobre 2023, par Ph33lyI'm trying to serve an m3u8 playlist through Spring Boot. I have a running ffmpeg process that is transcoding a multicast in real-time and sending the files to /src/resources/public/output.m3u8. I see the playlist updating and the new .ts files being generated correctly however when trying to watch the stream in a video player, it only plays a certain amount of video. Is there a way to properly serve up a running playlist in Java instead of serving it statically ?



EDIT : When starting a basic http server with python
python3 -m http.server
, I'm able to view the stream perfectly fine. Is there a Spring Boot way to accomplish the same task ?