
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (103)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (...)
Sur d’autres sites (12080)
-
How to fetch pixel value at specifc x, y from vid1, vid2 in ffmpeg xfade custom transition expression
25 janvier 2021, par jsalujaI am using xfade with transition=custom, and trying to build expression.
I am referring to official documentation https://ffmpeg.org/ffprobe-all.html#xfade


Per my understanding, expression should return pixel value of merged video


I built a few custom transitions using expressions that return some combination of A, B


For eg.,


"custom:expr='if(gt(P, abs(X/W - 0.5)), A, B)'"
"custom:expr='lerp(A, B, 1 - P)'"



For the next set of transitions, I want to fetch the pixel values from source, target video at specific positions, and combine them in my expressions


I tried using a0(X, Y), b0(X, Y) etc inside of


xfade=transition=custom:expr='r....



I ran into exceptions with ffmpeg complaining it doesn't understand the expression.


Can someone clarify, how i can fetch pixel values as specific position from source, target video and combine them in expression ?


-
Specifying Full input video duration in an ffmpeg expression for crop filter
23 mai 2018, par yoda89I have to use panning effect on a video from left to right, for that I used crop filter and also figured out the expression for the effect, but the expression requires full input video duration. So I was wondering if there is an ffmpeg constant for specifying that. Like we have iw for input width and ih for input height.
I am using the command given below, except that I have to hardcode duration of the input video in place of [DURATION].
ffmpeg -i input.mp4 -vf crop=iw/3:ih:2*t*iw/[DURATION]*3:0 output.mp4
-
ffmpeg expression operator "or" not work
5 février 2018, par rick leeref :https://ffmpeg.org/ffmpeg-utils.html#Expression-Evaluation
ffmpeg expression or (+) not work.
if((gt(t,10))+(lt(t,30)),0,1)
the result is always 0