mirror of
https://github.com/occ-ai/obs-localvocal
synced 2024-11-08 03:08:07 +00:00
ab1b74a35c
* Update buffer size and overlap size in whisper-processing.h and default buffer size in msec in transcription-filter.cpp * Update buffer size and overlap size in whisper-processing.h and default buffer size in msec in transcription-filter.cpp * Update suppress_sentences in en-US.ini and transcription-filter-data.h * Update suppress_sentences and fix whitespace in transcription-filter-data.h, whisper-processing.h, transcription-utils.cpp, and transcription-filter.h * Update whisper-processing.cpp and whisper-utils.cpp files * Update findStartOfOverlap function signature to use int instead of size_t * Update Whispercpp_Build_GIT_TAG to use commit 7395c70a748753e3800b63e3422a2b558a097c80 in BuildWhispercpp.cmake * Update buffer size and overlap size in whisper-processing.h and default buffer size in msec in transcription-filter.cpp * Update unused parameter in transcription-filter-properties function * Update log level and add suppress_sentences feature in transcription-filter.cpp and whisper-processing.cpp * Add translation output feature in en-US.ini and transcription-filter-data.h * Add DTW token timestamps and buffered output feature * trigger rebuild * Refactor remove_leading_trailing_nonalpha function to improve readability and performance * Refactor is_lead_byte and is_trail_byte macros for improved readability and maintainability * Refactor is_lead_byte and is_trail_byte macros for improved readability and maintainability * trigger build
101 lines
3.3 KiB
CMake
101 lines
3.3 KiB
CMake
cmake_minimum_required(VERSION 3.16...3.26)
|
|
|
|
include("${CMAKE_CURRENT_SOURCE_DIR}/cmake/common/bootstrap.cmake" NO_POLICY_SCOPE)
|
|
|
|
project(${_name} VERSION ${_version})
|
|
|
|
option(ENABLE_FRONTEND_API "Use obs-frontend-api for UI functionality" ON)
|
|
option(ENABLE_QT "Use Qt functionality" ON)
|
|
|
|
include(compilerconfig)
|
|
include(defaults)
|
|
include(helpers)
|
|
|
|
add_library(${CMAKE_PROJECT_NAME} MODULE)
|
|
|
|
find_package(libobs REQUIRED)
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE OBS::libobs)
|
|
|
|
if(ENABLE_FRONTEND_API)
|
|
find_package(obs-frontend-api REQUIRED)
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE OBS::obs-frontend-api)
|
|
endif()
|
|
|
|
if(ENABLE_QT)
|
|
find_qt(COMPONENTS Widgets Core)
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE Qt::Core Qt::Widgets)
|
|
target_compile_options(
|
|
${CMAKE_PROJECT_NAME} PRIVATE $<$<C_COMPILER_ID:Clang,AppleClang>:-Wno-quoted-include-in-framework-header
|
|
-Wno-comma>)
|
|
set_target_properties(
|
|
${CMAKE_PROJECT_NAME}
|
|
PROPERTIES AUTOMOC ON
|
|
AUTOUIC ON
|
|
AUTORCC ON)
|
|
endif()
|
|
|
|
set(USE_SYSTEM_CURL
|
|
OFF
|
|
CACHE STRING "Use system cURL")
|
|
|
|
if(USE_SYSTEM_CURL)
|
|
find_package(CURL REQUIRED)
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE "${CURL_LIBRARIES}")
|
|
target_include_directories(${CMAKE_PROJECT_NAME} SYSTEM PUBLIC "${CURL_INCLUDE_DIRS}")
|
|
else()
|
|
include(cmake/BuildMyCurl.cmake)
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE libcurl)
|
|
endif()
|
|
|
|
include(cmake/BuildWhispercpp.cmake)
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE Whispercpp)
|
|
|
|
include(cmake/BuildCTranslate2.cmake)
|
|
include(cmake/BuildSentencepiece.cmake)
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE ct2 sentencepiece)
|
|
|
|
set(USE_SYSTEM_ONNXRUNTIME
|
|
OFF
|
|
CACHE STRING "Use system ONNX Runtime")
|
|
|
|
set(DISABLE_ONNXRUNTIME_GPU
|
|
OFF
|
|
CACHE STRING "Disables GPU support of ONNX Runtime (Only valid on Linux)")
|
|
|
|
if(DISABLE_ONNXRUNTIME_GPU)
|
|
target_compile_definitions(${CMAKE_PROJECT_NAME} PRIVATE DISABLE_ONNXRUNTIME_GPU)
|
|
endif()
|
|
|
|
if(USE_SYSTEM_ONNXRUNTIME)
|
|
if(OS_LINUX)
|
|
find_package(Onnxruntime 1.16.3 REQUIRED)
|
|
set(Onnxruntime_INCLUDE_PATH
|
|
${Onnxruntime_INCLUDE_DIR} ${Onnxruntime_INCLUDE_DIR}/onnxruntime
|
|
${Onnxruntime_INCLUDE_DIR}/onnxruntime/core/session ${Onnxruntime_INCLUDE_DIR}/onnxruntime/core/providers/cpu)
|
|
target_link_libraries(${CMAKE_PROJECT_NAME} PRIVATE "${Onnxruntime_LIBRARIES}")
|
|
target_include_directories(${CMAKE_PROJECT_NAME} SYSTEM PUBLIC "${Onnxruntime_INCLUDE_PATH}")
|
|
else()
|
|
message(FATAL_ERROR "System ONNX Runtime is only supported on Linux!")
|
|
endif()
|
|
else()
|
|
include(cmake/FetchOnnxruntime.cmake)
|
|
endif()
|
|
|
|
target_sources(
|
|
${CMAKE_PROJECT_NAME}
|
|
PRIVATE src/plugin-main.c
|
|
src/transcription-filter.cpp
|
|
src/transcription-filter.c
|
|
src/transcription-utils.cpp
|
|
src/model-utils/model-downloader.cpp
|
|
src/model-utils/model-downloader-ui.cpp
|
|
src/model-utils/model-infos.cpp
|
|
src/whisper-utils/whisper-processing.cpp
|
|
src/whisper-utils/whisper-utils.cpp
|
|
src/whisper-utils/silero-vad-onnx.cpp
|
|
src/whisper-utils/token-buffer-thread.cpp
|
|
src/translation/translation.cpp
|
|
src/utils.cpp)
|
|
|
|
set_target_properties_plugin(${CMAKE_PROJECT_NAME} PROPERTIES OUTPUT_NAME ${_name})
|