
Recherche avancée
Autres articles (71)
-
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. -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (15131)
-
Anomalie #3496 (Nouveau) : Traduction des multis dans des boucles
3 juillet 2015, par marcimat ☺☮☯♫En 3.0 et 3.1, fa_b a noté un comportement assez inattendu il semble, qu’on peut reproduire de la sorte.
Les multis ne semblent pas correctement traduits en fonction de l’environnement.Pour reproduire, avec le squelette proposé dessous :
- Prendre au moins 2 rubriques racines
- Mettre un titre normal à une rubrique, exemple "Non traduit"
- Mettre dans le champ texte de la rubrique, un multi, exemple :<multi>[fr]Français[en]English</multi>
- Faire pareil avec une 2è rubrique, mais en mettant un titre de rubrique avec multi tel que :<multi>[fr]Français[en]English</multi>
- Appeler le squelette avec ou sans ?lang=en, lang=fr…
- Le texte est parfois traduit correctement, parfois pas, dépendant du fait que le titre soit multi ou pas !Test multi sur titre rubrique et texte
[
(#ENV**|unserialize|print_r1)
]
Rubrique : #TITRE
lang : "#CHAMP_SQLlang", langue_choisie : "#CHAMP_SQLlangue_choisie"
#TEXTE
Est-ce que ce comportement est normal ?
-
Slowing down audio of a video using FFMPEG
3 décembre 2019, par jhodzzzGood day. Before anything else, I would like to say that I am a newbie with regards to video filters on FFMPEG. So please bear with me, :) Thanks in advance..
Anyways, I am trying to slow down a video clip that will be embedded and played within my delphi project. So far, slowing the video works fine by using the setpts filter. here’s my partial code :
FFPlayer.VideoFilters := Format('setpts=(1/' + FloatToStr(FSpeed) + ')*PTS, nativeeq=%d:%d:%d:%d, nativehue=%d:%d:%d:%d',
[0, 0, 0, 0, 0, 0, 0, 0]);where FSpeed is a changing value that ranges 0.5 - 2.5. With this code, the video capture speeds up or slows down, but the audio doesn’t. So as I was searching for the code to slow down the audio, I came across this link that provides the filter codes for speeding up or slowing down the video capture and audio. A line there mentioned that the filter code to slow down the audio and video capture at the same time is :
ffmpeg -i input.mkv -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" -map "[v]" -map "[a]" output.mkv
I tried adding "atempo=2.0" to my partial code making it :
FFPlayer.VideoFilters := Format('setpts=(1/' + FloatToStr(FSpeed) + ')*PTS, atempo=2.0, nativeeq=%d:%d:%d:%d, nativehue=%d:%d:%d:%d',
[0, 0, 0, 0, 0, 0, 0, 0]);but video didn’t show up at all.
I am hoping you could enlighten me with this one. Thanks.
-
Slowing down audio of a video using FFMPEG
8 mars 2015, par jhodzzzGood day. Before anything else, I would like to say that I am a newbie with regards to video filters on FFMPEG. So please bear with me, :) Thanks in advance..
Anyways, I am trying to slow down a video clip that will be embedded and played within my delphi project. So far, slowing the video works fine by using the setpts filter. here’s my partial code :
FFPlayer.VideoFilters := Format('setpts=(1/' + FloatToStr(FSpeed) + ')*PTS, nativeeq=%d:%d:%d:%d, nativehue=%d:%d:%d:%d',
[0, 0, 0, 0, 0, 0, 0, 0]);where FSpeed is a changing value that ranges 0.5 - 2.5. With this code, the video capture speeds up or slows down, but the audio doesn’t. So as I was searching for the code to slow down the audio, I came across this link that provides the filter codes for speeding up or slowing down the video capture and audio. A line there mentioned that the filter code to slow down the audio and video capture at the same time is :
ffmpeg -i input.mkv -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" -map "[v]" -map "[a]" output.mkv
I tried adding "atempo=2.0" to my partial code making it :
FFPlayer.VideoFilters := Format('setpts=(1/' + FloatToStr(FSpeed) + ')*PTS, atempo=2.0, nativeeq=%d:%d:%d:%d, nativehue=%d:%d:%d:%d',
[0, 0, 0, 0, 0, 0, 0, 0]);but video didn’t show up at all.
I am hoping you could enlighten me with this one. Thanks.