摘要:
/// 使用Post方法上传文件 /// </summary> /// <param name="url"></param> /// <param name="files">需要上传的文件,Key:对应要上传的Name,Value:本地文件名</param> public void Upload(s 阅读全文
摘要:
/// 使用Post方法上传文件 /// </summary> /// <param name="url"></param> /// <param name="files">需要上传的文件,Key:对应要上传的Name,Value:本地文件名</param> public void Upload(s 阅读全文
摘要:
1 function StrCmpLogicalW(psz1, psz2: PWideChar): Integer; stdcall; external 'shlwapi.dll'; 2 3 4 procedure GetFileList(list: TStringList; path: strin 阅读全文
摘要:
打开注册表项 计算机\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon 双击选择 Userinit 在文本框中加入 c:\Windows\explorer.exe 阅读全文
摘要:
uses Winapi.ActiveX; procedure AddFirewallOutException(const Caption, AppPath: string); var Profile: Integer; Policy2: OleVariant; RObject: OleVariant 阅读全文
摘要:
udpHelper.pas unit udpHelper; interface uses Classes, Windows, SysUtils, WinSock; type TRecv = procedure(RIP: string; buf: PChar; Bufsize: Integer) of 阅读全文
摘要:
def get_search_github(keyword, language, pageIndex): params = { "q" : keyword, "type": "Repositories", "l": language, "p": pageIndex } p = urllib.pars 阅读全文
摘要:
procedure SendMouseWheel(destHandle: THandle; goUp: Boolean); var message: TWMMouseWheel; delta: SmallInt; begin if goUp then delta := WHEEL_DELTA els 阅读全文
摘要:
本文转自网友整理,感谢! 作者:唐 冰(Tobey) (http://www.cnblogs.com/tobey/)版权声明:本文的版权归作者与博客园共同所有。转载时请在明显地方注明本文的详细链接,未经作者同意请不要删除此段声明,感谢您为保护知识产权做出的贡献。 基本选项 -formats 输出所有 阅读全文
摘要:
ffmpeg命令 ::2倍速度 ffmpeg -y -i 1.mp4 -filter:a "atempo=2" -filter:v "setpts=0.5*PTS" out-2-audio.mkv ::0.5倍速度 ffmpeg -y -i 1.mp4 -filter:a "atempo=0.5" 阅读全文
|