Smart Networks
Smart Networks
The problem with tests and examples: ``` target_link_libraries(${target} avcpp::avcpp ) ``` but should be avcpp::**avcpp-static**
What about installation target in cmake? Similar to https://github.com/grpc/grpc/blob/master/CMakeLists.txt `if (gRPC_INSTALL) install(EXPORT gRPCTargets DESTINATION ${gRPC_INSTALL_CMAKEDIR} NAMESPACE gRPC:: ) endif()`
`CLEARML_MONGODB_SERVICE_CONNECTION_STRING=mongodb://myDBReader:D1fficultP%[email protected]:27017/?authSource=admin` **expected** connection string: `mongodb://myDBReader:D1fficultP%[email protected]:27017/auth?authSource=admin` **actual** connection string: `mongodb://myDBReader:D1fficultP%[email protected]:27017/?authSource=admin/auth` **must be fixed** [database package](https://github.com/allegroai/clearml-server/blob/83a0485518664c2a8f3965d9b103298a9f4e4b79/apiserver/database/__init__.py#L84) `con_str = f"{override_connection_string.rstrip('/')}/{key}"`
FFmpegVideoReader can hang on some videos. Although videos can be played by any videopleer and listed in fiftyone app. _Investigation_: Running process `ffmpeg -loglevel error -vsync 0 -i video.mp4 -vsync...
Executing `ffprobe -loglevel error -show_format -show_streams -print_format json -i video.mkv` ``` Found format info: { "filename": "video.mkv", "nb_streams": 1, "nb_programs": 0, "format_name": "matroska,webm", "format_long_name": "Matroska / WebM", "start_time": "0.000000", "duration":...