Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (110)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • 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 (...)

  • 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 (...)

Sur d’autres sites (9605)

  • webmdashenc : parameter’ize minimumUpdatePeriod

    22 avril 2015, par Vignesh Venkatasubramanian
    webmdashenc : parameter’ize minimumUpdatePeriod
    

    Some players do not support setting minimumUpdatePeriod to zero.
    This patch adds a new parameter that will let the users set any
    value to this field. Also updates the test and the documentation.

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

    • [DH] doc/muxers.texi
    • [DH] libavformat/webmdashenc.c
    • [DH] tests/fate/vpx.mak
    • [DH] tests/ref/fate/webm-dash-manifest-live
  • lavf/dashenc : update bitrates on dash_write_trailer

    3 mars 2017, par Przemysław Sobala
    lavf/dashenc : update bitrates on dash_write_trailer
    

    Provides a way to change bandwidth parameter inside DASH manifest after a non-CBR H.264 encoding.
    Caller now is able to compute the bitrate by itself, after all packets have been written, and then set that value in AVFormatContext->streams->codecpar->bit_rate before calling av_write_trailer. As a result that value will be set in DASH manifest.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/dashenc.c
  • How to run ffmpeg on demand when someone opens my website with the player where a remote IP camera is displayed ?

    8 mai 2023, par alexiter

    I set up an nginx server to stream from an IP camera located elsewhere, I used a windows server because it was the one I had no use for (I usually prefer linux), I would need to know how I can make the ffmpeg command run only when someone opens the website where the player is located.

    &#xA;

    This is my nginx.conf server code :

    &#xA;

    worker_processes  1;&#xA;&#xA;error_log  logs/error.log info;&#xA;&#xA;events {&#xA;    worker_connections  1024;&#xA;}&#xA;rtmp {&#xA;    server {&#xA;        listen 1935;&#xA;        ping 30s;&#xA;        notify_method get;&#xA;        application live {&#xA;            live on;&#xA;            on_publish http://*******:8080/auth;&#xA;            dash on; &#xA;            dash_path tmp/dash;&#xA;            &#xA;            &#xA;        }&#xA;    }&#xA;}&#xA;http{&#xA;&#xA;   server {&#xA;        listen 8080;&#xA;        location /auth {&#xA;        if ($arg_psk = &#x27;*****&#x27;) {&#xA;    return 201;&#xA;    }&#xA;  return 404;&#xA;  }&#xA;}&#xA;   &#xA;   server {&#xA;        listen 8443 ssl;&#xA;        server_name stream.*****.com;&#xA;        &#xA;        ssl on;&#xA;        ssl_certificate C:/Certbot/live/stream.*****.com/fullchain.pem;&#xA;        ssl_certificate_key C:/Certbot/live/stream.****.com/privkey.pem;&#xA;        ssl_session_timeout 5m;&#xA;        charset utf-8;&#xA;        location /dash {&#xA;            root tmp;&#xA;            add_header Cache-Control no-cache;&#xA;        }&#xA;        location / {&#xA;            root www;&#xA;        }&#xA;        &#xA;&#xA;   }&#xA;}&#xA;&#xA;

    &#xA;

    The command that I use from the DOS console in windows is this :

    &#xA;

    ffmpeg -rtsp_transport tcp -i rtsp://*****:******@******.com:557/Streaming/Channels/101 -c copy -f flv -y -t 35 rtmp://********:1935/live/stream?psk=********&#xA;

    &#xA;

    Basically what I need is that ffmpeg is not running constantly, only when someone wants to view the video from the IP camera. (I have programmed ffmpeg to finish after 35 seconds, although I will put five minutes later)

    &#xA;