Skip to content

Commit

Permalink
add readme and license
Browse files Browse the repository at this point in the history
  • Loading branch information
mocukie committed Oct 9, 2020
1 parent bbb8d21 commit f067dc3
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 1 deletion.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (C) 2020 Marklin Lin <[email protected]>

Permission 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:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE 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.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Yet annother archive reader for foobar2000

Read audio in archive directly without upack to memory or temp folder.
Support format:
* Zip
* 7-Zip
* Rar/Rar5
* Tar include xz/gz

Works with foobar2000 v1.5 and newer.

**Note if the archive is solid or tar with xz/gz, that will be slow when opening and seeking.*


## Dependencies

* libarchive
* liblzma
* zlib

## License

[MIT](LICENSE)

Code from Foobar2000 SDK. See [SDK license](fb2kSDK/sdk-license.txt).
7 changes: 6 additions & 1 deletion foo_yaarchive_reader/yaarchive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,5 +129,10 @@ namespace {
static service_factory_single_t<input_file_type_v2_impl> g_tar("tar;tar.gz;tgz;tar.xz;txz", "Tape Archive", "Tape Archive");
}

DECLARE_COMPONENT_VERSION("Yet Another Archive Reader", "0.0.1", "zip, rar, 7z, tar (゚∀。)");
DECLARE_COMPONENT_VERSION("Yet Another Archive Reader", "0.0.1",
R"(Read audio in zip, rar, 7z, tar directly without upack to memory or temp folder.
Copyright (C) 2020 Marklin Lin <[email protected]>
)"
);
VALIDATE_COMPONENT_FILENAME("foo_yaarchive_reader.dll");

0 comments on commit f067dc3

Please sign in to comment.