
Recherche avancée
Autres articles (29)
-
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs. -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (4901)
-
Using ffmpeg to create a video from a sequence of TGA images, with a depth of field blur effect sourced from the TGA's alpha channel
19 mars 2016, par vpvpI’m working on turning a sequence of TGA images into a video using ffmpeg. I want the video to have a depth of field blur effect. The alpha channel of each TGA contains a depth-mask, where black=close and white=far. I want to use this info to add DOF blur to the final output of that frame. After searching, the closest answer I could find was this
http://superuser.com/questions/916431/ffmpeg-filter-to-boxblur-and-greyscale-a-video-using-alpha-mask, but it is for a static dof-mask. The DOF mask I would be using is obviously changing every frame, and an alpha channel instead of a seperate png.Here is my current cmd line
ffmpeg -framerate 60 -i image.%10d.tga -c:v libx264 -preset slow -crf 0 -c:a copy -pix_fmt yuv420p output0.mp4
It seems the answer would involve some use of alphamerge/alphaextract/boxblur, but I’m brand new to ffmpeg so I don’t know how to formulate the command.
Thanks in advance.
-
ffmpeg alpha merge mp4 to alpha mov (heic)
25 mars 2022, par AlexI have two video files (mp4), matte/alpha (white silhouette) and normal.
I want to create a .mov file with transparent background that is possible to play on iOS/Safari devices.


Commands I'm trying to run :


ffmpeg -i color.mp4 -i alpha.mp4 -filter_complex '[1][0]scale2ref[mask][main];[main][mask]alphamerge' -c:v libx265 -tag:v hvc1 -pix_fmt yuva420p output.mov

ffmpeg -i color.mp4 -i alpha.mp4 -filter_complex '[1][0]scale2ref[mask][main];[main][mask]alphamerge' -c:v qtrle output.mov



Expected result : Transparent background


Actual result : Background is not transparent


What I'm trying to achieve :
https://rotato.app/blog/transparent-videos-for-the-web


-
Is it possible to set channel layout of wave file using ffmpeg without re-encoding the file ?
27 août 2020, par John BakerI want to set the WAVEFORMATEXTENSIBLE dwChannelMask (channel order mask) in a poly WAV file that doesn't yet have a channel mask set.


Can ffmpeg do this ? If not, is there another tool that can do this ?