Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (46)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

Sur d’autres sites (7527)

  • x86inc : Speed up assembling with Yasm

    19 janvier 2014, par Loren Merritt
    x86inc : Speed up assembling with Yasm
    

    Work around Yasm’s inefficiency with handling large numbers of variables
    in the global scope.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] libavutil/x86/x86inc.asm
  • 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;

  • avformat/avidec : Speed up keyframe detection code

    22 avril 2014, par Michael Niedermayer
    avformat/avidec : Speed up keyframe detection code
    

    Fixes Ticket3531

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/avidec.c