-1

Linux のユーティリティのapply_videoオプションを使用して gmic フィルタを適用しようとしています。gmic

./gmic --apply_video 'small.mp4','-denoise 30,10' -o convert.avi

しかし、出力は端末のエラーです

[gmic]-0./ Start G'MIC interpreter.
[gmic]-0./ Apply command 'small.mp4,-denoise 30,10' on video stream '', with output filename '', first frame 0, last frame -1 and frame step 1.
[gmic] *** Error in ./apply_video/*local/*substitute/ *** Command '-basename': Undefined argument '$1', in expression '$1' (for 2 arguments specified).
[gmic] Command '-basename' has the following description: 

-basename:
                    file_path,_variable_name_for_folder

    Return the basename of a file path, and opt. its folder location.
    When specified 'variable_name_for_folder' must starts by an underscore
    (global variable accessible from calling function).

gmic --apply_video の正しい構文は何ですか?

バージョン1.7.3を使用しています

4

2 に答える 2

0

私は利用可能な最新バージョン1.7.5_preを使用しており、次のように使用しています。

$ gmic -w -apply_video input.avi,\"-denoise 30,10\",0,-1,1,output.avi
于 2016-08-10T11:30:13.793 に答える