Recherche avancée

Médias (91)

Autres articles (111)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

Sur d’autres sites (11725)

  • Quality problem when converting JPEG to GIF using FFmpeg

    25 octobre 2018, par yyms

    I created a GIF using FFmpeg as shown below.
    However, there is a problem with GIF quality. As you can see in the attachment, there are square particles on the GIF surface. I want to improve this.

    • Is it possible to solve this problem with the FFmpeg default option without using the palette option ?

    Can I erase the repeating rectangle pattern shown in the GIF ?

    • "-f", "image2", "-i", "load_path", "-vf", "scale=720x450", "-y", "save_path"
    <img src="local/cache-vignettes/L300xH180/I2Stygif-c60c60e-d4d96.png?1541836614" width='300' height='180' />

    enter image description here

  • How can I make a slideshow of images into a video with each image having a specific length of frames to be shown ?

    24 novembre 2013, par jett

    Right now I am using something like this to create a video from a selection of images :

    avconv -i input%05d.png -r 24 -vsync cfr -c:v libx264 output.mp4

    But I want each picture to have a separate amount of time spent on it, so if I have 5 images I might want :

    [10frames, 40frames, 5frames, 80frames, 10frames]

    To be specified. The only thing I could find that may be a solution is to create five separate videos- set the length then merge them together, is this my only choice here ?

  • Creating a GIF with fluent-ffmpeg, overlay is not shown ?

    5 mars 2021, par blablubla12

    I'm trying to create a GIF from an mp4 video, with an overlay on it. So there are two inputs, video.mp4 and overlay.png, both of them are https urls.

    &#xA;

    The gif is created, ffmpeg shows no errors but the overlay doesn't appear in the gif. The code :

    &#xA;

    ffmpeg()&#xA;    .withOptions([&#xA;        &#x27;-i video.mp4&#x27;&#xA;        `-ss 1`,&#xA;        `-i overlay.png`,&#xA;        &#x27;-f gif&#x27;,&#xA;        `-filter_complex [0:v]trim=duration=3,setpts=PTS-STARTPTS,scale=450:-1[trimmed];[trimmed]split[trimmed1][trimmed2];[trimmed2]reverse[rev];[trimmed1][rev]concat=n=2:v=1:a=0[v];[v][1:v]overlay=0:0:format=rgb[overlayed];[overlayed]split[a][b];[a]palettegen=stats_mode=diff[palette];[b][palette]paletteuse=bayer:bayer_scale=3.5`&#xA;    ])&#xA;    .on(&#x27;start&#x27;, cmdLine => {&#xA;        console.log(`Started FFMpeg`, cmdLine);&#xA;    })&#xA;    .on(&#x27;end&#x27;, () => {&#xA;        console.log(`Success!.`);&#xA;        resolve();&#xA;    })&#xA;    .on(&#x27;error&#x27;, (err: Error, stdout, stderr) => {&#xA;        console.log(` Error:`, err.message);&#xA;        console.error(&#x27;stdout:&#x27;, stdout);&#xA;        console.error(&#x27;stderr:&#x27;, stderr);&#xA;        reject();&#xA;    })&#xA;    .pipe(destinationStream, { end: true });&#xA;

    &#xA;

    Note : I have to use a stream, instead of saving to file.

    &#xA;