
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 (50)
-
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
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 (10087)
-
Rendering list of images over a video with ffmpeg does not work if video has audio
12 mai 2023, par Alex StirkenI'm using FFmpegKit for Flutter to render a list of changing images onto a video.
Im using the following arguments :


final arguments = [
 '-y',
 '-i', inputVideoPath,
 '-framerate', '$fps',
 '-start_number', '100',
 '-i', '${tempDirectoryPath}/%3d.png',
 '-filter_complex', '[1:v]scale=720:1280 [ovrl]; [0:v][ovrl]overlay=0:0,format=yuv420p[v]',
 '-map', '[v]',
 '-c:v', 'libx264',
 "-preset", "medium",
 '-pix_fmt', 'yuv420p',
 '-shortest',
 '$outputFilePath'
];



It works like a charm as long as the video file (.mp4) has no audio stream. If the video has an audio stream, only the first image is getting rendered (overlayed) over the video.


Any suggestions ?


-
Best video format for video processing and converting to mp4
29 août 2014, par Max GrigorievI may have video in selected format and I should make some video changes - add logo to the whole video as example and then convert to mp4. Right now original file is in h.264/mp4 format too. As I understand to add logo original file should be decoded to frames then logo should be added and then frames should be encoded to H.264 and packed to mp4. Since I’m newbie in video processing maybe there’s a raw video format which removes decoding stage and it saves time and cpu ?
Thanks
-
Convert video.ts file into video.mp4 using ffmpeg
11 juillet 2020, par HorizonBloomSo I tried to convert a file named
video.ts
intovideo.mp4
in Python and am getting the error :

FileNotFoundError: [WinError 2] The system cannot find the file specified


Assuming
video.ts
is already loaded into the program and subprocess already imported.

This is due to the line :


>>> subprocess.run(['ffmpeg', '-i', 'video.ts', 'video.mp4'])
but I don't know what's the problem.

I've opened the
video.ts
file and it seem to be working fine. Python version (3.8.2)