Recherche avancée

Médias (91)

Autres articles (34)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

Sur d’autres sites (3725)

  • 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
  • FFmpeg transcoding stretches Vertically recorded videos

    28 juin 2017, par oteamm

    Hi I am having an issue with the Transcoder (FFmpeg) .

    Problem Details :
    Vertically recorded videos are appearing stretched (widened) upon transcode.

    For videos which are recorded vertically (height is more than width), the transcoded video generated does shrink vertically. If we change the aspect ratio for such files it will ruin the other video transcodes for which the transcode is generating correctly.

    Expected Behaviour :
    should not shrink/stretch vertically recorded videos

    Impact :
    we are seeing a distorted version of video, stretched horizontally

    Notes :
    Version of FFmpeg Software that you’re is used : - ffmpeg-2.8.6-win64
    (default Settings used)

    Request :
    Need to a way to correct this as if we change the aspect ratio for such files it will ruin the other video proxies for which the proxy is generating correctly.
    Please suggest, if there is any way to AUTO select the aspect ratio of original file and generate transcode accordingly. Thanks !

  • Videos converted using FFMPEG do not have video duration information

    6 mars 2016, par Harshad M

    I am using FFMPEG to convert uploaded videos to .flv, after conversion the flv video doesn’t have information about it’s duration. So the user cannot rewind/forward, replay or see a specific part of it. The code is as follows :

    "ffmpeg -i $srcfile_path -s 320x240 -ar 44100 -b 2048k -r 12 $desfilepath" ;
    

    Please help. Thanks in advance.