
Recherche avancée
Autres articles (80)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (10682)
-
How to Configure Nginx to serve Multiple Websites
4 septembre 2020, par lare77i use
nginx - rtmp
option to restream the m3u8 stream withffmpeg
and then play it on the Blog. I have following restream m3u8 from my server, which is playable perfetly in vlc player https://hls.tvoti.com/rtl2/playlist.m3u8
But i can not play it on the website see demo. I use following code inetc/nginx/sites-available
to show stream on the websites and is it not correct ? :

server {
 listen 80; 

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

 server_name tvoti.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;
 }
}

server {
 listen 80;
 server_name hls.tvoti.com;

 location / {
 add_header Cache-Control no-cache;

 set $cors_origin "https://rtllivestreamkostenlos.com";

 if ($http_origin ~* (^https?://([^/]+\.)*(tvoti|rtllivestreamkostenlos.com)\.com$)) {
 set $cors_origin "$http_origin";
 }

 add_header "X-Dbg" "$cors_origin" always;

 # Simple requests
 if ($request_method ~* "(GET|POST)") {
 add_header "Access-Control-Allow-Origin" "$cors_origin";
 }

 # Preflighted requests
 if ($request_method = OPTIONS ) {
 add_header "Access-Control-Allow-Origin" "$cors_origin";
 add_header "Access-Control-Allow-Methods" "GET, POST, OPTIONS, HEAD";
 add_header "Access-Control-Allow-Headers" "Authorization, Origin, X-Requested-With, Content-Type, Accept";
 return 200;
 }
 root /etc/nginx/hls;
 }

 location /supervisor {
 proxy_pass http://127.0.0.1:9999/;
 }

 #error_page 404 /404.html;

 # redirect server error pages to the static page /50x.html
 #
 error_page 500 502 503 504 /50x.html;
 location = /50x.html {
 root html;
 }

}



-
run exe on 1and 1 hosted site
28 avril 2014, par Paul LedgerI have a
ffmpeg.exe
file than runs on localhost but this doesn’t work on my web server. As it is 1and1 I can’t installffmpeg
as a extension. All this is supposed to do is create a thumbnail from the video in the same folder.<?php
$output = 'robot.jpg';
$input = 'robot.avi';
$ffmpegpath = "ffmpeg.exe";
if(file_exists($ffmpegpath)){
echo 'found the file <br />';
}
$size = '100x100';
$sec = '1';
$cmd = "ffmpeg.exe -i $input -an -ss $sec -s $size $output";
if(exec(escapeshellcmd($cmd))){
echo 'worked';
}else{
echo 'not worked';
}
?>Is there a way of getting this too work without having full control over the server. The site is hosted on a basic lunix package, this was set up by a friend. So there isn’t much control.
-
Starnge behavior of ffmpeg while opening rtsp with .sdp
7 avril 2014, par Pawel RutkaI have problem with reading rtsp stream(.sdp) over ffmpeg - is here anyone who is able to help me or have something incommon with this kind of troubles ?
url stream :
rtsp://192.168.1.7/moja.sdp
Here is a log with -loglevel debug , why is there 127.0.0.1 ?
[rtsp @ 0x9fef0a0] SDP:
v=0
o=- 1 1 IN IP4 127.0.0.1
s=IPCam
c=IN IP4 0.0.0.0
t=0 0
a=type:broadcast
m=video 0 RTP/AVP 96
a=rtpmap:96 MP4V-ES/90000
a=fmtp:96 profile-level-id=1;config=000001B001000001B58913000001000000012000C488800F514043C1463F
a=control:track0
m=audio 0 RTP/AVP 8
a=rtpmap:8 PCMA/8000
a=control:track1
[rtsp @ 0x9fef0a0] video codec set to: mpeg4
[rtsp @ 0x9fef0a0] audio codec set to: pcm_alaw
[rtsp @ 0x9fef0a0] audio samplerate set to: 8000
[rtsp @ 0x9fef0a0] audio channels set to: 1
[rtsp @ 0x9fef0a0] hello state=0
[rtsp @ 0x9fef0a0] UDP timeout, retrying with TCP
[rtsp @ 0x9fef0a0] method PAUSE failed: 501 Not Implemented