
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (91)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...)
Sur d’autres sites (13037)
-
avformat/utils : Do not init parser if probing is unfinished
15 novembre 2015, par Michael Niedermayeravformat/utils : Do not init parser if probing is unfinished
Fixes assertion failure
Fixes : 136f8b8d47af7892306625e597dee655/signal_sigabrt_7ffff6ae7cc9_8941_ab11bea57c84796418f481f873dc31ba.dvr_msFound-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
How to add timestamp to ffmpeg in nginx-rtmp-module
2 mars 2017, par helyaoI use nginx-rtmp-module and ffmpeg to record rtmp video stream to mp4 file, but I want to know how to add timestamp to the mp4 file.
My config as below :
rtmp
{
server
{
listen 1935;
timeout 10s;
application mylive {
live on;
exec /usr/bin/ffmpeg -i rtmp://localhost/$app/$name -vcodec copy -acodec copy -f mp4 /home/ubuntu/video/${name}.mp4;
}
}
}I want to record the file with the name as $name-`date +%Y%m%d_%H%M%S`, but how can i do ?
-
mlp_parser : Drop in-parser downmix functionality
26 avril 2017, par Vittorio Giovaramlp_parser : Drop in-parser downmix functionality
request_channel_layout is a decoder option and it makes no sense
to have it in a parser.This feature was needed in the past when the decoder was allowed
to reuse the avctx from the demuxer. Nowadays the decoder receives
only the parameters from it, already containing the real channel
layout (and the correct request_channel_layout option).After initialization the decoder overwrites the channel layout
with the downmixed one that is actually output, so there is no need
to preserve this functionality in the parser.Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>