
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (75)
-
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 (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (10547)
-
FFmpeg-generated .m2v file shows strange video length
15 août 2016, par John Doe 2I created a .m2v file using ffmpeg like this :
ffmpeg -framerate 1/300 -s 720x576 -i img%3d.jpg -c:v mpeg2video -b:v 2000k -r 5 video.m2v
This worked successfully, but if I right click on the
.m2v
file and go to details and scroll to video length I get this information which is really strange ( Using Windows 10) :Video
Length: 256204778:48:05If I run the .m2v file with a program like
PowerDVD
the length of the video is5 minutes
long.Why does this happen ?
-
ffmpeg library does not work from path but directly
19 juin 2020, par Ángel BarriosI want to add a watermark to a video.



I'm trying with windows 10 and ffmpeg library



The command I am using.



ffmpeg -i example.mp4 -i watermark.png -filter_complex "overlay=0-0+0:main_h-overlay_h-0+0" watermark.mp4




When I use it this way accesing the path I get this error :






But when I execute it not from path but opening cmd right on the executable folder it works fine



I did some research and couldn't find the answers I was looking for.



Why does this happen ? I can´t understand really



Thank you !


-
Sometimes normal conversion fails on Windows with error 1
23 mai 2019, par NuthinkingI run
ffmpeg.exe
from node (spawn()
) and sometimes (not random but depending on the day) it fails on Windows with error1
I use a very basic syntax :
const outputPath = getTempFolder() + path.sep + 'video.mp4';
const command = spawn(ffmpegPath, [
'-i',
getTempFolder() + path.sep + 'video.webm',
'-y',
outputPath
]);Any idea why this could happen and eventually how to debug it ? Thanks !