
Recherche avancée
Autres articles (76)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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
Sur d’autres sites (7309)
-
lavd/avfoundation : Add support for 24 and 32bit integer input.
6 mars 2015, par John Robinson -
Can no longer get ffmpeg to run in Terminal on macOS
31 décembre 2023, par Chewie The ChorkieHere's a command I tried to run which always worked :


Mac-mini:images Admin$ ffmpeg -r 30 -f image2 -s 1080x1080 -i %d.png -vcodec h264 -crf 25 -pix_fmt yuv420p zVideo.mp4



The output I get is :


dyld[94095]: Library not loaded: /usr/local/opt/theora/lib/libtheoraenc.1.dylib
 Referenced from: <20EBE016-0DD0-3F29-96CD-D22BC2E40B38> /usr/local/Cellar/ffmpeg/6.1.1/bin/ffmpeg
 Reason: tried: '/usr/local/opt/theora/lib/libtheoraenc.1.dylib' (no such file), '/System/Volumes/Preboot/Cryptexes/OS/usr/local/opt/theora/lib/libtheoraenc.1.dylib' (no such file), '/usr/local/opt/theora/lib/libtheoraenc.1.dylib' (no such file)
Abort trap: 6



I've tried reinstalling ffmpeg, installing the command line tools from Xcode, and Xcode itself.


-
Split screen video cliping with FFMpeg
11 avril 2014, par Justinasi have one video source with 4 different videos inside :
As you can see, i'm using VLC to view it and there is only one controlling window. If i press stop button, every 4 videos will stop and so on.
Problem is, i have to use FFMpeg and cut mini-clip from this source, so it will be playable in all 4 windows again. Clipping ordinary video works just fine with command
ffmpeg.exe -y -i $input -ss $startTime -t $length -acodec copy -vcodec copy $output 2>&1
. But when used for this one split-screen video, i get only one source clip instead of all 4 in same place.Any detailed information about this video is welcomed because i don't even know how exactly this type of video is called, as well as any information about clipping with ffmpeg that video.