在delphi.i中使用Iam初學者創建一個示例應用程序我需要一個help.how在Delphi中使用FFMPEG?如何在Delphi中使用FFMPEG
2
A
回答
1
4
FFMPEG是一個命令行應用程序,讓您可以輕鬆地使用ShellExecute()
,一些例子here調用它。
首先,您需要決定使用哪些命令行開關。
如果您需要進一步的幫助,我可以在明天發佈代碼。
編輯:
這裏是運行一個命令行應用程序的更先進的方法,包括:它的輸出重定向到一個備忘錄用於觀看:
procedure GetDosOutput(CommandLine, WorkDir: string;aMemo : TMemo);
var
SA: TSecurityAttributes;
SI: TStartupInfo;
PI: TProcessInformation;
StdOutPipeRead, StdOutPipeWrite: THandle;
WasOK: Boolean;
Buffer: array[0..255] of AnsiChar;
BytesRead: Cardinal;
Handle: Boolean;
begin
AMemo.Lines.Add('Commencing processing...');
with SA do begin
nLength := SizeOf(SA);
bInheritHandle := True;
lpSecurityDescriptor := nil;
end;
CreatePipe(StdOutPipeRead, StdOutPipeWrite, @SA, 0);
try
with SI do
begin
FillChar(SI, SizeOf(SI), 0);
cb := SizeOf(SI);
dwFlags := STARTF_USESHOWWINDOW or STARTF_USESTDHANDLES;
wShowWindow := SW_HIDE;
hStdInput := GetStdHandle(STD_INPUT_HANDLE); // don't redirect stdin
hStdOutput := StdOutPipeWrite;
hStdError := StdOutPipeWrite;
end;
Handle := CreateProcess(nil, PChar('cmd.exe /C ' + CommandLine),
nil, nil, True, 0, nil,
PChar(WorkDir), SI, PI);
CloseHandle(StdOutPipeWrite);
if Handle then
try
repeat
WasOK := ReadFile(StdOutPipeRead, Buffer, 255, BytesRead, nil);
if BytesRead > 0 then
begin
Buffer[BytesRead] := #0;
AMemo.Text := AMemo.Text + Buffer;
end;
until not WasOK or (BytesRead = 0);
WaitForSingleObject(PI.hProcess, INFINITE);
finally
CloseHandle(PI.hThread);
CloseHandle(PI.hProcess);
end;
finally
CloseHandle(StdOutPipeRead);
AMemo.Lines.Add('Processing completed successfully.');
AMemo.Lines.Add('**********************************');
AMemo.Lines.Add('');
end;
end;
可以稱爲像這樣:
cmd := 'ffmpeg.exe -i "'+InFile+'" -vcodec copy -acodec copy "'+OutFile+'"';
GetDosOutput(cmd,FFMPEGDirectory,MemoLog);
+0
嗨西蒙,你能給我舉個例子 – periyasamy 2012-02-01 10:38:10
相關問題
- 1. 如何使用FFMPEG在php
- 2. 如何使用ffmpeg
- 3. 如何在iPHone中使用ffmpeg代碼
- 4. 如何在yii中使用ffmpeg
- 5. 如何在android中使用ffmpeg?
- 6. 如何在ffmpeg中使用youtube-dl
- 7. 如何在ffmpeg中使用librtmp?
- 8. 如何在android studio中使用Ffmpeg?
- 9. 如何在java中使用FFMPEG?
- 10. 如何使用parsedelimeter在Delphi
- 11. 如何在Delphi中使用Bloomberg API?
- 12. 如何在Delphi中使用宏?
- 13. 如何在Delphi 7中使用chm?
- 14. 如何在Delphi中使用水平TListbox?
- 15. 如何在Delphi中使用C++對象
- 16. 如何在delphi中正確使用ListView?
- 17. 如何在Delphi中使用DigiDoc C++庫?
- 18. 如何在delphi中使用MultiByteToWideChar?
- 19. 如何在Delphi XE7中使用TFDTable(FireDAC)?
- 20. 如何在Delphi XE2中使用IMultiLanguage2?
- 21. 如何在delphi中使用windows IME?
- 22. 如何在Delphi XE3中使用Synapse庫?
- 23. 如何在Delphi中使用ManagementObjectSearcher?
- 24. 如何在Delphi中使用Word和Excel?
- 25. 如何在Delphi中使用動畫PNG?
- 26. 如何在delphi中使用isset()
- 27. 如何在Delphi中使用tagDEC
- 28. 如何在Delphi中使用大文件?
- 29. 如何在delphi中使用difxapi.dll?
- 30. 如何使用Delphi
我看不出這個問題有什麼問題 – Simon 2012-02-02 03:41:55
同樣適合我,完全有效,因爲我在尋找相同的信息 – ruhalde 2013-07-22 17:47:35