提示コードですがコマンドを参考サイト通りに入力しても"無効な引数"です。と表示されてしまい上手くエンコードできませんエラーコードを翻訳しましたが無効な引数とは何が無効なのでしょうか?
エラーコード [ [NULL @ 0000027cb1e71b00] Unable to find a suitable output format for 'ffmpeg'
ffmpeg: Invalid argument ]
コマンド
「ffmpeg -i "C:\Users\yw325\Desktop\01. Spread the Wings!!.flac" -vn -ar 192000 -ac 2 -acodec alac -f alac "C:\Users\yw325\Desktop\01. Spread the Wings!!.alac"」
参考サイト:
https://qiita.com/CyberRex/items/960bbd0f348ad8dca544
https://qiita.com/suzutsuki0220/items/43c87488b4684d3d15f6
cs
1using System; 2 3namespace Test 4{ 5 class Program 6 { 7 8 static string GetCommand(string path,string extension) 9 { 10 string ext = System.IO.Path.GetExtension(path); 11 Console.WriteLine("ファイルの拡張子: " + ext); 12 string outPath = path.Replace(ext, "."+extension); 13 14 15 string command = "ffmpeg - i " + path + " - vn - ar 192000 - ac 2 - acodec " + extension + " - f " + extension + " " + outPath + "\""; 16 17 Console.WriteLine(command); 18 return command; 19 } 20 21 static void Main(string[] args) 22 { 23 //Console.WriteLine("Hello World!"); 24 string str,ext; 25 str = Console.ReadLine(); 26 ext = Console.ReadLine(); 27 28 29 System.Diagnostics.Process.Start("ffmpeg/bin/ffmpeg.exe",GetCommand(str,ext)); 30 31 32 33 34 35 } 36 } 37} 38
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/04/01 09:23
2021/04/01 09:54 編集