https://github.com/lighterowl/dcue
DCue is a tool for generating CUE sheets from Discogs data.
https://github.com/lighterowl/dcue
cpp cpp11 discogs libcurl linux windows
Last synced: about 1 month ago
JSON representation
DCue is a tool for generating CUE sheets from Discogs data.
- Host: GitHub
- URL: https://github.com/lighterowl/dcue
- Owner: lighterowl
- License: mpl-2.0
- Created: 2017-10-27T22:45:02.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2023-12-16T17:32:45.000Z (over 1 year ago)
- Last Synced: 2025-04-12T02:03:33.648Z (about 1 month ago)
- Topics: cpp, cpp11, discogs, libcurl, linux, windows
- Language: C++
- Homepage:
- Size: 372 KB
- Stars: 28
- Watchers: 6
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dcue
DCue is a tool for generating CUE sheets from Discogs data.
The original project was developed by Fluxtion on [Sourceforge](http://sourceforge.net/projects/dcue/). It originally used its own implementation of the HTTP protocol based on raw sockets in order to remain dependency-free. However, the Discogs' API HTTP endpoint has been switched off and the API is now accessible only via HTTPS. Since providing a custom HTTPS implementation would require using a SSL library anyway, I went ahead and ported the code to use libcurl (and later wininet). The custom HTTP implementation was removed.
Please report bugs and ideas via the GitHub issue tracker. Thanks!
# Compiling
Please note that due to image URLs being available only when the Discogs API is accessed via a registered application identified by its own key and secret, fetching images is only possible when running the official builds. Thus, you will not be able to use this functionality if you compile the application yourself (`--cover` and `--cover-file` will be ignored and won't even appear in the help output). If you need a build for another platform, please file an issue.
Also remember to include submodules in your clone : the easiest way to do that is to add `--recurse-submodules` to the `git clone` commandline.
## Linux
Make sure you have the libcurl headers. Most distributions ship these as a separate package, for example `libcurl-dev` on Debian and `libcurl-devel` on Red Hat.
```
mkdir build
cd build
cmake ..
make
```## Windows
Just use CMake to generate the build files and build. If you use Visual Studio, chances are everything will work out of the box.
Windows builds use [WinInet](https://docs.microsoft.com/en-us/windows/win32/wininet/portal) to access the Discogs API and as such have no curl dependency.