Recherche avancée

Médias (0)

Mot : - Tags -/navigation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (38)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • problem with creating a robot voice with flutterFFmpeg

    28 février 2021, par Sadiq Samaila

    so here is the code I ran

    


                          String commandToExecute =
                      "-i $aud -filter_complex 'afftfilt=real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75' " +
                          outputPath;
   
                  _flutterFFmpeg.execute(commandToExecute).then((rc) => print(
                      "FFmpeg process exited with rc $rc $appDocumentDir"));


    


    and I got this error

    


    E/mobile-ffmpeg( 5493): [AVFilterGraph @ 0x7ce619159800] No such filter: 'im)*sin(0):imag'
E/mobile-ffmpeg( 5493): Error initializing complex filters.
E/mobile-ffmpeg( 5493): Invalid argument
D/flutter-ffmpeg( 5493): FFmpeg exited with rc: 1


    


    I tried changing all single quote(') to double quote(") in the command but it did not work.

    


  • Revision 9068bce4e7 : Put iterative motion search under speed control Enable iterative motion search

    3 juin 2013, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Put iterative motion search under speed control

    Enable iterative motion search for compound inter-inter prediction
    of block sizes 4x4/4x8/8x4 only when best coding quality is selected.
    The iterative motion search provides about 0.1% gains for derf and
    stdhd at this point, at the expense of longer runtime.

    Change-Id : Idc03e7f827e51f1bb8d269bc3752ee297a6bbfe5

  • problem ffmpeg batch convert .mkv to .mp4 with subtiles on .mkv file [closed]

    9 décembre 2020, par damvelisa

    I am trying to batch convert a large number of .mkv video files to .mp4 while hard coding the subtitles included in the .mkv files. I would like to retain as much quality as possible.
is use this code but give error

    


     for f in *.mkv; do ffmpeg -i "$f" -vf subtitles="${f%.mkv}" -acodec copy "${f%.mkv}.mp4"; done


    


    this error