
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (56)
-
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 (...) -
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 (9827)
-
FFMpeg merge video and audio at specific time into another video
21 juillet 2021, par Lug IaI have a standard mp4 (audio + video)
I am trying to merge a 1.4 second mini mp4 clip into this track, replacing the video for the length of the mini clip but merging the audios together at a specific time


Would anyone know how to do this using ffmpeg ?


I've tried quite a few different filters, however can't seem to get what I want



 V <------->
miniclip.mp4 A <=======>
 V <-----------> ↓ + ↓ <--->
standard.mp4 A <=========================>



-
resize and crop HD video into square video using ffmpeg
7 mai 2021, par Ahmet CetinI want to scale and crop HD video (1920x1080) into square one while adding watermark. I tried


ffmpeg

-i video.mp4

-i watermark.png

-filter_complex "[0]scale=720:720,crop=720:720[a] ;[1]scale=720:720[b] ;[a][b]overlay=(W-w)/2 :(H-h)/2"

output.mp4

but it produces output with 889x500. Can anyone help me ? What I'm doing wrong ?


-
ffmpeg remove multiple segments from a video rotate and crop video
2 novembre 2017, par 1234567ffmpeg remove multiple segments from a video rotate and crop video
I have a video of 2 min 25 seconds , i want to remove part from 10 second to 16 second and 20 second to 26 second and rotate video and crop it
I am trying this command
"-y", "-i", j,
"-filter_complex",
"[0:v]trim=start=10:end=16,setpts=PTS-STARTPTS[a]; " +
"[0:v]trim=start=20:end=26,setpts=PTS-STARTPTS[b]; " +
"[0:a]atrim=start=10:end=16,asetpts=PTS-STARTPTS[c]; " +
"[0:a]atrim=start=20:end=26,asetpts=PTS-STARTPTS[d]; " +
"[a][c][b][d]concat=n=2:v=1:a=1[e][f],"+
"crop=" + 40 + ":" + 20 + ":" + 100 + ":" + 100,"+
"transpose=1", "-map", "'[e]'" ,"-map",
"'[f]'", "-preset", "ultrafast",outwhat is the correct command to do it