
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (81)
-
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) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (5551)
-
batch FOR loop with FFMPEG
27 décembre 2014, par user3604398I want to divide a .mp4 file into smaller .mp4 clips using ffmpeg.
This is the code without a loop :
ffmpeg -i source-file.mp4 -ss 0 -t 600 first-10-min.mp4
ffmpeg -i source-file.mp4 -ss 600 -t 600 second-10-min.mp4
ffmpeg -i source-file.mp4 -ss 1200 -t 600 third-10-min.mp4
...How do I make it into a loop in Microsoft DOS ? So far I have this :
for /r $i in (*.mp4) do "C:\Program Files\FFMPEG\bin\ffmpeg.exe" -i "C:\Users\Name\Videos\2014-12-27-0926-45.mp4" -ss 0 -t 600
Also someone said to put -codec copy in somewhere but I don’t know where.
-
How to add Overlay/Watermark Text opacity or transparency by FFmpeg ?
28 novembre 2022, par ujjallyI want to add overlay/watermark text into video with custom opacity or transparency like 50%(0.5) and 80%(0.8)


I tried the below code but the opacity color automatically set to black.


ffmpeg -i video.mp4 -vf drawtext="fontfile='C\:/Users/BRIGHT/AppData/Local/Microsoft/WINDOWS/fonts/RacingSansOne-Regular.ttf':text='YouTube.com':fontsize=h/15:fontcolor=yellow@0.5:bordercolor=white:borderw=1:y=(h-text_h*24):x=(mod(-0.5*n\,w+tw)-tw)" -codec:a copy output.mp4



-
How to initialize FFmpeg in .NET MAUI-Windows
9 juillet 2024, par Hossam FaresI have installed the bin using
winget install "FFmpeg (Shared)"
on Windows 11 22631.3810. it installs successfully but when runningFFmpegInit.Initialise()
I getSystem.NotSupportedException: 'Specified method is not supported.'
I have also tried setting the logLevel toFfmpegLogLevelEnum.AV_LOG_FATAL
, and I got the same exception. I tried to set the libPath toC:\Users\UserName\AppData\Local\Microsoft\WinGet\Packages\Gyan.FFmpeg.Shared_Microsoft.Winget.Source_8wekyb3d8bbwe\ffmpeg-7.0.1-full_build-shared\bin
and I got the same exeption