
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (93)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Les sons
15 mai 2013, par -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (6077)
-
Additional : vinUS validation fails on valid vin numbers (#2460)
1er décembre 2022, par wewhiteAdditional : vinUS validation fails on valid vin numbers (#2460)
* Removed === compare, changed to ==
Compare by value and type (===) does not work for this algorithm, as both cd and cdv can be either types at the same time.
By comparing by value only (==) cd and cdv can be either integer or string, as a string number will be converted to a number reqardless of type.* Rewrote forloop, removed nested forloop
* Additional : fixed spacing issues
* Additional : Add vinUS.js validation test cases
Test cases include default test with 17 one’s, and additional US and Canada VIN
* Additional : add two more test casses for vinUS
* Additional : removed text license number, should be VIN
-
ffplay with gdigrab doesn't render properly
14 avril 2022, par laggingreflexI'm trying to do this :


ffplay -f gdigrab -framerate 30 -i title="Untitled - Notepad"



It's supposed to show the notepad window in the ffplay window.


But it doesn't seem to render properly.. it shows scrollbars but not anything written in the notepad. Other windows ("calculator") don't show properly either.


Does
ffplay
not work (well) withgdigrab
? Or is it just me ?



-
ffmpeg : drawtext fade in/out with zmq
11 novembre 2019, par jb_alvaradoThere are several ways to fade in and out text in ffmpeg. But I only found solutions where the actual time is known.
But what can I do, when I don’t know the current running time and I would like to fade in and out a text ?
Let’s say I have an endless stream and I want to fade in a text with zmqsend. And the fade should start immediately. For that my understanding is, that I need to store some time information in a variable and calculate with that. But storing variables is not possible in ffmpeg expressions - right ?
For testing purposes here are a playing instance :
ffplay -dumpgraph 1 -f lavfi "color=s=512x288:c=black,zmq,drawtext=text=''"
For adding some text with zmq I can run now :
echo Parsed_drawtext_2 reinit text="Hello\ World,\ what’s\ up?" | zmqsend
Or if I know the running time and after 10 seconds I want the text fade in :
"text='Hello\ World':fontsize=:fontcolor=ffffff:alpha='if(lt(t,10),0,if(lt(t,11),(t-10)/1,if(lt(t,16),1,if(lt(t,17),(1-(t-16))/1,0))))'"
My goal is now to have an expression what I can send, so that ffmpeg starts fading in the text and out after a certain time.
Something like :
now=t,if(lt(t,now+10),0,if(lt(t,now+11),(t-(now+10))/1,if(lt(t,now+16),1,if(lt(t,now+17),(1-(t-(now+16)))/1,0))))
Is there a way to store variables in expression, or is there any other way to realize this ?