
Recherche avancée
Autres articles (23)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (4296)
-
FFmpeg overlay opacity
19 avril 2017, par AMRITA MISHRAI have a sequence of frames which I concat to create a video.
On series of frames, I want to overlay an image with varying opacity(want to give fade in animation effect).
The opacity should vary w.r.t. time or frame number().
Tried using this command -ffmpeg -f concat -i input.txt -i inputImg.jpg -filter_complex "[1]format=argb,geq=r=’r(X,Y)’:a=’T*alpha(X,Y)’[v1] ;[0][v1]overlay=x=70:y=100" -crf 22 -threads 2 -preset ultrafast output.mp4
But the output video does not contain the overlaid image.
Note : frame size and overlaid image have different dimensions. -
Overlaying video with ffmpeg
11 novembre 2012, par eleeI'm attempting to write a script that will merge 2 separate video files into 1 wider one, in which both videos play back simultaneously. I have it mostly figured out, but when I view the final output, the video that I'm overlaying is extremely slow.
Here's what I'm doing :
-
Expand the left video to the final video dimensions
ffmpeg -i left.avi -vf "pad=640:240:0:0:black" left_wide.avi
-
Overlay the right video on top of the left one
ffmpeg -i left_wide.avi -vf "movie=right.avi [mv] ; [in][mv] overlay=320:0" combined_video.avi
In the resulting video, the playback on the right video is about half the speed of the left video. Any idea how I can get these files to sync up ?
-
-
FFMPEG (libx264) "height not divisible by 2" [closed]
3 octobre 2023, par Andy HinI am trying to encode a .mp4 video from a set of frames using FFMPEG using the libx264 codec.



This is the command I am running :



/usr/local/bin/ffmpeg -r 24 -i frame_%05d.jpg -vcodec libx264 -y -an video.mp4




I sometimes get the following error :



[libx264 @ 0xa3b85a0] height not divisible by 2 (520x369)




After searching around a bit it seems that the issue has something to do with the scaling algorithm and can be fixed by adding a -vf argument.



However, in my case I don't want to do any scaling. Ideally, I want to keep the dimensions exactly the same as the frames. Any advice ? Is there some sort of aspect ratio that h264 enforces ?