Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (44)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

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

Sur d’autres sites (7375)

  • Set thumbnail image of Mp4 video using ffmpeg command line

    7 avril 2014, par Karanbir Singh

    I am making application which includes setting of video thumbnail to some desired image. I know it can be done using ffmpeg.

    I tried following ffmpeg command but it works only on some devices

    ffmpeg -i Video.mp4 -i Image.png -acodec copy -vcodec copy -map 0 -map 1:0 outVideo.mp4

  • Overlay image on video in ffmpeg for android studio

    31 mars 2021, par Vrushabh Dhameliya

    When i add image on video but my image cut off right side in ffmpeg android studio so how to give image width ?

    


    [1] : https://i.stack.imgur.com/Y21Si.jpg

    


    below is my command :

    


      

    1. String command = "-i '" + uri.toString() + "'"
+ " -i '" + layer.getAbsolutePath() + "'"
+ " -filter_complex "[0:v][1:v]overlay="+getX+" :"+getY+"[outVideo],[0:a]volume=1 :[audio0]"
-map [outVideo] -map [audio0]"
+ " '"
+ mDestinationPath + "'" ;
    2. 


    


  • Using FFMPEG to Batch Convert a Series of Separate Image Sequences

    1er juillet 2018, par RFrendt

    I am trying to convert a large set of image sequences (each contained within its own subfolder) to video files. I can currently convert one sequence at a time by using ffmpeg and this code :

    ffmpeg -r 30 -i "Image%%05d.jpg" -vf scale=1376:768 -qscale:v 2 "Display 1.m2v"

    I also occasionally batch convert avi files which are contained within a single folder using :

    for %%a in ("*.avi") do ffmpeg -i "%%a" -qscale:v 2 "%%~na.m2v"

    I assumed I’d be able to use this batch approach with separate image sequences.
    What I’m having trouble with is figuring out the syntax for a similar batch code that will convert whatever image sequence is present in a folder (or subfolder) using the anyfile%%05d naming convention. The %%a syntax in the second line of code doesn’t seem to be compatible with the way ffmpeg recognizes image sequences anyfile%%05d in the first. Any thoughts ?