Recherche avancée

Médias (91)

Autres articles (57)

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

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    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.

Sur d’autres sites (5193)

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

  • 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 !

  • 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