Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (62)

  • 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 (10838)

  • Combine/Concatenate 3 videos with crossfade

    29 septembre 2016, par Zalon

    I wan’t to combine 3 videos using ffmpeg, and have a crossfade between the videos. I’ve been able to do this with 2 videos using the code below.

    What I would like to do is have a end result like this :

    intro
    <crossfade>
    video
    <crossfade>
    outro
    </crossfade></crossfade>

    Can someone help me convert this code to be used with 3 videos ?

    ffmpeg -i intro.mp4 -i video.mp4 -an \
    -filter_complex \
    "   [0:v]trim=start=0:end=9,setpts=PTS-STARTPTS[firstclip];
       [1:v]trim=start=1,setpts=PTS-STARTPTS[secondclip];
       [0:v]trim=start=9:end=10,setpts=PTS-STARTPTS[fadeoutsrc];
       [1:v]trim=start=0:end=1,setpts=PTS-STARTPTS[fadeinsrc];
       [fadeinsrc]format=pix_fmts=yuva420p,
                   fade=t=in:st=0:d=1:alpha=1[fadein];
       [fadeoutsrc]format=pix_fmts=yuva420p,
                   fade=t=out:st=0:d=1:alpha=1[fadeout];
       [fadein]fifo[fadeinfifo];
       [fadeout]fifo[fadeoutfifo];
       [fadeoutfifo][fadeinfifo]overlay[crossfade];
       [firstclip][crossfade][secondclip]concat=n=3[output];
       [0:a][1:a] acrossfade=d=1 [audio]
    " \
    -map "[output]" -map "[audio]" result.mp4
  • Is there a way to utilize FFMpeg in .NET MAUI for editing videos ?

    9 février 2024, par D Eatchel

    I've tried to find all the information I can about utilizing FFMpeg inside of .NET MAUI (iOS & Android) to easily edit videos on the device, but it seems like there is very little information on how to accomplish this.

    &#xA;

    FFMpeg is widely used in the video industry, and I believe a FFMpeg plugin for .NET MAUI would be hugely beneficial to the MAUI community.

    &#xA;

    It looks like you can use dependency injection to get interfaces for each OS with their own binaries, but I personally haven't been able to get this to work.

    &#xA;

  • FFMPEG How to merge several videos to one file with fade effect and add audio ?

    13 juin 2016, par user2455079

    Need to merge several videos to one and add sound track mp3 file and last video with sound.

    Only found this solution :
    http://superuser.com/questions/778762/crossfade-between-2-videos-using-ffmpeg
    But uses static file length in parameters...

    Ok, i can calculate all lengths before and add audio :

    ffmpeg -i music.mp3 -i 1.mov -i 2.mov -f lavfi -i color=black:s=1280x720 -filter_complex "[1:v]format=pix_fmts=yuva420p,fade=t=out:st=4:d=1:alpha=1,setpts=PTS-STARTPTS[va1]; [2:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+4/TB[va2]; [3:v]scale=1280x720,trim=duration=9[over]; [over][va1]overlay[over1]; [over1][va2]overlay=format=yuv420[outv]" -vcodec libx264 -map 0:a -map [outv] -shortest out.mp4

    How to merge more than two videos ??
    And how to add another end.avi which contains sound and mute music.mp3 ?