{"id":20376398,"url":"https://github.com/marefr/dvblinkremote","last_synced_at":"2025-10-08T20:19:55.826Z","repository":{"id":4000554,"uuid":"5098053","full_name":"marefr/dvblinkremote","owner":"marefr","description":"A C++ DVBLink Remote API library.","archived":false,"fork":false,"pushed_at":"2013-10-21T21:11:54.000Z","size":974,"stargazers_count":3,"open_issues_count":1,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-07-03T05:02:39.790Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/marefr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"COPYING","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-07-18T15:29:20.000Z","updated_at":"2021-06-24T17:26:44.000Z","dependencies_parsed_at":"2022-09-02T17:14:36.751Z","dependency_job_id":null,"html_url":"https://github.com/marefr/dvblinkremote","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/marefr/dvblinkremote","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fdvblinkremote","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fdvblinkremote/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fdvblinkremote/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fdvblinkremote/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/marefr","download_url":"https://codeload.github.com/marefr/dvblinkremote/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/marefr%2Fdvblinkremote/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279000662,"owners_count":26082817,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-08T02:00:06.501Z","response_time":56,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-15T01:37:18.524Z","updated_at":"2025-10-08T20:19:55.811Z","avatar_url":"https://github.com/marefr.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DVBLink Remote API Library\nlibdvblinkremote is a pure C++ DVBLink Remote API static library.\n\nCurrent version of library: 0.2.0 BETA (supporting DVBLink Remote API version 0.2)\n\n## dvblinkremote command line tool\nA command line tool for interacting with a DVBLink Connect! Server using the DVBLink Remote API. This tool are using the libdvblinkremote.\n\n## 3rd party dependencies\n### libcurl\nRequired dependency for the command line tool, but can be excluded in build if you would like to implement your own http client.  \nhttp://curl.haxx.se/libcurl/\n\n### TinyXML-2\nThis dependency is required.  \nhttps://github.com/leethomason/tinyxml2)\n\n## API library documentation\nSee http://marefr.github.com/dvblinkremote/\n\n## Compiling on Windows (Visual Studio 2010)\n### 1. Setup CMake\n1. Download and install CMake: http://www.cmake.org/\n2. Configure CMAKE_PREFIX_PATH to point at installed directories for libcurl and TinyXML-2.  \n  One way of doing this is to define this by configuring a environment variable.  \n    \n    Example configuration:  \n    \u003eVariable name: CMAKE_PREFIX_PATH  \n    \u003eVariable value: C:/Program Files (x86)/curl-7.21.6;C:/Program Files (x86)/tinyxml2  \n\n  Another way of doing this is to supply the configuration when configuring CMake (see below), but how to achive that is not covered here.\n\n### 2. Configure DVBLink Remote API Library with CMake\nOpen up a new Visual Studio Command Prompt (2010)  \n  ```shell  \n  # Navigate to DVBLink Remote API Library root folder:  \n  cd \u003cDVBLink Remote API Library root\u003e  \n\n  # Create a new folder, for example build, and navigate to it:  \n  mkdir build  \n  cd build  \n  \n  # Create a new folder, for example vs2010:  \n  mkdir vs2010  \n  cd vs2010\n  \n  # Configure CMake to include curl support and command line tool in build.  \n  # API documentation requires doxygen and is excluded here.  \n  cmake -DWITH_CURL:BOOL=TRUE -DWITH_COMMAND_LINE_TOOL:BOOL=TRUE -DWITH_APIDOC:BOOL=FALSE -G \"Visual Studio 10\" .  \n  \n  # Tell CMake to execute a release build and install DVBLink Remote API Library.  \n  # Default install folder is C:\\Program Files (x86)\\dvblinkremote or similar.\n  cd ..  \n  cmake --build vs2010 --target \"INSTALL\" --config \"Release\" --clean-first\n  \n  # Tell CMake to execute a release build and package the DVBLink Remote API Library in ZIP archive.  \n  # Default install folder is \u003cbuild dir\u003e.  \n  cmake --build vs2010 --target \"PACKAGE\" --config \"Release\" --clean-first\n  ```  \n\n## Compiling on non-Windows environments  \nThis has not been tested by me! If you would like to try you're more than welcome, but chances are that you need to tweak the CMake files a bit. \nPlease fork this repo and make neccessary CMake changes (if needed) and hand me a pull request. Thanks in advance.\n\n## More Information\nFor more information, please see [DVBLogic official homepage](http://www.dvblogic.com/) and [DVBLink Remote API documentation](http://188.121.56.29//download/dvblink_remote_api.htm).\n\n## License (MIT)\n\nCopyright (c) 2012 Marcus Efraimsson\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarefr%2Fdvblinkremote","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmarefr%2Fdvblinkremote","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmarefr%2Fdvblinkremote/lists"}