Chatty, OBS 可攜版使用法 (portable, 網咖用)
這個模式下,設定檔會和程式放在一起
方便打包帶到其他電腦使用,適合網咖使用
Chatty/OBS任何版本都可使用
可用我預先寫好的檔案複製進Chatty/OBS根目錄,執行使用
或你想自己打下面指令存檔
Chatty portable.cmd 放在跟Chatty.jar同目錄
start /D "%cd%" javaw -da -Xbatch -Xmx200M -jar Chatty.jar -cd
OBS portable.cmd 放在跟 bin, data, obs-plugins 同目錄
start /D "%cd%\bin\64bit" obs64.exe -p
非portable mode設定檔放在 %appdata%\obs-studio
要轉換成portable mode可以去複製
從 UI/obs-app.cpp 可以知道,OBS還有其他方法跑portable
在OBS根目錄新增下列其中一個檔案 (內容可空白)
建議使用第一個檔 portable_mode ,讓程式早點結束判定
#if !OBS_UNIX_STRUCTURE
if (!portable_mode) {
portable_mode =
os_file_exists(BASE_PATH "/portable_mode") ||
os_file_exists(BASE_PATH "/obs_portable_mode") ||
os_file_exists(BASE_PATH "/portable_mode.txt") ||
os_file_exists(BASE_PATH "/obs_portable_mode.txt");
}
#endif
方便打包帶到其他電腦使用,適合網咖使用
Chatty/OBS任何版本都可使用
可用我預先寫好的檔案複製進Chatty/OBS根目錄,執行使用
或你想自己打下面指令存檔
Chatty portable.cmd 放在跟Chatty.jar同目錄
start /D "%cd%" javaw -da -Xbatch -Xmx200M -jar Chatty.jar -cd
OBS portable.cmd 放在跟 bin, data, obs-plugins 同目錄
start /D "%cd%\bin\64bit" obs64.exe -p
非portable mode設定檔放在 %appdata%\obs-studio
要轉換成portable mode可以去複製
從 UI/obs-app.cpp 可以知道,OBS還有其他方法跑portable
在OBS根目錄新增下列其中一個檔案 (內容可空白)
建議使用第一個檔 portable_mode ,讓程式早點結束判定
#if !OBS_UNIX_STRUCTURE
if (!portable_mode) {
portable_mode =
os_file_exists(BASE_PATH "/portable_mode") ||
os_file_exists(BASE_PATH "/obs_portable_mode") ||
os_file_exists(BASE_PATH "/portable_mode.txt") ||
os_file_exists(BASE_PATH "/obs_portable_mode.txt");
}
#endif
留言
張貼留言