Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (105)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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, par

    Talk 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, par

    MediaSPIP 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@… — Log

    Ne 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@… — Log

    Un 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 Bouchiba

    I'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&#xA;NAME                                    READY   STATUS    RESTARTS   AGE&#xA;pod/minio-5b85cc6cd6-nznwl              1/1     Running   1 (48m ago)   2d8h&#xA;pod/moon-7db8b9c76f-8jzzm               4/4     Running   0             34m&#xA;pod/moon-7db8b9c76f-kp78j               4/4     Running   0             34m&#xA;&#xA;NAME                     TYPE        CLUSTER-IP       EXTERNAL-IP   PORT(S)                                 AGE&#xA;service/minio            NodePort    10.99.231.25     <none>        9000:31147/TCP,9001:31125/TCP          2d8h&#xA;service/moon             NodePort    10.100.244.255   <none>        4444:30683/TCP,9090:32243/TCP,8080:32571/TCP   34m&#xA;&#xA;NAME                               READY   UP-TO-DATE   AVAILABLE   AGE&#xA;deployment.apps/minio              1/1     1            1           2d8h&#xA;deployment.apps/moon               2/2     2            2           34m&#xA;&#xA;NAME                                          DESIRED   CURRENT   READY   AGE&#xA;replicaset.apps/minio-5b85cc6cd6              1         1         1       2d8h&#xA;replicaset.apps/moon-7db8b9c76f               2         2         2       34m&#xA;</none></none>

    &#xA;

    The challenge :

    &#xA;

      &#xA;
    1. Moon dynamically creates browser pods when tests run
    2. &#xA;

    3. I need to stream the browser activity to an RTMP endpoint using ffmpeg
    4. &#xA;

    5. Moon was installed with Helm
    6. &#xA;

    &#xA;

    What I've tried to understand :

    &#xA;

      &#xA;
    • How to integrate ffmpeg with browser pods that are created on-demand
    • &#xA;

    • How to modify the Moon Helm chart to inject ffmpeg capabilities
    • &#xA;

    • How to capture display from the browser pods
    • &#xA;

    • How to stream to RTMP endpoints
    • &#xA;

    &#xA;

    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.

    &#xA;

    Thanks in advance !

    &#xA;