Recherche avancée

Médias (91)

Autres articles (18)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (523)

  • FFMPEG - Combining one image and one audio together

    8 avril 2017, par B Hok
    @echo off
    for %%a in (*.mp3) DO ffmpeg -i "%%a" -f image2 -loop 1 -r 30 -i image.jpg -shortest -c:a copy -c:v libx264 -crf 23 -preset veryfast -vf scale=1280:720 "%%a.mp4"
    pause

    I have this batch code here, however it doesn’t output correctly. The mp3 is successfully converted to a mp4, though the image is not merging with the audio.

    I have the audio and the jpg called image.jpg in the folder together.

  • Create video from image (fit but not stretch)

    17 juin 2015, par rocknow

    I’m trying to create video from image but it’s fit to video size (hd). How to keep aspect ratio of my image BUT get 1280 x 720 video ?

    Here is current result (image is 3264 x 2448 px, video 1280 x 720 px) :

    enter image description here

    Here is my current command :

    ffmpeg -loop 1 -i IMAGE_PATH -t 3 -s hd720 -c:v mpeg4 -pix_fmt yuv420p -preset ultrafast RESULT_PATH

    Should I divide my task to two operations (generate image with black stripes then generate video) ? Could you help to modify command to get desired result ?

  • ffmpeg 1 image with many frames

    15 août 2015, par Arriba

    Is that possible to create thumbnails of video using ffmpeg in this format :

    enter image description here

    I need to output a single image with vertical shots every 10 seconds.

    I know only how to create one image with one frame :

    <?php

    $ffmpeg = '/usr/local/bin/ffmpeg';

    $video = '1.mp4';

    $image = '1.png';

    $interval = 1;

    $size = '300x210';

    $cmd = "$ffmpeg -i $video -deinterlace -an -ss $interval -f mjpeg -t 1 -r 1 -y -s $size $image 2>&1";      
    $return = `$cmd`;

    ?>