
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (56)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (9927)
-
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"