
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (61)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
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" (...)
Sur d’autres sites (10241)
-
nutdec : reject negative value_len in read_sm_data
19 décembre 2015, par Andreas Cadhalpunnutdec : reject negative value_len in read_sm_data
If it is negative, it can cause the byte position to move backwards in
avio_skip, which in turn makes sm_size negative and thus size larger
than the size of the packet buffer, causing invalid writes in avio_read.Also fix potential overflow of avio_tell(bc) + value_len.
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com> -
RTMP infrastructure setup
9 octobre 2019, par user6434902My current streaming setup comprises of a single server(server1). This server encodes my videos and streams to a couple of platforms using RTMP.
I use an aws ec2 server and my video files are stored in elastic block storage.
To this above mentioned setup I would like to enable RTMP pull endpoints. The purpose of these endpoints is that authorized users who know the ip address, port number and a key can read my stream using RTMP pull.
To allow for this new addition, I’m updating my server1 to include a third RTMP push stream that will be ingested by a new server (named server2) and will in turn forward the stream with RTMP pull endpoints.
Here are my questions :
- Is this a sound infrastructure setup ?
- server2 will input a RTMP push stream and output with RTMP pull
- What is the best way to authenticate my RTMP pull endpoints ?
- Can server2 be setup with a ffmpeg process whose job is to ingest RTMP stream and output via RTMP pull endpoints ?
-
avcodec/vdpau : Only include mpegvideodec.h when used
31 mars, par Andreas Rheinhardtavcodec/vdpau : Only include mpegvideodec.h when used
mpegvideodec.h includes mpegvideodata.h which in turn contains
a "static const uint8_t *const ff_mpeg1_dc_scale_table =
ff_mpeg12_dc_scale_table[0]" ; yet if mpegvideo is disabled,
ff_mpeg12_dc_scale_table is not available, yet a non-optimizing
compiler (like GCC with -O0) may emit ff_mpeg1_dc_scale_table
and therefore a reference to ff_mpeg12_dc_scale_table nevertheless.Fix this by only including mpegvideodec.h if it is needed.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>