Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (102)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 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 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (11155)

  • Running Live streaming of local user using ffmpeg at Web plateform

    23 décembre 2019, par Sneha Makwana

    I am using below command to stream my live desktop screen.

    ffmpeg -f x11grab -r 1 -loglevel panic -s `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -i $DISPLAY -qscale 0 -f mpegts udp://192.168.3.151:1111

    udp ://192.168.3.151:1111 - this is my streaming URL

    I can see live streaming in the parole media player (in Linux platform), but I can’t see this in a cross-network (i.e from windows PC - in the same network)

    Is there any web platform so I can see my streaming from anywhere (either windows or linux) just using unique streaming URL or do I need to change my streaming command or method ?

    Any help is much appreciated

  • matroskadec : Add support for parsing live header files

    1er avril 2015, par Vignesh Venkatasubramanian
    matroskadec : Add support for parsing live header files
    

    This patch adds support for parsing live files (produced by
    - f webm_chunk) which contains only the headers but no packets. This
    is only used when using -f webm_dash_manifest. There will be a
    follow up patch which adds live support to WebM DASH Manifest
    muxer.

    Signed-off-by : Vignesh Venkatasubramanian <vigneshv@google.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/matroskadec.c
  • How to Configure nginx with stunnel to accept parameters for different FB Live Streams OR rtmps with FFMPEG

    15 septembre 2020, par Yogesh Agarwal

    I want to setup RTMPS and learned that only way around is by using nginx and stunnel. I have the setup and it works with just one configured key.

    &#xA;&#xA;

    I have several different keys and all are dynamic. A lot of different urls too.

    &#xA;&#xA;

    My Goal is to add a parameter or some way by which i can send the custom url to nginx and it can send to Stunnel, and it can read the custom url and forward the encrypted stream to that url.

    &#xA;&#xA;

    I am able to get everything done right via ngnix and stunnel but with preconfigured key only - But i want Dynamic key here.. just like a parameter where you can simply plug and send the stream.

    &#xA;&#xA;

    I even tried to set this way.

    &#xA;&#xA;

    push rtmp ://127.0.0.1:19350/rtmp/ ;

    &#xA;&#xA;

    so i can simple forward the stream to rtmp ://127.0.0.1:19350/rtmp/my-key and it takes my-key and forward the stream via stunnel to facebook. but i cannot get it work.

    &#xA;&#xA;

    I am about to bang my heads in walls. Kindly give me some pointers.. I am not sure how to do it via ffmpeg as it says it cannot find rtmps protocol.

    &#xA;&#xA;

    My Nginx Config :

    &#xA;&#xA;

    # RTMP configuration&#xA;rtmp {&#xA;    server {&#xA;        listen 1935; # Listen on standard RTMP port&#xA;        chunk_size 4000;&#xA; # This application is to accept incoming stream&#xA;        application live {&#xA;&#xA;&#xA;                live on; # Allows live input from above&#xA;                exec_push rtmp://127.0.0.1:19350/rtmp/$name;&#xA;                allow play 127.0.0.1;&#xA;                dash on;&#xA;                dash_path /var/tmp/dashme;&#xA;&#xA;                hls on; # Enable HTTP Live Streaming&#xA;                hls_cleanup on;&#xA;                hls_sync 100ms;&#xA;                hls_fragment 2s;&#xA;                hls_path /var/tmp/live/;&#xA;&#xA;&#xA;        }&#xA;

    &#xA;&#xA;

    and My Stunnel Config :

    &#xA;&#xA;

    setuid = nobody&#xA;setgid = nobody&#xA;pid=/tmp/stunnel.pid&#xA;output = /var/log/stunnel.log&#xA;;include = /etc/stunnel/conf.d&#xA;&#xA;[fb-live]&#xA;client = yes&#xA;accept = 127.0.0.1:19350&#xA;connect = live-api-s.facebook.com:443&#xA;;verifyChain = no&#xA;

    &#xA;