
Recherche avancée
Autres articles (52)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (10127)
-
How would I go about making a screen recorder ?
23 juillet 2016, par JamDoggieI understand mp4 files, AVI files, the list goes on. I also understand encoding and compression and bitrate. I wouldn’t say I’m an expert at c#, but I understand it well enough to make a browser with cef sharp(Chromium Embedded FrameWork). I would think I would use FFMPEG or direct show but I don’t understand the first thing of those to be honest or if there is even a .NET wrapper for them (there probably is though I would be surprised if there isn’t). I have done research but none of it has answered my question.
-
Anomalie #3609 (Fermé) : Problème avec les externals
29 novembre 2015, par b bIl n’y a que 7 archives dans le XML et elles sont bien listées dans le privé sur la page du dépôt ecrire/ ?exec=depot&id_depot=X. Le problème est du côté de smart paquets, l’outil qui génère les xml du côté de la zone. Je ferme le ticket et t’invite à signaler le problème sur la liste spip-zone.
-
HTML 5 currentTime accuracy
1er septembre 2018, par DanielI’m working on a project where we are using the value from the video element’s currentTime property to perform processing on the server backend using ffmpeg. I’ve come across an issue where the video element seems to report a time code that is slightly different from the time code ffmpeg needs to access the correct point in the video.
So for instance in Firefox if the currentTime property reports that the current video time is 26.83 I might find that the frame I really want ended at 26.72 and so if I use the time to extract a frame using ffmpeg on the server I get the next frame instead of the current frame.
The amount of offset seems to be slightly different in different parts of the video and in different videos. But the offset is usually close to one tenth of a second in Firefox. In chrome the currentTime actually seems to be ahead or the correct currentTime by about 5 hundredths of a second. It’s more difficult to figure out the offset in IE because the place where the frame shifts seems to change as I enter different time codes to look for the exact time code where the frame changes.
I’m pretty sure the time as used by ffmpeg is the correct time. It seems to agree more closely with other video editing software such as adobe premier.
Any ideas on what could be causing this behavior ?
JS to get currentTime :
AVideo.prototype.getCurrentTime = function()
{
return this.videoElement[0].currentTime;
};Resulting ffmpeg command :
ffmpeg -y -i '/tmp/myVideo.mov' -vframes 1 -ss 2.4871 -f image2 -y '/tmp/myFrame.jpg' 2>&1