An overly complex tool to mirror youtube content to LBRY
Go to file
Niko Storni 9799b0a732 allow claim names with non latin chars
upgrade to latest lbrynet
improve e2e test
2021-03-04 03:04:52 +01:00
blobs_reflector improve logging 2020-11-04 18:13:30 +01:00
downloader improve upload time detection 2021-03-01 23:34:19 +01:00
e2e allow claim names with non latin chars 2021-03-04 03:04:52 +01:00
ip_manager update chrome UA 2021-02-11 23:44:48 +01:00
manager fix channel list 2021-02-11 21:43:58 +01:00
metrics fix prom allowed chars 2020-05-19 23:24:16 +02:00
namer allow claim names with non latin chars 2021-03-04 03:04:52 +01:00
scripts fix modules pollution 2019-02-27 20:19:29 +01:00
sdk lots of bug fixes and improvements 2020-08-18 00:03:38 +02:00
shared change default videos to sync 2020-11-19 03:11:23 +01:00
sources handle weird state 2021-02-25 05:05:28 +01:00
tags_manager refactor tags_mapping name 2019-10-21 15:44:24 +02:00
thumbs add support for own S3 thumbnails storage 2020-10-07 03:10:54 +02:00
timing fix semver 2020-06-11 18:45:56 +02:00
util change default videos to sync 2020-11-19 03:11:23 +01:00
ytapi update chrome UA 2021-02-11 23:44:48 +01:00
.gitignore make video transferring async 2019-10-11 01:00:04 +02:00
.goreleaser.yml update goreleaser 2020-01-11 22:11:44 -05:00
.travis.yml fix travis try 2 2020-06-10 03:44:34 +02:00
0001-lbry-patch.patch add new throttling detection 2019-12-16 00:29:56 +01:00
go.mod change default videos to sync 2020-11-19 03:11:23 +01:00
go.sum change default videos to sync 2020-11-19 03:11:23 +01:00
LICENSE Update LICENSE 2020-02-03 04:08:28 +07:00
main.go change default videos to sync 2020-11-19 03:11:23 +01:00
Makefile Add retry on IP failures 2020-08-05 15:47:53 -04:00
README.md remove unused script 2019-06-10 21:43:10 +02: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 current timestamp)
      --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)
      --remove-db-unpublished       Remove videos from the database that are marked as published but aren't really published
      --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
      --upgrade-metadata            Upgrade videos if they're on the old metadata version
      --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).