Initialize repo
This commit is contained in:
parent
2c3739556e
commit
a4a1149fbb
3 changed files with 53 additions and 0 deletions
26
README.md
Normal file
26
README.md
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
**PROPOSAL STAGE**
|
||||||
|
|
||||||
|
# LBRY File Format
|
||||||
|
|
||||||
|
The LBRY format is a multimedia-format designed to promote interoperability and transmission of complex digital media.
|
||||||
|
|
||||||
|
## Name
|
||||||
|
|
||||||
|
- Name Format: `*.lbry`
|
||||||
|
- Character Set: `UTF-8`
|
||||||
|
- Extension: `lbry`
|
||||||
|
|
||||||
|
## Metadata
|
||||||
|
|
||||||
|
- Media Type: `application/x-lbry`
|
||||||
|
|
||||||
|
## Container
|
||||||
|
|
||||||
|
- Compression: `Zstandard`
|
||||||
|
- Archival: `tar`
|
||||||
|
|
||||||
|
## Contents
|
||||||
|
|
||||||
|
### Descriptor
|
||||||
|
|
||||||
|
- Format: `JSON`, `UTF-8`
|
13
package-lock.json
generated
Normal file
13
package-lock.json
generated
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
{
|
||||||
|
"name": "lbry-format",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"lockfileVersion": 1,
|
||||||
|
"requires": true,
|
||||||
|
"dependencies": {
|
||||||
|
"zstd-codec": {
|
||||||
|
"version": "0.1.1",
|
||||||
|
"resolved": "https://registry.npmjs.org/zstd-codec/-/zstd-codec-0.1.1.tgz",
|
||||||
|
"integrity": "sha512-9u1cihqoDPaq9Tbxneom8rleCSfz1hxXzz+RmydjOVYnlqkzoMqOpAdJ06Y/RgctUfdyuazXT2uyZMhlPb/x0Q=="
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
14
package.json
Normal file
14
package.json
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
"name": "lbry-format",
|
||||||
|
"version": "0.1.0",
|
||||||
|
"description": "LBRY format toolkit",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
|
},
|
||||||
|
"author": "",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"zstd-codec": "^0.1.1"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue