Recherche avancée

Médias (91)

Autres articles (19)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6844)

  • ffmpeg - how to merge multiple audio with time offset into a video ? [on hold]

    29 mai 2017, par Xi Xiao

    I want to use FFMPEG to merege multiple audios and one video.

    Materials are :

    1. two short audio clips (short-clip-1.3gp, short-clip-2.3gp),
    2. one video clip (1.mp4) with sound,
    3. and one audio clip (1.mp3) that has same duration as the video clip.

    Requirement is :

    1. Remove video clip’s sound
    2. add 1.mp3
    3. add short-clip-1.3gp at 0 sec timetamp, short-clip-2.3gp at 10 sec timestamp.

    The requirement is depicted like below.

    <—short-clip-1.3gp time duration—> <—short-clip-2.3gp time duration—>

    <-------------------------------------- 1.mp3 ----------------------------------------------------->

    <-------------------------------------- 1.mp4 ----------------------------------------------------->

    The command I use is as below, but it does not work as expected.

    ffmpeg -i 1.mp4 -i 1.3gp -itsoffset 00:00:10 -i 2.3gp -i 1.mp3 -map 0:v -map 1:a -map 2:a -map 3:a -c:v copy -c:a copy result.mp4

    Any hint is appreciated !

  • FFmpeg queue input is backward in time mkv to webm [on hold]

    10 juillet 2014, par woj_jas

    I’m trying to convert mkv file to webm by ffmpeg.
    I’m using :

    ffmpeg -i inputfile.mkv -b 1500k -vcodec libvpx -ab 160000 -f webm -g 30 outputfile.webm

    My problem is that I get Error :

    [libvorbis @0461bb60 Queue input is backward in time]

    Can somebody help me fix that ?

  • Converting 4K images to 1080p time lapse [closed]

    4 mai 2021, par user15830957

    I have a folder of 4K (resolution) images and I want to convert them to a time lapse video.

    &#xA;

    I tried with the command :

    &#xA;

    ffmpeg.exe -framerate 13 -i "IMG_%04d.jpg" "output.mp4"

    &#xA;

    but the result was a huge 5GB file.

    &#xA;

    I tried downgrading to 1080p but the file size was exactly the same :

    &#xA;

    ffmpeg.exe -framerate 13 -s hd1080 -i "IMG_%04d.jpg" "output.mp4"

    &#xA;

    What is the best way to make a smaller file ?

    &#xA;