
Recherche avancée
Autres articles (46)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (7373)
-
Revision 16783 : use stream.time_base for subtitles to keep time from input if possible, ...
14 janvier 2010, par j — Loguse stream.time_base for subtitles to keep time from input if possible, patch by ogg.k
-
why changed volume after merge ? in ffmpeg. How to turn off change volume [duplicate]
13 décembre 2017, par Нодирбек РаззоковThis question already has an answer here :
why changed volume after the merge ? in FFmpeg.
How to turn off change volume. I need an original volume of music after the merge.
please check my command
ffmpeg -i song.mp3 -i mix.mp3 -filter_complex \"[1]adelay=10000|10000[b];[0][b]amix=2,volume='1-max(0.25*(t-13),0)'\" -ac 2 -i cover.jpg -c copy -id3v2_version 3 -codec:a libmp3lame -q:a 4 -b:a 128k -y output.mp3
-
ffmpeg draw text filter - Invalid argument when sending url as a text
2 novembre 2017, par emanaltalI’m trying to write a ffmpeg command to live stream a .ts file & write the same url as text overlay through python subprocess
subprocess.call(’ffmpeg -i %s -vframes 1 -q:v 1 -vf "scale=720:480" -vf drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf : text=%s : x=500 :y=500" %s.jpg -hide_banner’%(url,url,filename),shell = True)
URL example : http://orbitiptv.com:2500/live/99068566091761/99068566091761/6587.ts
I get an error
Error reinitializing filters !
Failed to inject frame into filter network : Invalid argumentThe issue is related to url having special characters, when i run it directly in cmd i can skip : with \
but how to implement that with python ?