
Recherche avancée
Autres articles (43)
-
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 (...) -
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 (8637)
-
Overlaying a list of video files on top of another list of video files
2 août 2023, par sybrI'm currently working on a way to improve my production process for the videos that I'm making. The source files consist of a list of two side-by-side clips that I handpick and stitch together in Premiere Pro. I recently came across FFmpeg and thought, 'surely there's a way to automate the rendering of these videos'.


I've managed to get the general overlay working, where I have one clip overlaid on top of the other one, but the overlaid clip doesn't have any audio, and the overlaid clip currently doesn't scale to the height of the background clip.


Here's what i'd like it to look like :



As illustrated in the image, I want to overlay the overlay clip on top of the background clip, preserving audio for both clips, and shift the background clip's position to the right by 33%. Now, instead of both "clips" being just one clip, I want to use two folders with each about 1 hour's worth of clips to compile an hour-long video containing both folders.


Is there a way to achieve what I want to do here ? Or would it make more sense to compile two separate videos first by concatenating all videos in their respective folders first, and then overlaying one video on top of the other one ?


Would love some help here, also eager to learn more about FFmpeg, so some explanation would be highly appreciated !


-
FFMPEG cropping size is always wrong
19 avril 2020, par SamsyI need a bunch of video to be EXACTLY 1024x512 ( power of 2 video ), not a pixel less, not a pixel more..



I'm scaling them first to 1024 width



Then cropping them to 1024x512



Problem is..



result always ends up with 1 pixel more or 2 less pixels in width etc...



Source dimension : 1624 × 1080
Output dimension : 1022 × 512




Source dimension : 1264 × 720
Output dimension : 1025 × 512




rm -R ./output

mkdir output

cd input

for i in *.mp4;

 do name=`echo "$i" | cut -d'.' -f1`

 FILE="${name}"

 TMP="temp.mp4"

 INPUT="${FILE}.mp4"

 OUT_PUT="../output/${FILE}.mp4"

 JPEG_OUTPUT="../output/${FILE}.jpg"

 echo FILE

 echo INPUT

 ffmpeg -i $INPUT -filter:v scale=1024:-2 -c:a copy ${TMP}

 ffmpeg -i ${TMP} -filter:v "crop=1024:512:exact=1" -c:a copy ${OUT_PUT}

 # ffmpeg -loglevel panic -i $OUT_PUT -vframes 1 -f image2 $JPEG_OUTPUT

 rm ${TMP}

done



-
ffmpeg : create slideshow of unknown number of images with transition
13 août 2022, par FreddyVihope someone could help me with this. Kinda new with ffmpeg and a bit stumped.


Given an input of a set of numbered images in a folder, I want to generate a video with each image shown for 60 seconds. I would love to use a default transition between each images.


The following code, correctly generates an mp4 without transitions :


ffmpeg -framerate 1/60 -pattern_type glob -i "*.png" -vcodec libx264 \
-pix_fmt yuv420p -r 30 -threads 4 -crf 25 -refs 1 -bf 0 -coder 0 -g 25 \
-keyint_min 15 -movflags +faststart no_audio_output.mp4



But when I try to add a default transition (supported in the version of ffmpeg I'm using that is the 5.1) :


ffmpeg -framerate 1/60 -pattern_type glob -i "WC*.png" -filter_complex 
xfade=transition=circleopen:duration=5:offset=55 -vcodec libx264 \
-pix_fmt yuv420p -r 30 -threads 4 -crf 25 -refs 1 -bf 0 -coder 0 -g 25 \
-keyint_min 15 -movflags +faststart no_audio_output.mp4



I have as error :


Cannot find a matching stream for unlabeled input pad 1 on filter Parsed_xfade_0



I googled a lot but still the solution is unclear. All the examples I found have been designed to deal with a slideshow/input with a define number of pieces while in my case the folder could contain any number of images.


Thanks all for your help !