
Recherche avancée
Autres articles (35)
-
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) (...)
-
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 : (...) -
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 (8037)
-
Revision 2b59e14a00 : Parse out arm isa targets from dumpmachine The current parsing logic of the dum
15 août 2012, par Mike FrysingerChanged Paths : Modify /build/make/configure.sh Parse out arm isa targets from dumpmachine The current parsing logic of the dumpmachine tuple lacks any arm cases which means tgt_isa never gets set, so for all arm targets, we get detected as generic-gnu. Add some basic arm checks here so the (...)
-
Use ffmpeg to resize mp4 files in one folder under win10 but failed ? [duplicate]
11 décembre 2023, par li_zhichengThis is my code in a .bat file :


@echo off
set /a n=0
for %%i in (D:\videos\*.mp4) do (
set /a n+=1
ffmpeg -i %%i -vf scale=-1:160 -an D:\videos\small\%%n.mp4
)



I want to get 1.mp4 2.mp4 3.mp4 ... n.mp4
The result is not what I expected.
Can you tell me how to fix it ?
Thanks !


I tried set /a %n%+=1 but it doesn’t work.
I want to get 1.mp4 2.mp4 3.mp4 ... n.mp4


-
Use FFmpeg to compare the same videos with different lenght
5 mai 2016, par user3043703I have two videos taken from the same multimedia file, with identical video codec, bitrate, width x height, audio codec, etc... It would be possible, for example, to see if one video includes the second and to get the time where the second video starts to differentiate from the first ? I think that this job should be done by FFmpeg and the right process would be to compare just video or audio frames. I know some basic commands but really cannot understand how to perform this kind of comparison.