
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (63)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (6771)
-
Leading Google Analytics alternative, Matomo, parodies Christopher Nolan blockbuster ahead of the UA sunset
4 juillet 2023, par Erin — Press Releases -
FFmpeg : Trying to fade out first and later fade back in doesn't work [duplicate]
6 septembre 2023, par Paul SWhile I just became a registered user on the site, I've been utilizing Stack Overflow for years, virtually always being able to find solutions to problems I've encountered. Unfortunately, not this time ; I have encountered a problem with the ffmpeg video fade filter. There are lots of previously proposed issues along with their solutions, but none (that I can find) that address a twist that I have.


Most questions ask, "how do I fade in", or "how do I fade out", and "how do I fade in at the beginning and fade out at the end." If I want to fade in and later fade out, my below code works just fine.


ffmpeg -ss 00.0 -accurate_seek -to 15.0 -i My.Test.File.mkv -c:v h264 -vf fade=t=in:st=0:d=2,fade=t=out:st=13:d=2 -b:v 825k -s 1280x720 -r 29.97 -c:a aac -ar 44100 -ac 2 -b:a 96k output.mp4



However, I actually want to fade out somewhere in the middle, and then fade back in shortly after, and that doesn't seem to work. I structured the ffmpeg command as so :


ffmpeg -ss 00.0 -accurate_seek -to 15.0 -i My.Test.File.mkv -c:v h264 -vf fade=t=out:st=6:d=2,fade=t=in:st=9:d=2 -b:v 825k -s 1280x720 -r 29.97 -c:a aac -ar 44100 -ac 2 -b:a 96k output.mp4



This fails and yields a completely blank video. I've also tried some -filter_complex variations, but get similar results ; fading in and later fading out works, but fading out and later fading in does not.


I'm using the latest ffmpeg windows version on Windows 10. I would have attached a sample video file but I'm seeing how to do that. It is not the original video file that started my issue, but it does duplicate the issue. Not sure what other info might help in coming up with a solution. Thoughts ?


-
avfilter/vf_bwdif_cuda : CUDA accelerated bwdif deinterlacer
30 août 2019, par Philip Langdaleavfilter/vf_bwdif_cuda : CUDA accelerated bwdif deinterlacer
I've been sitting on this for 3 1/2 years now(!), and I finally got
around to fixing the loose ends and convincing myself that it was
correct. It follows the same basic structure as yadif_cuda, including
leaving out the edge handling, to avoid expensive branching.