An overly complex tool to mirror youtube content to LBRY
Go to file
2019-05-07 18:28:25 +02:00
manager update dependency and fix bugs 2019-05-07 18:28:25 +02:00
namer continued refactoring 2018-10-02 20:53:54 -04:00
scripts fix modules pollution 2019-02-27 20:19:29 +01:00
sdk add support for new SDK 2019-05-03 05:11:52 +02:00
sources update dependency and fix bugs 2019-05-07 18:28:25 +02:00
thumbs add support for new SDK 2019-05-03 05:11:52 +02:00
.gitignore Fix travis 2019-02-27 14:38:43 +01:00
.goreleaser.yml implement goreleaser 2019-02-27 20:14:26 +01:00
.travis.yml replace github token 2019-02-27 20:49:30 +01:00
go.mod update dependency and fix bugs 2019-05-07 18:28:25 +02:00
go.sum update dependency and fix bugs 2019-05-07 18:28:25 +02:00
main.go Add support for SDK 0.35 2019-04-18 21:22:51 -04:00
Makefile rename binary output 2019-03-29 02:38:00 +01:00
README.md add travis badge 2019-02-27 21:30:09 +01:00
splitter.py jack's splitter code 2017-10-17 19:13:39 -04:00

YTSync Tool

Build Status

This tool serves lbry to parse youtube channels that want their content mirrored on LBRY.

The tool downloads the entire set of public videos from a given channel, publishes them to LBRY and populates our private database in order to keep track of what's publishes. With the support of said database, the tool is also able to keep all the channels updated.

Requirements

  • lbrynet SDK https://github.com/lbryio/lbry/releases (We strive to keep the latest release of ytsync compatible with the latest major release of the SDK)
  • a lbrycrd node running (localhost or on a remote machine) with credits in it

Setup

  • make sure daemon is stopped and can be controlled through systemctl (find example below)
  • extract the ytsync binary anywhere
  • add the environment variables necessary to the tool
    • export SLACK_TOKEN="a-token-to-spam-your-slack"
    • export SLACK_CHANNEL="youtube-status"
    • export YOUTUBE_API_KEY="youtube-api-key"
    • export LBRY_WEB_API="https://lbry-api-url-here"
    • export LBRY_API_TOKEN="internal-apis-token-for-ytsync-user"
    • export LBRYCRD_STRING="tcp://user:password@host:5429"
    • export AWS_S3_ID="THE-ID-LIES-HERE"
    • export AWS_S3_SECRET="THE-SECRET-LIES-HERE"
    • export AWS_S3_REGION="us-east-1"
    • export AWS_S3_BUCKET="ytsync-wallets"

systemd script example

/etc/systemd/system/lbrynet.service

[Unit]
Description="LBRYnet daemon"
After=network.target

[Service]
Environment="HOME=/home/lbry"
ExecStart=/opt/lbry/lbrynet start
User=lbry
Group=lbry
Restart=on-failure
KillMode=process

[Install]
WantedBy=multi-user.target

Instructions

Publish youtube channels into LBRY network automatically.

Usage:
  ytsync [flags]

Flags:
      --after int                   Specify from when to pull jobs [Unix time](Default: 0)
      --before int                  Specify until when to pull jobs [Unix time](Default: current Unix time) (default 1582834707)
      --channelID string            If specified, only this channel will be synced.
      --concurrent-jobs int         how many jobs to process concurrently (default 1)
  -h, --help                        help for ytsync
      --limit int                   limit the amount of channels to sync
      --max-length float            Maximum video length to process (in hours) (default 2)
      --max-size int                Maximum video size to process (in MB) (default 2048)
      --max-tries int               Number of times to try a publish that fails (default 3)
      --run-once                    Whether the process should be stopped after one cycle or not
      --skip-space-check            Do not perform free space check on startup
      --status string               Specify which queue to pull from. Overrides --update
      --stop-on-error               If a publish fails, stop all publishing and exit
      --takeover-existing-channel   If channel exists and we don't own it, take over the channel
      --update                      Update previously synced channels instead of syncing new ones
      --videos-limit int            how many videos to process per channel (default 1000)

Running from Source

Clone the repository and run make

License

This project is MIT licensed. For the full license, see LICENSE.

Contributing

Contributions to this project are welcome, encouraged, and compensated. For more details, see CONTRIBUTING.

Security

We take security seriously. Please contact security@lbry.io regarding any security issues. Our PGP key is here if you need it.

Contact

The primary contact for this project is Niko Storni (niko@lbry.io).