
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (69)
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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" (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (6435)
-
How to block other IP to use my rtmp-ffmpeg restreamed links ?
13 mai 2020, par lare77I restream the streams with rtmp-ffmpeg technique, in
etc/nginx/sites-available
i allow my domains to show my stream just like so :


server {
 listen 80; 

 #root /var/www/html/; 
 #index index.php index.html index.htm;

 server_name example.com; 

 location / {
 proxy_redirect off; 
 proxy_set_header X-Real-IP $remote_addr;
 proxy_set_header X-Forwarded-For $remote_addr;
 proxy_set_header X-Forwarded-Proto $scheme;
 proxy_set_header Host $host;
 proxy_pass http://127.0.0.1:8080;
 }

 location ~ /\.ht {
 deny all;
 }
}




But everyone can play my restreamed links/m3u8 in vlc or another desktop player, the links can be also be restreamed again in
xtream code
or in otherrtmp-ffmpeg
scripts. Myrtmp-ffmpeg
look like so :


[program:test]
autorestart=true
command=/usr/bin/ffmpeg -hide_banner -i https://example.com/playlist.m3u8 -c copy -f hls -hls_time 4 -hls_flags append_list+delete_segments -hls_list_size 6 -hls_segment_filename '/etc/nginx/hls/test/file%%03d.ts' /etc/nginx/hls/test/playlist.m3u8




How can I block other people to restream my streams ?


-
Revision a4fd58a761 : Refactor tx_block_rd_b() to compute per block rd cost This commit makes the tx_
12 juin 2015, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Refactor tx_block_rd_b() to compute per block rd costThis commit makes the tx_block_rd_b() compute the rate and
distortion cost per transform block, instead of accumulating these
costs.Change-Id : Iff5adc4c27cc54f8e6eb3abd95f8d88ba00f462c
-
lavc/vc1dsp : match C block layout in inv_trans_4x4_rvv
10 juin 2024, par Rémi Denis-Courmontlavc/vc1dsp : match C block layout in inv_trans_4x4_rvv
Although checkasm does not verify this, the decoder requires that the
transform updates the input block exactly like the C code does.This fixes vc1-ism, vc1_ilaced_twomv, vc1_sa00040, vc1_sa10091,
vc1_sa10143, vc1_sa20021, vc1test_smm0005 and wmv3-drm-dec tests.