
Advanced search
Medias (91)
-
Géodiversité
9 September 2011, by ,
Updated: August 2018
Language: français
Type: Text
-
USGS Real-time Earthquakes
8 September 2011, by
Updated: September 2011
Language: français
Type: Text
-
SWFUpload Process
6 September 2011, by
Updated: September 2011
Language: français
Type: Text
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 May 2011
Updated: July 2013
Language: français
Type: Text
-
Podcasting Legal guide
16 May 2011, by
Updated: May 2011
Language: English
Type: Text
-
Creativecommons informational flyer
16 May 2011, by
Updated: July 2013
Language: English
Type: Text
Other articles (64)
-
Des sites réalisés avec MediaSPIP
2 May 2011, byCette 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. -
Taille des images et des logos définissables
9 February 2011, byDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Librairies et logiciels spécifiques aux médias
10 December 2010, byPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel; FFMpeg avec le maximum de décodeurs et (...)
On other websites (3871)
-
adding audio files to exist video with ffmpeg make the video currapted
21 January 2018, by 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" -
Merge Audio with video recorded and get new video file React Native
3 September 2023, by 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


-
Play video overlay over video not working in ffmpeg
24 December 2017, by 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