
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (46)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo 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, parPour 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 20133 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 -
Double speed playback with ffpmeg+nginx [closed]
25 novembre 2024, par chunjie yangI want to achieve 2x playback speed.
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 :
Transcoding :


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



playing video:


ffplay -fflags nobuffer http://localhost/hls/placeToM3u8.m3u8



local nginx :


# nginx.conf

worker_processes 1;

events {
 worker_connections 1024;
}

#rtmp {
# server {
# listen 1935;
# chunk_size 4096;
#
# application live {
# live on;
# record off;
# }
# }
#}

rtmp {
 server {
 listen 1935;
 chunk_size 4096;

 application live {
 live on;
 record off;
 hls on;
 hls_path /tmp/hls;
 #hls_cleanup on;
 hls_fragment 3s;
 hls_playlist_length 60s;
 }
 }
}


http {
 include mime.types;
 default_type application/octet-stream;

 sendfile on;
 keepalive_timeout 65;

 server {
 listen 80;
 server_name localhost;

 location / {
 root html;
 index index.html index.htm;
 }

 location /hls {
 types {
 application/vnd.apple.mpegurl m3u8;
 ./ ts;
 }
 root /tmp;
 add_header Cache-Control no-cache;
 }

 error_page 500 502 503 504 /50x.html;
 location = /50x.html {
 root html;
 }
 }
}



What's the proplem ?


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