
Recherche avancée
Autres articles (11)
-
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 (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)
Sur d’autres sites (5285)
-
Convert long video to 16:9 by blurring sides ?
13 mai 2019, par JackChap77I am taking screenshots in python using selenium and want to convert them to a video. At the moment I have a black border around the top and bottom but I want it to be a blured image of the video in the background (the video is just a still image and audio)
Used the filter from https://stackoverflow.com/a/30832903/8502422 but it returns ’invalid too big or non positive size’
ffmpeg -loop 1 -i image.png -i audio.mp3 -c:v libx264 -preset veryslow -crf 0 -c:a copy -lavfi "[0:v]scale=iw:2*trunc(iw*16/18),boxblur=luma_radius=min(h\,w)/20:luma_power=1:chroma_radius=min(cw\,ch)/20:chroma_power=1[bg];[bg][0:v]overlay=(W-w)/2:(H-h)/2,setsar=1" -shortest post.mp4
-
How could Windows get video stream from video camera & push it to long-range Linux server ? [on hold]
2 décembre 2014, par xit6482How could Windows get video stream from a video camera ?
Using HDMI data converting line or ?
Then how could Windows push the stream to long-range Linux server ?
FFmpeg for Windows ?
I’m not sure about this, thanks for help !
-
ffmpeg lambda takes too long
20 décembre 2022, par ryeong928i'm new to AWS-Lambda and trying to create thumbnail with ffmpeg and nodejs.


if i test it in vscode nodejs at my local computer, i get thumbnail in 2 seconds.


but if i test it at AWS lambda executing ffmpeg from layer with spawnSync,


it takes around 7 9 seconds only for executing ffmpeg to create thumbnail.


how can i lower lambda duration time ?


may i get some advice ?


@@ lambda ffmpeg code


ffmpeg params = (videoPath, imagePath) => [
"-ss", 0,
"-i", videoPath,
"-frames:v", 1,
"-vf", "thumbnail,scale=150:100",
imagePath
]
spawnSync(ffmpegPath, ffmpegParams(videoPath, imagePath))


lambda max memory used was aroud 740MB