
Recherche avancée
Autres articles (90)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (4787)
-
Multiplexing multiple single video MPEG-TS into MPTS using ffmpeg
14 juillet 2015, par AleksI tried to find a solution for multiplexing different inputs (ts) into one MPTS, so that can be used as input for DVB-T modulator. Basically, what I want is to select certain TS provided by satellite receiver, repack them into one MPTS and send to the modulator. Currently, I have managed to do it with one stream, using following command :
~/DATVRelease/ffmpeg \
-re -i URL_SINGLE_INPUT_TS_STREAM -vcodec copy -acodec copy \
-f mpegts -mpegts_original_network_id 1 -mpegts_transport_stream_id 1 \
-mpegts_service_id 1 -mpegts_pmt_start_pid 1000 -mpegts_start_pid 1001 \
-metadata service_provider="YOUR CALL" \
-metadata service_name="N1 (ALEKSANDAR)" \
~/dvb/videotswhere the videots is fifo pipe produced by mkfifo command. The following code produced the result on receiver side :
http://i.stack.imgur.com/BZugM.jpg
There is a -map function in ffmpeg where I can add multiple audio channels / or video channels, but they wont be on the receiver side detected as different services TV channels, because in my understanding the adequate PMT table must be created (iso13818)
The only open source I could find is this one http://www.scara.com/ schirmer/o/mplex13818/ , but I still wonder if ffmpeg could do this work for me ?
-
Multiplexing multiple single video MPEG-TS into MPTS using ffmpeg
13 septembre 2020, par AleksI tried to find a solution for multiplexing different inputs (ts) into one MPTS, so that can be used as input for DVB-T modulator. Basically, what I want is to select certain TS provided by satellite receiver, repack them into one MPTS and send to the modulator. Currently, I have managed to do it with one stream, using following command :



~/DATVRelease/ffmpeg \
 -re -i URL_SINGLE_INPUT_TS_STREAM -vcodec copy -acodec copy \
 -f mpegts -mpegts_original_network_id 1 -mpegts_transport_stream_id 1 \
 -mpegts_service_id 1 -mpegts_pmt_start_pid 1000 -mpegts_start_pid 1001 \
 -metadata service_provider="YOUR CALL" \
 -metadata service_name="N1 (ALEKSANDAR)" \
 ~/dvb/videots




where the videots is fifo pipe produced by mkfifo command. The following code produced the result on receiver side :



http://i.stack.imgur.com/BZugM.jpg



There is a -map function in ffmpeg where I can add multiple audio channels / or video channels, but they wont be on the receiver side detected as different services TV channels, because in my understanding the adequate PMT table must be created (iso13818)



The only open source I could find is this one http://www.scara.com/ schirmer/o/mplex13818/ , but I still wonder if ffmpeg could do this work for me ?


-
Anomalie #4454 (Nouveau) : abstraire
4 mars 2020, par jluc -- L’écran de sécurité compare la valeur de sys_getloadavg avec la constante _ECRAN_SECURITE_LOAD
pour déterminer si la charge système est trop lourde. Et par défaut la valeur est 4.- C’est ce même test que fait mailshot pour s’assurer qu’il peut faire tonner le canon à mail.
- memoization teste aussi sys_getloadavg mais compare à la valeur fixe 20. À mon avis ce serait bien de faire comme mailshot et ecran_securite et comparer à la constante.
sys_getloadavg dépend beaucoup du matériel et c’est pour cela qu’il faut pouvoir paramétrer la valeur seuil. Mais parfois ça n’est pas du tout significatif.
Sur mon hébergeur par exemple (9@nd1 Simple Hosting) la valeur renvoyée est une indication de la charge global du (ou des) processeurs globalement, mais ne reflète pas du tout concerne pas du la charge CPU concernant mon site, qui dispose de ses ressources propres, "protégées" par rapport à la charge globale. Il me semble que ce genre de services d’hébergements "virtualisés" se multiplient.Alors ne serait il pas souhaitable d’abstraire, dans une fonction spip surchargeable, l’évaluation de la charge système et de détection d’une charge critique,
afin de pouvoir adapter cette abstraction à tous les contextes matériels ?