
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 (...) -
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 (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (6957)
-
Joining and cutting mpeg 2 video files
4 janvier 2012, par D.RosadoI have multiple mpeg2 video files. What I need to do is get a clip of video that is contained in several of these mpeg2 videos. What I'm doing at the moment is :
-
Join them using the command :
copy /b file1.mpg + ... + fileN.mpg output.mpg
-
The ouput.mpg duration is wrong so I'm using FFMpeg to fix that :
ffmpeg -y -i output.mpeg -target pal-dvd outputFixed.mpg
The problem is when I try to extract only one portion of this output.mpg, at the same time I "fix" it, with the -ss and -t FFMpeg commands becouse the video duration is wrong as i said.
So the question is :
- Is there any way to combine Mpeg2 files without getting the duration wrong ?
- Is there any way to fix the duration of a Mpeg2 file and extract one portion at the same time ?
Any suggestion would be appreciated.
-
-
ffmpeg : 1 image + 1 audio file = 1 video [on hold]
15 février 2016, par matteoThis should be pretty trivial but I can’t find a way to get it to work.
I want ffmpeg to take one jpg image and an audio file as input and generate a video file of the same duration as the audio file (by stretching the still image for the whole duration).
I don’t care very much about what video codec is used for output but it is vital that I can use "copy" as the audio codec (i.e. copy the audio stream without transcoding it).
What is the right command line that would do that ?
I tried :
ffmpeg -i image8.jpg -i sound11.amr -acodec copy test.avi
and tried a lot of combinations with and without
-s 640x360
,-loop_input
,-shortest
,-t xxx
,-r 0.1
(artificially low frame rate in the hope that the video would be longer) and-f image2
Either I get errors or I get a video file of the duration of one frame.
I’ve googled around and found a dozen of proposed solutions (supposedly to this very same question) none of which works.
Can anybody suggest a working command and explaing the rationale behind it ?
-
Ffmpeg watermarking multiple images
5 avril 2013, par r3zfrI'm a bit puzzled here and can't find an answer to the following question. Is it possible to have 2
.png
files watermarked into a video in a single command line withLibavfilter
?I'm using this commandline, but everything I try to get the second PNG image in it fails.
ffmpeg –i inputvideo.avi -vf "movie=watermarklogo.png [watermark]; [in][watermark] overlay=main_w-overlay_w-10:10 [out]" outputvideo.flv