Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (62)

  • 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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (9976)

  • Revert "mov : Double-check that alias path is not an absolute path"

    10 juillet 2015, par Vittorio Giovara
    Revert "mov : Double-check that alias path is not an absolute path"
    

    This reverts commit 9286de045968ad456d4e752651eec22de5e89060.
    The change broke support for legit absolute file paths.

    Reported-by : Maksym Veremeyenko <verem@m1stereo.tv>.

    • [DBH] libavformat/mov.c
  • avcodec/ffv1enc : replace 3 double precision log2() by 1 single precision log2()

    30 mars, par Michael Niedermayer
    avcodec/ffv1enc : replace 3 double precision log2() by 1 single precision log2()
    

    This makes the remap finding heuristic much faster

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

    • [DH] libavcodec/ffv1enc.c
  • Double speed playback with ffpmeg+nginx [closed]

    25 novembre 2024, par chunjie yang

    I want to achieve 2x playback speed.&#xA;There is a streaming service A, and I want to set up a streaming server B locally to obtain streams from A and play them at 2x speed. In order to achieve this function, first use the command to make server A push the stream at twice the speed. After the local server B removes the stream, use the following command to transcode and play it. However, it is found that the stream is too laggy. I don't know why. The command is as follows :&#xA;Transcoding :

    &#xA;

    ffmpeg -re -i &#x27;http://ServerAPlaybackUrl&#x27; \&#xA;    -filter_complex "[0:v]setpts=0.5*PTS[v]" -map "[v]" \&#xA;    -r 25 \&#xA;    -c:v libx264 \&#xA;    -c:a aac \&#xA;    -b:a 128k \&#xA;    -maxrate 3000k \&#xA;    -bufsize 6000k \&#xA;    -pix_fmt yuv420p \&#xA;    -g 50 \&#xA;    -f flv \&#xA;    -threads 4 \&#xA;    rtmp://NginxUrl&#xA;

    &#xA;

    playing video:

    &#xA;

    ffplay -fflags nobuffer http://localhost/hls/placeToM3u8.m3u8&#xA;

    &#xA;

    local nginx :

    &#xA;

    # nginx.conf&#xA;&#xA;worker_processes  1;&#xA;&#xA;events {&#xA;    worker_connections  1024;&#xA;}&#xA;&#xA;#rtmp {&#xA;#    server {&#xA;#        listen 1935;&#xA;#        chunk_size 4096;&#xA;#&#xA;#        application live {&#xA;#            live on;&#xA;#            record off;&#xA;#        }&#xA;#    }&#xA;#}&#xA;&#xA;rtmp {&#xA;    server {&#xA;        listen 1935;&#xA;        chunk_size 4096;&#xA;&#xA;        application live {&#xA;            live on;&#xA;            record off;&#xA;            hls on;&#xA;            hls_path /tmp/hls;&#xA;            #hls_cleanup on;&#xA;            hls_fragment 3s;&#xA;            hls_playlist_length 60s;&#xA;        }&#xA;    }&#xA;}&#xA;&#xA;&#xA;http {&#xA;    include       mime.types;&#xA;    default_type  application/octet-stream;&#xA;&#xA;    sendfile        on;&#xA;    keepalive_timeout  65;&#xA;&#xA;    server {&#xA;        listen       80;&#xA;        server_name  localhost;&#xA;&#xA;        location / {&#xA;            root   html;&#xA;            index  index.html index.htm;&#xA;        }&#xA;&#xA;        location /hls {&#xA;            types {&#xA;                application/vnd.apple.mpegurl m3u8;&#xA;                ./ ts;&#xA;            }&#xA;            root /tmp;&#xA;            add_header Cache-Control no-cache;&#xA;        }&#xA;&#xA;        error_page   500 502 503 504  /50x.html;&#xA;        location = /50x.html {&#xA;            root   html;&#xA;        }&#xA;    }&#xA;}&#xA;

    &#xA;

    What's the proplem ?

    &#xA;