
Recherche avancée
Autres articles (28)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)
Sur d’autres sites (4791)
-
How to download/convert multiple streams to multiple outputs with FFmpeg ?
16 avril 2016, par Website NewbieLet’s say I have 20 different online stream videos (playlist.m3u8) and I want every video to output to their own .avi files. How can I do that in single file, so I don’t have to download and convert every single one separately ?
I found a -map command online, but didn’t get straight answer to this.
Will this be a working code ?
ffmpeg -i 1playlist.m3u8 -vf scale=768:-1 -vcodec libx264 -crf 24 -acodec copy -map 0 1.avi \
-i 2playlist.m3u8 -vf scale=768:-1 -vcodec libx264 -crf 24 -acodec copy -map 1 2.avi \
-i 3playlist.m3u8 -vf scale=768:-1 -vcodec libx264 -crf 24 -acodec copy -map 2 3.avi -
Running ffmpeg with Mac's Automator to remove metadata
11 février 2019, par sd100Hi so I am having problems running ffmpeg on a folder of movie files with Mac’s automator. My goal is to select a folder and right click/select service and automatically the script should run on only movie files (of mp4 type).
So I have a Automator workflow receives files or folders in finder. Then I have "Selected Finder items" and then run shell script (code below).
This works but firstly it gives the ffmpeg verbose output in the results window in the mac which I have to press ok. I tried the "-hide_banner -loglevel panic" but the script doesn’t work then.
Secondly the "Selected finder items" works but I want to only select a folder and automatically the automator script should go in the folder and run the shell script on only mp4 files (movie).
Is there anyway to set both requirements ? Any advise would be appreciated !
Code I’ve tried :
for f in "$@"
do
/usr/local/bin/ffmpeg -i "$f" -map_metadata -1 -c:v copy -c:a copy "$f%.mp4"-new.mp4 ;
doneAlso am trying to move all converted mp4 files to a directory in the current directory with shell code like this :
for f in *.mp4 ; do ffmpeg -i "$f" -map_metadata -1 -c:v copy -c:a copy "converted/$f" ; done
This doesn’t work either in automator as I don’t know how to move the ffmpeg output files into another directory via automator.
-
Compress videofiles from context menu in Windows 11 using ffmpeg
11 janvier 2023, par RayearthI'd looking for an easy way to just right click on a folder in Windows and be able to loop through video files and compress them with ffmpeg with prepared command settings.


Been able to prepare the reg file to import but I think I'm missing something important here (working directory reference I think). How should I pass the working dir path inside a command like that for this mechanism to work ?


Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Shell\Compress_videos]
@="Compress videos"

[HKEY_CLASSES_ROOT\Directory\Shell\Compress_videos\command]
@="cmd /c for \"%E\" in (.mp4, .mkv, .mov, .avi) do forfiles /m *\"%E\" /c \"cmd /c C:\\Windows\\System32\\ffmpeg.exe -hide_banner -y -hwaccel cuda -i @path -c:v hevc_nvenc -b:v 8000k -c:a copy @fname_compressed.mp4\""