Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (43)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (4642)

  • How to concat videos from a file list while adding black fade transitions in ffmpeg

    6 avril 2022, par connor449

    I have a piece of code that concats videos from a file list. It works perfectly.

    


    ffmpeg -f concat -safe 0 -i file_list.txt -c copy mergedVideo.avi


    


    However, I want to add a black fade transition between each video. I found this code snippet that apparently does this, but it requires you to input each file by hand.

    


    ffmpeg -i in.mp4 -i main.mp4 -i out.mp4 -filter_complex \
  "[0:v]fade=type=out:duration=2:start_time=28,setpts=PTS-STARTPTS[v0]; \
   [1:v]fade=type=in:duration=2,fade=type=out:duration=2:start_time=28,setpts=PTS-STARTPTS[v1]; \
   [2:v]fade=type=in:duration=2,setpts=PTS-STARTPTS[v2]; \
   [v0][0:a][v1][1:a][v2][2:a]concat=n=3:v=1:a=1[v][a]" \
  -map "[v]" -map "[a]" output.mp4


    


    I want to be able to read all the video files from a txt file as I have hundreds of videos. How do I combine these two snippets, or is there a better way to accomplish the concat with fade transitions ?

    


  • FFMPEG combining videos - returning video with black background ?

    8 juin 2016, par Julia

    I’m trying to combine two .mp4 files so they play next to each other in one window. They are the same length (9 seconds), have the same number of frames, and the sources are both independently playable. Here’s what i’ve tried so far :

    ffmpeg -i highres_BH_140.mp4 -i BH_140.mp4 -filter_complex "[0:v:0]pad=iw*2:ih[bg]; [bg][1:v:0]overlay=w" -b 16M combined.mp4

    and

    ffmpeg -i BH_140.mp4 -i highres_BH_140.mp4 -filter_complex vstack stacked.mp4

    This just creates a video with a black background, although it does play for 9 seconds. One video is a higher resolution, could this be a problem ? Or is it the fact that they’re .mp4 files and not .mpg ?

    I’m still trying to understand ffmpeg’s syntax, so it’s possible I’m making a silly mistake somewhere.

    Thanks !

  • FFMPEG trim video resulting not moving videos and black video with audio

    13 juin 2023, par Rafliii

    I tried to trim my video based on start and end time with the following code :

    


    ffmpeg -ss 02:06:30.500 -to 02:06:32.417 -i movie.mp4 -c copy output.mp4

    


    The output video is not moving video and some of them are black videos with audio. What should I do ?

    


    enter image description here

    


    What should I do ?