Recherche avancée

Médias (0)

Mot : - Tags -/logo

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

Autres articles (103)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11741)

  • MAINTAINERS : Add myself as maintainer for VAAPI encoders

    6 juin 2016, par Mark Thompson
    MAINTAINERS : Add myself as maintainer for VAAPI encoders
    

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

    • [DH] MAINTAINERS
  • MAINTAINERS : Add myself as maintainer for matroska*

    17 mars 2020, par Andreas Rheinhardt
    MAINTAINERS : Add myself as maintainer for matroska*
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] MAINTAINERS
  • nginx ffmpeg hls streaming filling up my hard drive

    19 avril 2020, par stefki

    I am using nginx and ffmpeg on my windows 10 machine. Everything works ok, but my hard drive keep filling up .&#xA;These are my command lines

    &#xA;&#xA;

    ffmpeg -i "http://192.168.1.2:9566/history/" -copytb 1 -filter_complex "[0:v][0:s:1]overlay[v];[v]pp=fd,scale=720:-1[y]" -map [y] -map 0:1 -s 720x576 -pix_fmt yuv420p -b:v 1800k -maxrate 2000k -bufsize 3000k -c:v libx264 -strict 2 -profile:v "main" -preset superfast  -acodec aac -ac 2 -ar 44100 -ab 128k -vsync 1 -async 1 -f hls -hls_time 5 -hls_list_size 6 -segment_wrap 10 -hls_flags delete_segments "D:\media\hls\history.m3u"&#xA;

    &#xA;&#xA;

    The HLS segments goes to D :\media\hls&#xA;This drive D : is ok, it's not filling up.

    &#xA;&#xA;

    But the C :\ partition is filling up all the time.

    &#xA;&#xA;

    the ffmpeg.exe is executed from Folder :&#xA;C :\Users\Stefki\Desktop\ffmpeg-latest-win64-static (1)\ffmpeg-latest-win64-static\bin

    &#xA;&#xA;

    VLC play link http://192.168.2.254/hls/history.m3u OK

    &#xA;&#xA;

    Thank you to all, I hope any experienced dev can help me :)

    &#xA;&#xA;

    This is my nginx config file

    &#xA;&#xA;

    worker_processes 1 ;

    &#xA;&#xA;

    events {&#xA;    worker_connections  1024;&#xA;}&#xA;&#xA;&#xA;http {&#xA;    include       mime.types;&#xA;    default_type  application/octet-stream;&#xA;&#xA;    #log_format  main  &#x27;$remote_addr - $remote_user [$time_local] "$request" &#x27;&#xA;    #                  &#x27;$status $body_bytes_sent "$http_referer" &#x27;&#xA;    #                  &#x27;"$http_user_agent" "$http_x_forwarded_for"&#x27;;&#xA;&#xA;    #access_log  logs/access.log  main;&#xA;&#xA;    sendfile        on;&#xA;    #tcp_nopush     on;&#xA;&#xA;    #keepalive_timeout  0;&#xA;    keepalive_timeout  65;&#xA;&#xA;    #gzip  on;&#xA;&#xA;    server {&#xA;        listen       80;&#xA;        server_name  localhost;&#xA;&#xA;        #charset koi8-r;&#xA;&#xA;        #access_log  logs/host.access.log  main;&#xA;&#xA;        location / {&#xA;            root   html;&#xA;            index  index.html index.htm;&#xA;        }&#xA;         location /hls {&#xA;            types {&#xA;                application/vnd.apple.mpegurl m3u8;&#xA;                video/mp2t ts;&#xA;            }&#xA;            root D:/media;&#xA;            add_header Cache-Control no-cache;&#xA;            }&#xA;

    &#xA;