Advanced search

Medias (91)

Other articles (64)

  • Des sites réalisés avec MediaSPIP

    2 May 2011, by

    Cette 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, by

    Dans 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, by

    Pour 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 Yanshof

    I 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 Abdallah

    i'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 Marwha

    I 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.mp4

    If i change between(t\,4\,8) to between(t\,0\,4) then overlay video works normally. It is not working for between(t\,4\,8). Please help how to solve it