
Recherche avancée
Autres articles (45)
-
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (6449)
-
Convert one image + one video's audio to video with ffmpeg
5 septembre 2019, par intrlocutrI’m trying to convert one video file (flv) and one image file (jpg) to one mp4 video, with the video’s audio sample rate increased, and the image overlayed on top of the audio.
Right now I’m using this command :
ffmpeg -i video.flv -loop 1 -i photo.jpg -y -filter:a "asetrate=55786.5" -vcodec png -filter:v "pad=ceil(iw/2)*2:ceil(ih/2)*2" -map 1:0 -map 0:1 -y -tune stillimage finalvideo.mp4
It produces an mp4 that plays just fine in VLC, but will not upload to YouTube, which is what I eventually want to do. I could convert the flv to an mp3 and then to an mp4, with two separate ffmpeg commands, however I’m running this in an environment where time and resources are limited, so I’d like to avoid that if at all possible.
-
How to extract certain frames from a .yuv video file and create a new video using FFmpeg, OpenCV and python ?
8 avril 2020, par Ann BaijuI have a .yuv video file and a list containing some frame numbers. I need to make a new video with the frame numbers in the list and another video with the frame numbers that are not on the list. How can I do this using FFmpeg and subprocess module in python ? I'm also using OpenCV in the program. I need the new videos in both .yuv and .avi formats.


-
FFMPEG mux video and audio (from another video) - mapping issue
22 avril 2015, par MarkI would like to place the audio from a video to another video without an audio (in one command) :
ffmpeg.exe -i video1_noAudio.mov -i video2_wAudio.mov -vcodec copy -acodec copy video1_audioFromVideo2.mov
I guess "-map" is the correct way to do it but I got confused with it.
Can you suggest how to resolve it ?