
Recherche avancée
Autres articles (35)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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) (...)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8454)
-
FFMPEG multiple styles in .srt file
7 décembre 2020, par TimI have an SRT file and want to change the background color and level of transparency for individual tracks. Is this possible, or would I have to adopt a more advanced format ? Would this task even work in FFMPEG ?


1
0:0:1,440 --> 0:0:1,970 Y1:20
<font color="#FF1F497D">{\an2}the settlement?</font>
2
0:0:2,640 --> 0:0:3,150 Y1:20
<font color="#FFC0504D">{\an2}Yes.</font>
3
0:0:3,740 --> 0:0:4,690 Y1:20
<font color="#FFFFFFFF">{\an2}Have you been waiting long?</font>



-
ffmpeg concat with different codecs in python
14 avril 2020, par Hans Lutz van Tastiquei'm working on a videopipeline project and try to add some stuff for it.
Atm it's running fine until the code reach this point :



os.system('ffmpeg -i ' + self._rendition + ' -i ' + self._outChunk + ' -filter_complex "[0:0][1:0]concat=n=2:v=1:a=0[outv]" ' + self._tempRenditon)




There is no error message or anything else. It is used to link individual chunks with different codec parameters. After this line it's just telling me that it cant find
self._tempRendition
.


Did i made an mistake with the
os.system
call ?


thx and greetz


-
avisynth AverageLuma() function equivalent in ffmpeg libraries ?
3 novembre 2013, par KG6ZVPI am working on implementing some software to analyze videos and would like to transition the project from avisynth to libavformat/libavcodec.
The Problem : I would like to seek through every frame in a given input video, detect black frames and write that list to a file. Is there a function which would allow me to get the light level of the current frame ? I realize that I may have to implement such a function myself, but as of now, I don't even know where I could collect the information on individual pixels in each frame to start that analysis. Help is greatly appreciated !