Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (37)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (6066)

  • Getting "Cannot find ffprobe error " when attempting to run nodejs script

    26 février 2020, par Farid Hajnal

    I am attempting to use an npm package for splitting audio (https://github.com/calufornia/audio-split), however I am not able to run a single test since I get the following error on my callback :
    Error : Cannot find ffprobe, I have read a bit and it seems that this is directly related to the npm package fluent_ffmpeg, which is actually a dependency of the first package I mentioned.

    The problem on some other questions/forums is that people do not have properly installed ffmpeg on their environment. In my case however, I have made sure that my PATH is updated with the ffmpeg directory (C :\FFmpeg\bin for me), and I am able to open a command prompt and run both

    ffmpeg -version

    and

    ffprobe -version

    I would much appreciate if anyone else has struggled with this previously and could provide me with some more guidance. Thanks

  • Process GIF using FFmpeg libraries - can't find parser at av_parser_init

    24 novembre 2018, par natario

    I am playing with ffmpeg libs, namely libswscale and libavcodec for now. My goal is resize GIF files. From my ridiculous understanding, I think I need to

    • decode the GIF and get an AVFrame
    • process the frame with libswscale
    • encode again into GIF

    But I am stuck at step 1. Based on official sample at https://github.com/FFmpeg/FFmpeg/blob/master/doc/examples/decode_video.c , I need to get a parser :

    codec = avcodec_find_decoder(AV_CODEC_ID_GIF);
    parser = av_parser_init(codec->id);

    But no parser is found. I am not touching parser in my configure call, so I take all :

    Enabled parsers:
    aac                       cavsvideo                 dvbsub                    h263                      mpegvideo                 sipr                      xma
    aac_latm                  cook                      dvd_nav                   h264                      opus                      tak
    ac3                       dca                       dvdsub                    hevc                      png                       vc1
    adx                       dirac                     flac                      mjpeg                     pnm                       vorbis
    av1                       dnxhd                     g729                      mlp                       rv30                      vp3
    avs2                      dpx                       gsm                       mpeg4video                rv40                      vp8
    bmp                       dvaudio                   h261                      mpegaudio                 sbc                       vp9

    What am I doing wrong ? If this is the wrong approach, what is the correct one ?

  • Error "Unable to find a suitable output format for" while Doing Overlay and Audio loop on Video

    23 octobre 2020, par Vinesh Chauhan

    i want to add image as watermark on video and also add music in loop as background music of video. i have set command of ffmpeg as below

    


    ffmpeg -i input.mp4 -i 1.png -i 2.png -filter_complex "amovie=test.m4a:loop=0,volume=0.2[a2];[0]volume=0.5[a1];[a1][a2]amix[a3];[0][1]overlay=0:0:enable='between(t,2,5)'[ovrlay]" -map [ovrlay] -map [a3] -shortest -t 11 testVolumemp4AMixCheck.mp4


    


    this command set is working fine in PC (ffmpeg.exe)

    


    but when i tried to use this same command in android device it gave me error

    


    [NULL @ 0x7af24c1000] Unable to find a suitable output format for [0]volume=0.5[a1]


    


    can any one have idea about this ?