
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (81)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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. -
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 (11072)
-
Play video overlay over video not working in ffmpeg
24 décembre 2017, par Sumit MarwhaI am trying to play video over another video using ffmpeg. When i am trying to play video from starting then overlay video plays. But if i try to overlay video from n seconds it doesn’t work
ffmpeg -i input.mp4 -i overlay.mp4
-filter_complex [1:v]scale=920:920[out],[out][0]overlay=0:0:enable='between(t\,4\,8)'[out]
-map [out] output.mp4If i change
between(t\,4\,8)
tobetween(t\,0\,4)
then overlay video works normally. It is not working forbetween(t\,4\,8)
. Please help how to solve it -
Merge Audio with video recorded and get new video file React Native
3 septembre 2023, par Oussama Abdallahi'm looking for a methode to merge audio with video file recorded by the camera , i found that the best way is using FFmpeg with react native but there's not any explained documentation on this object, if you any one did something like this before ,


this what i already tried :


react-native-video
react-native-video-processing
react-native-video-editor : with this i can only merge two video files


-
adding audio files to exist video with ffmpeg make the video currapted
21 janvier 2018, par YanshofI have video file (.avi) and audio files (.wav) that i want to marge to ine avi file.
The wav files are marge with some delay ( work fine )
But in some cases the audio files are longer then the video stream and i getting currapted video file that contain only the audio - and i can’t see the video.
When i try to separate the audio and the video from the currapted video output i got the good video file and good audio file that i can use ( see the video and listen to the audio )
I don’t know if its possible to keep the audio and video in case the audio is longer on the delay that the video file.
Beside this, When i adding the audio files ... the video is less time .. i mean that if the video without the audio is 14 minus => after the audio is 13 minus
( when its not currapted )Here how i marge the files ( audio and the video )
ffmpeg.exe -report -i "..\\merged.avi" -i "Storage\\1.wav" -i
"Storage\\2.wav" -i "Storage\\3.wav" -filter_complex "adelay=30000|30000"
"adelay=91000|91000" "adelay=151000|151000" -c:v copy "Storage\\ALL.AVI"