
Recherche avancée
Autres articles (68)
-
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) (...)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (5748)
-
Batch mp3 to mp4 recursive using ffmpeg
5 janvier 2021, par YusoffCurrently I'm using this to convert mp3 in a mp3 folder into mp4.


How do I do it recursively so I don't have to copy the bat file into individual subfolders


echo off
 
FOR /r %%i in (*.mp3) DO (
 
"C:\ffmpeg\bin\ffmpeg.exe" -i "%%a" -an -y -vcodec copy "E:\songs\mp3\%%~na.jpg"
 
"C:\ffmpeg\bin\ffmpeg.exe" -loop 1 -i "E:\songs\mp3\%%~na.jpg" -i "%%a" -y -c:v libx264 -preset veryfast -tune stillimage -crf 50 -pix_fmt yuv420p -c:a aac -shortest -strict experimental -b:a 128k -shortest "E:\songs\mp3\%%~na.mp4" )
 
pause



-
Revision c37ecba7f7 : configure : factorize gcc machine option checks check_gcc_machine_option() repla
19 mars 2014, par James ZernChanged Paths :
Modify /build/make/configure.sh
configure : factorize gcc machine option checkscheck_gcc_machine_option() replaces individual -m* checks
Change-Id : I0f4a82020c0541b99209321907e80e071d1245e1
-
Simplest way to do do video editing in C++ ?
23 décembre 2019, par CaptainCodemanI have a video file (approx 30,000 frames) and want to do some processing on the individual frames with a C++ program I’ve written.
The simplest method would be to extract the frames using ffmeg, do the processing, and then encode the video again. However, this would require a few hundred gigabytes of disk space. Is there a way to stream it ?
Or is there some library that lets me just open a video, alter the frames, and re-encode ?