
Recherche avancée
Médias (33)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
#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
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (105)
-
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 -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (9643)
-
Revision 68728 : Ne pas envoyer de notification pour les traitements manuels. Correction ...
5 janvier 2013, par eric@… — LogNe pas envoyer de notification pour les traitements manuels.
Correction d’un bug dans le formulaire de sauvegarde manuel (#CONFIG au lieu de #ENV).
Mise au point d’un item de langue.
Suppression de l’action saveauto inutilisée. -
Revision 39012 : Un champ "infos" où on serialize les timestamp de début et fin d’encodage ...
25 juin 2010, par kent1@… — LogUn champ "infos" où on serialize les timestamp de début et fin d’encodage et le log des erreurs s’il y a lieu
On ne lance jamais plusieurs encodages en même temps -
How to stream from dynamically created Selenium Moon browser pods to RTMP using ffmpeg ?
5 avril, par Ahmed Seddik BouchibaI'm running Selenium Moon (from Aerokube) in my minikube cluster for automated browser testing, and I need to stream the browser sessions to an RTMP endpoint. Here's my current setup :


$ kubectl get all -n my-namespace
NAME READY STATUS RESTARTS AGE
pod/minio-5b85cc6cd6-nznwl 1/1 Running 1 (48m ago) 2d8h
pod/moon-7db8b9c76f-8jzzm 4/4 Running 0 34m
pod/moon-7db8b9c76f-kp78j 4/4 Running 0 34m

NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
service/minio NodePort 10.99.231.25 <none> 9000:31147/TCP,9001:31125/TCP 2d8h
service/moon NodePort 10.100.244.255 <none> 4444:30683/TCP,9090:32243/TCP,8080:32571/TCP 34m

NAME READY UP-TO-DATE AVAILABLE AGE
deployment.apps/minio 1/1 1 1 2d8h
deployment.apps/moon 2/2 2 2 34m

NAME DESIRED CURRENT READY AGE
replicaset.apps/minio-5b85cc6cd6 1 1 1 2d8h
replicaset.apps/moon-7db8b9c76f 2 2 2 34m
</none></none>


The challenge :


- 

- Moon dynamically creates browser pods when tests run
- I need to stream the browser activity to an RTMP endpoint using ffmpeg
- Moon was installed with Helm








What I've tried to understand :


- 

- How to integrate ffmpeg with browser pods that are created on-demand
- How to modify the Moon Helm chart to inject ffmpeg capabilities
- How to capture display from the browser pods
- How to stream to RTMP endpoints










Has anyone implemented something similar ? I'm looking for a solution that works with the dynamic nature of Moon's browser pod creation. Any examples, Helm chart modifications, or approaches would be greatly appreciated.


Thanks in advance !