Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (32)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (3706)

  • ffmpeg Unable to find a suitable output format for 'ffmpeg -i '

    20 mai 2017, par Ramos

    Hi everyone i try to mirror my video file i use this library for ffmpeg

    compile ’com.writingminds:FFmpegAndroid:0.3.2’

    and this is my commande :

    uriPathOut = getInternalDirectoryPath() + "/Movies/3.mp4" ;
    uriPathIn = getInternalDirectoryPath() + "/Movies/1.mp4" ;

    cmd = new String[]"ffmpeg -i",uriPathIn," -vf \"vflip\" -metadata:s:v rotate=180 ",uriPathOut ;

    and i always get this error :

    ’[NULL @ 0xb84192d0] Unable to find a suitable output format for ’ffmpeg -i’
    ffmpeg -i : Invalid argument’

    is there any solution help me please.

  • FFMPEG cannot find openCV while integrating modified HEVC

    12 mai 2017, par haider ali

    We modified HEVC (open-source downloaded from bitbucket) encoder and have included some openCV libraries.
    It works perfect on visual studio.

    Problem :
    FFMPEG is unable to find openCV libraries.

    Please suggest us a solution ?

    Are there any other software in which we can integrate our customized HEVC library ?

  • remove . from the results of find

    12 mai 2017, par user2680603

    I am trying to use the below command on ubuntu to find files in one folder and feed through FFmpeg and output to another folder. The problem is that when it processes the output path and filename it adds a . to the path like so : /conversions./resultFromFind.mkv

    find -name '*720p*.mp4' -exec ffmpeg -i {} -c:v copy -c:a ac3 /home/plex/library/localFiles/Complete/conversions{} \;

    I understand why it does that but can’t find the right search term to get a solution. How do I remove the . ?