
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (35)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
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. -
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 (2786)
-
Phantomjs - frames missing for animation
3 janvier 2017, par samI am using phantomjs to generate screenshot from a d3 animation and then merge the screenshots to create a video using ffmpeg. I am using the phantomjs
render
method to create series of screenshot. But when render method is used, I have to make the d3 animation extra slow so that all animation is captured smoothly. Even then, there seems to be frames missing. the animation doesnt look that smooth.So I came across another method,
renderBuffer
which I saw in the documentation of phantomjs. But this method, when tried to execute, even the example code wont execute. I was hoping renderBuffer could solve the missing frame issue.Anyone else facing similar issue or any methods you guys could suggest to attain smooth continuous frames ?
-
Import png files and convert to animation(.mp4) in R
13 mai 2020, par ArthurI'm trying to create a short animation with several png files in R. I tried package
magick
but it only works when I save them to .gif. When I tried to save as .mp4, it will generate an .mp4 file but once you open it, only the first image will be shown.


My code is



library(magick)
 productPath <- ('/Users/abc/Desktop/products/')
 list <- list.files(productPath, '*.png')
 imagesPath <- paste0(productPath, list)
 images <- image_read(imagesPath)
 animation <- image_animate(images, fps = 20, loop = 1)
 image_write(animation, paste0(productPath, 'test.mp4'))




I found there is also a package called
animation
, but I don't really know how to import png files with that package. Any solutions ? With either package should be fine. Thank you !

-
ffmpeg animated gif overlay, animation starts before specified 'between'
18 janvier 2021, par Dave ThornI am adding an animated gif as an overlay to a video with a command like this :


ffmpeg -y -i video.mp4 -i overlay.gif -filter_complex "[0:v][1:v] overlay=38:11:enable='between(t,1.35,15.042000)'" -pix_fmt yuv420p -c:a copy -safe 0 output.mp4


In that command I'm asking it to show the gif from 1.35 to 15, and that works insofar as the overlay is only shown between those times, but it's as if the animation starts before it reaches 1.35, because the bit of the animation before that point doesn't ever appear on the screen. The start of the animation is missing from the final video.


Tried in ffmpeg-20180925-a7429d8 and ffmpeg-N-100581-ga454a0c14f