create account

How to setup 3Speak Video Encoder node? by sagarkothari88

View this thread on: hive.blogpeakd.comecency.com
· @sagarkothari88 · (edited)
$150.61
How to setup 3Speak Video Encoder node?
Hello Hive Community members

## FAQ

#### What kind of system do I need?
Anything which has processing power more than intel i7.

#### Do I need graphic card?
Not at all.

#### What kind of internet connection do I need?
You need a wired connection. Wifi would work but you'll get lesser jobs because of fluctuating internet connection.

#### How much internet speed is required?
Anything above 40 mbps

#### How much RAM is required?
Anything above 8 GB

#### What operating system is required?
You can use any operating system - macOS, ubuntu, windows.

#### What softwares are required?
You need nodejs 16, and ffmpeg installed on your system.

#### Would VPS work?
I wouldn't recommend. I paid for heavy-weight contabo server for over a year & it does not encode a single video in a day.
But if you want to try, Give it a try. I wouldn't stop you :) 

### Steps to setup encoder node

#### Setup PM2 (if you already have PM2, skip this)
1. Run command `npm install pm2 --global`

#### Setup IPFS (if you already have IPFS, skip this)
1. Open https://dist.ipfs.io/#go-ipfs
2. Download binary (based on your OS)
3. Run `install.sh` command which is inside downloaded zip file.
4. Go to your work directory e.g. `~/Users/sagar` 
5. Run `ipfs init` - this you would run once in life time.
6. Run `pm2 start "ipfs daemon" --name ipfs` - again once in life time.
Next time onwards, you just need to say `pm2 restart ipfs`

#### Setup FFMPEG
Please google yourself - "how to install ffmpeg"

#### Setup video encoder node
1. Open terminal & navigate where you want to setup encoder-node
e.g. `~/Users/sagar/projects`
2. Run `git clone https://github.com/spknetwork/video-encoder.git`
3. `cd video-encoder`
4. `npm install --force`
5. `npm run build`
6. `pm2 start "npm -- run start" --name video --time --max-memory-restart 6144M -f` - once in life time. Next time onwards, you just need to say `pm2 restart video`

NOTE: Make sure to run `pm2 save` so that if system restarts, you can bring it back to life.

#### What to change in `~/.spk-encoder/config` file?
Update the `gateway_client => gateway_url` value. as follows.

```
  "gateway_client": {
    "gateway_url": "https://encoder-gateway.infra.3speak.tv",
    "queue_max_length": 1,
    "queue_concurrency": 1,
    "async_uploads": false
  },
  "remote_gateway": {
    "api": "https://encoder-gateway.infra.3speak.tv",
    "enabled": true
  },
```

Update the node name, hive name

```
  "node": {
    "name": "Sagar M1 macBookPro",
    "privateKey": "Sxxxxxxxxxxxxxxxxxxxxxxx=",
    "cryptoAccounts": {
      "hive": "sagarkothari88"
    },
    "publicKey": "did:key:zxxxxxxxxxxxxxxxxxxxxxxx"
  },
```

> **CRITICAL WARNING:**
1. DO NOT TOUCH PRIVATE KEY OR PUBLIC KEYs. 
2. Those are system generated & it shouldn't be touched. 
3. DO NOT PASTE any of your HIVE keys here.

#### What to do If I restart my system?
`pm2 resurrect`

### More questions?
Ask me in the comments section or ping me on 3speak-discord=>encoder-nodes.

#### Like the work I do?

- 👍 Please up-vote my content. 
- 📥 Please follow my hive-blog. @sagarkothari88

#### Vote me as your hive-witness

- 👍 If you like my work, motivate my by voting as your [hive witness](https://vote.hive.uno/@sagarkothari88)
- https://vote.hive.uno/@sagarkothari88
- https://hivesigner.com/sign/account-witness-vote?witness=sagarkothari88&approve=1
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 312 others
👎  , , ,
properties (23)
authorsagarkothari88
permlinkretfajht
categoryhive-181335
json_metadata"{"app":"3speak/0.3.0","description":"Setup instructions for setting up an encoder node for 3Speak Network","format":"markdown","image":[],"links":["https://ipfs-3speak.b-cdn.net/ipfs/bafkreiexoguc2xcqqonjakd7lgjmlya4z7ozqkyondfivyhagjmfqyr7ja/","https://3speak.tv/watch?v=sagarkothari88/retfajht","https://3speak.tv/watch?v=sagarkothari88/retfajht","https://dist.ipfs.io/#go-ipfs","https://github.com/spknetwork/video-encoder.git","https://encoder-gateway.infra.3speak.tv","https://encoder-gateway.infra.3speak.tv","https://vote.hive.uno/@sagarkothari88","https://vote.hive.uno/@sagarkothari88","https://hivesigner.com/sign/account-witness-vote?witness=sagarkothari88&approve=1"],"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"type":"3speak/video","users":["sagarkothari88"],"video":{"content":{"description":"🙏 Namaste Hive Community members\r\n\r\nWith this video, I'll illustrate how to set up the encoder node on your system.\r\n\r\n### FAQs\r\n\r\n#### First of all what is encoder node?\r\nSo, whenever someone uploads a video to 3speak, it has to be processed. You might be wondering what processing? \r\nImagine you uploaded a video from your iPhone 12 Pro with highest resolution and video size is up-to 1 GB. \r\nDo you want your users with low data bandwith to suffer? Of course you won't.\r\n\r\nSo, encoder nodes will encode the video into different sizes like 480, 720, 1020 etc so that it can be viewable with limited data badnwith.\r\nVideo encoding is high processing task.\r\n\r\nNow imagine, there are many users uploading video, 3speak can not limit itself to just 2-3 computers for encoding. \r\nIt may result in-to long queue and users may have to wait for video to get published.\r\nand if 3speak does that, it becomes a centralised service provider which 3speak wants to avoid.\r\nIt has to be community driven.\r\n\r\nThis is where encoder-node-operator comes into picture.\r\nCommunity powers the community.\r\nThey share the load, they take the job of video-encoding and guess what they also get reward of 1% as a beneficiary.\r\n\r\n#### What kind of system do I need?\r\nAnything which has processing power more than intel i7.\r\n\r\n#### Do I need graphic card?\r\nNot at all.\r\n\r\n#### What kind of internet connection do I need?\r\nYou need a wired connection. Wifi would work but you'll get lesser jobs because of fluctuating internet connection.\r\n\r\n#### How much internet speed is required?\r\nAnything above 40 mbps\r\n\r\n#### How much RAM is required?\r\nAnything above 8 GB\r\n\r\n#### What operating system is required?\r\nYou can use any operating system - macOS, ubuntu, windows.\r\n\r\n#### What softwares are required?\r\nYou need nodejs 16, and ffmpeg installed on your system.\r\n\r\n#### Would VPS work?\r\nI wouldn't recommend. I paid for heavy-weight contabo server for over a year & it does not encode a single video in a day.\r\nBut if you want to try, Give it a try. I wouldn't stop you :) \r\n\r\n### Steps to setup encoder node\r\n\r\n#### Setup PM2 (if you already have PM2, skip this)\r\n1. Run command `npm install pm2 --global`\r\n\r\n#### Setup IPFS (if you already have IPFS, skip this)\r\n1. Open https://dist.ipfs.io/#go-ipfs\r\n2. Download binary (based on your OS)\r\n3. Run `install.sh` command which is inside downloaded zip file.\r\n4. Go to your work directory e.g. `~/Users/sagar` \r\n5. Run `ipfs init` - this you would run once in life time.\r\n6. Run `pm2 start \"ipfs daemon\" --name ipfs` - again once in life time.\r\nNext time onwards, you just need to say `pm2 restart ipfs`\r\n\r\n#### Setup FFMPEG\r\nPlease google yourself - \"how to install ffmpeg\"\r\n\r\n#### Setup video encoder node\r\n1. Open terminal & navigate where you want to setup encoder-node\r\ne.g. `~/Users/sagar/projects`\r\n2. Run `git clone https://github.com/spknetwork/video-encoder.git`\r\n3. `cd video-encoder`\r\n4. `npm install --force`\r\n5. `npm run build`\r\n6. `pm2 start dist/index.js --name video --max-memory-restart 6144M -f` - once in life time. Next time onwards, you just need to say `pm2 restart video`\r\n\r\n#### What to do If I restart my system?\r\n`pm2 resurrect`\r\n\r\n### More questions?\r\nAsk me in the comments section or ping me on 3speak-discord=>encoder-nodes.\r\n\r\n#### Like the work I do?\r\n\r\n- 👍 Please up-vote my content. \r\n- 📥 Please follow my hive-blog. @sagarkothari88\r\n\r\n#### Vote me as your hive-witness\r\n\r\n- 👍 If you like my work, motivate my by voting as your [hive witness](https://vote.hive.uno/@sagarkothari88)\r\n- https://vote.hive.uno/@sagarkothari88\r\n- https://hivesigner.com/sign/account-witness-vote?witness=sagarkothari88&approve=1\r\n\r\n#### If you are on DTube\r\n\r\n- If you like my work & want to motivate me even more, \r\n- you can vote me as you DTube avalon node leader.\r\n- https://avalonblocks.com/#/signer/?type=1&target=sagar.kothari.88&broadcast=true\r\n\r\n#### If you are on Blurt\r\n\r\nTo appreciate my contribution, you can vote me as your Blurt Witness.\r\n\r\nJai Shree Krishna.\r\nSee you next time.","tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"]},"info":{"author":"sagarkothari88","duration":1602.8,"file":"ipfs://bafybeic7pes4obz7l4qibw2jdcwszl4qftpbccigoxk6cmdy6egyfsk4lq","filesize":1022034470,"firstUpload":false,"ipfs":null,"ipfsThumbnail":null,"lang":"en","permlink":"retfajht","platform":"3speak","sourceMap":[{"format":"m3u8","type":"video","url":"ipfs://QmccQP8tsfw97NaU8deSU7i7wg2Qh8wmzFQYLuYjXsTpU5/manifest.m3u8"},{"type":"thumbnail","url":"ipfs://bafkreiexoguc2xcqqonjakd7lgjmlya4z7ozqkyondfivyhagjmfqyr7ja"}],"title":"How to setup 3Speak Video Encoder node?","video_v2":"ipfs://QmccQP8tsfw97NaU8deSU7i7wg2Qh8wmzFQYLuYjXsTpU5/manifest.m3u8"}}}"
created2022-06-29 19:10:06
last_update2024-08-09 14:18:51
depth0
children24
last_payout2022-07-06 19:10:06
cashout_time1969-12-31 23:59:59
total_payout_value70.954 HBD
curator_payout_value79.655 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,360
author_reputation529,748,360,961,967
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries
0.
accountsagarkothari88
weight100
1.
accountspk.beneficiary
weight900
2.
accountthreespeakleader
weight100
max_accepted_payout100,000.000 HBD
percent_hbd10,000
post_id114,431,741
net_rshares274,827,055,913,583
author_curate_reward""
vote details (380)
@aquatp2 ·
Thank you for this. With these, some of us will learn basic coding skills from the blockchain. It is nice to have you sir @theycallmedan
properties (22)
authoraquatp2
permlinkregr9l
categoryhive-181335
json_metadata{"users":["theycallmedan"],"app":"hiveblog/0.1"}
created2022-07-03 12:21:48
last_update2022-07-03 12:21:48
depth1
children0
last_payout2022-07-10 12:21:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation308,210,481,727
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,530,185
net_rshares0
@bitcoinflood ·
Legit why can't this just be build into the 3speak app download and just toggle a button to have my computer work as an encoder like Theta edge node does. Super simple and tons of people can then get involved.
👍  , , , ,
properties (23)
authorbitcoinflood
permlinkre-sagarkothari88-2022629t18124163z
categoryhive-181335
json_metadata{"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-29 22:08:51
last_update2022-06-29 22:08:51
depth1
children2
last_payout2022-07-06 22:08:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length209
author_reputation1,645,024,977,979,240
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,435,276
net_rshares15,017,849,052
author_curate_reward""
vote details (5)
@sagarkothari88 ·
$0.07
We're working on it.
👍  , ,
properties (23)
authorsagarkothari88
permlinkre-bitcoinflood-202271t204747383z
categoryhive-181335
json_metadata{"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-07-01 15:17:48
last_update2022-07-01 15:17:48
depth2
children1
last_payout2022-07-08 15:17:48
cashout_time1969-12-31 23:59:59
total_payout_value0.036 HBD
curator_payout_value0.036 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation529,748,360,961,967
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,481,208
net_rshares125,393,339,830
author_curate_reward""
vote details (3)
@bitcoinflood ·
Thank you!
properties (22)
authorbitcoinflood
permlinkre-sagarkothari88-202271t14113584z
categoryhive-181335
json_metadata{"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-07-01 18:07:42
last_update2022-07-01 18:07:42
depth3
children0
last_payout2022-07-08 18:07:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation1,645,024,977,979,240
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,485,474
net_rshares0
@chiomaj ·
Thank you so much Sir.I learnt a lot from your post
properties (22)
authorchiomaj
permlinkre-sagarkothari88-rebtdt
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"peakd/2022.05.9"}
created2022-07-01 05:17:54
last_update2022-07-01 05:17:54
depth1
children1
last_payout2022-07-08 05:17:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation1,044,665,312,601
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,471,134
net_rshares0
@sagarkothari88 ·
You're welcome. I am glad that it helped you learn more. I'm committed to do even more contribution.
👍  
properties (23)
authorsagarkothari88
permlinkre-chiomaj-202271t105033956z
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-07-01 05:20:36
last_update2022-07-01 05:20:36
depth2
children0
last_payout2022-07-08 05:20:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation529,748,360,961,967
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,471,158
net_rshares13,026,404,224
author_curate_reward""
vote details (1)
@elgringoviejo ·
👍💪🇦🇷
👎  
properties (23)
authorelgringoviejo
permlinkre-sagarkothari88-202271t215452361z
categoryhive-181335
json_metadata{"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.30-mobile","format":"markdown+html"}
created2022-07-02 00:54:54
last_update2022-07-02 00:54:54
depth1
children0
last_payout2022-07-09 00:54:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation271,715,728,222
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,494,965
net_rshares-2,742,013,458
author_curate_reward""
vote details (1)
@fernandosoder ·
Can I monitor it working in real time?
properties (22)
authorfernandosoder
permlinkre-sagarkothari88-202275t104625440z
categoryhive-181335
json_metadata{"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-07-05 13:46:27
last_update2022-07-05 13:46:27
depth1
children0
last_payout2022-07-12 13:46:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation43,324,597,346,337
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,588,810
net_rshares0
@hivebuzz ·
Congratulations @sagarkothari88! You have completed the following achievement on the Hive blockchain and have been rewarded with new badge(s):

<table><tr><td><img src="https://images.hive.blog/60x70/http://hivebuzz.me/@sagarkothari88/upvoted.png?202206300700"></td><td>You received more than 5000 upvotes.<br>Your next target is to reach 6000 upvotes.</td></tr>
</table>

<sub>_You can view your badges on [your board](https://hivebuzz.me/@sagarkothari88) and compare yourself to others in the [Ranking](https://hivebuzz.me/ranking)_</sub>
<sub>_If you no longer want to receive notifications, reply to this comment with the word_ `STOP`</sub>



**Check out the last post from @hivebuzz:**
<table><tr><td><a href="/hive-122221/@hivebuzz/pud-202207"><img src="https://images.hive.blog/64x128/https://i.imgur.com/805FIIt.jpg"></a></td><td><a href="/hive-122221/@hivebuzz/pud-202207">Hive Power Up Day - July 1st 2022</a></td></tr><tr><td><a href="/nftforpeace/@hivebuzz/nft-for-peace-update1"><img src="https://images.hive.blog/64x128/https://i.imgur.com/tBCp4ps.png"></a></td><td><a href="/nftforpeace/@hivebuzz/nft-for-peace-update1">NFT for peace - Thank you for your continuous support</a></td></tr></table>

###### Support the HiveBuzz project. [Vote](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true) for [our proposal](https://peakd.com/me/proposals/199)!
properties (22)
authorhivebuzz
permlinknotify-sagarkothari88-20220630t070523
categoryhive-181335
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-06-30 07:05:24
last_update2022-06-30 07:05:24
depth1
children0
last_payout2022-07-07 07:05:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,405
author_reputation370,776,814,109,957
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,443,237
net_rshares0
@hivediver ·
Ubuntu is not an operating system. It is a Linux distribution. And even not a recommendable.
properties (22)
authorhivediver
permlinkre-sagarkothari88-reb1vm
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"peakd/2022.05.9"}
created2022-06-30 19:23:45
last_update2022-06-30 19:23:45
depth1
children2
last_payout2022-07-07 19:23:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length92
author_reputation5,049,338,871,195
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,457,416
net_rshares0
@sagarkothari88 ·
🙏 Prabhu 🙏 (Master in my language)
👍  
properties (23)
authorsagarkothari88
permlinkre-hivediver-202271t05825302z
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-06-30 19:28:24
last_update2022-06-30 19:28:24
depth2
children1
last_payout2022-07-07 19:28:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation529,748,360,961,967
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,457,513
net_rshares12,777,680,119
author_curate_reward""
vote details (1)
@hivediver ·
😁
properties (22)
authorhivediver
permlinkre-sagarkothari88-reb349
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"peakd/2022.05.9"}
created2022-06-30 19:50:33
last_update2022-06-30 19:50:33
depth3
children0
last_payout2022-07-07 19:50:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1
author_reputation5,049,338,871,195
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,457,978
net_rshares0
@jamiashu1 ·
Very nice Thank you for this .With these some of us we  learn basic coding skills from the block chain coding is very important you're really shared value  
Congratulations....
You have completed the following achievement  on the HIVE blockchain......
properties (22)
authorjamiashu1
permlinkre-sagarkothari88-2022712t92824297z
categoryhive-181335
json_metadata{"tags":["hive-181335","india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.30-mobile","format":"markdown+html"}
created2022-07-12 04:28:27
last_update2022-07-12 04:28:27
depth1
children0
last_payout2022-07-19 04:28:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length251
author_reputation35,387,816,487
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,775,982
net_rshares0
@overunitydotcom ·
Please also add settings to transcode to 240p and 144p, as not all users have high bandwidth data lines to watch videos in high resolution !
Many thanks.
Regards, Stefan.
👍  ,
properties (23)
authoroverunitydotcom
permlinkl52vamai
categoryhive-181335
json_metadata{"app":"3SpeakComment/0.2"}
created2022-07-01 19:47:33
last_update2022-07-01 19:47:33
depth1
children0
last_payout2022-07-08 19:47:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation306,060,043,399
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries
0.
accountthreespeakwallet
weight1,100
max_accepted_payout100,000.000 HBD
percent_hbd10,000
post_id114,488,215
net_rshares17,444,799,795
author_curate_reward""
vote details (2)
@pizzabot ·
<center>PIZZA! 


PIZZA Holders sent <strong>$PIZZA</strong> tips in this post's comments:
@revisesociology<sub>(1/10)</sub> tipped @sagarkothari88 (x1)


<sub>Join us in <a href="https://discord.gg/hivepizza">Discord</a>!</sub></center>
properties (22)
authorpizzabot
permlinkre-retfajht-20220630t055934z
categoryhive-181335
json_metadata"{"app": "beem/0.24.26"}"
created2022-06-30 05:59:36
last_update2022-06-30 05:59:36
depth1
children0
last_payout2022-07-07 05:59:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length237
author_reputation7,502,888,834,771
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,442,372
net_rshares0
@revisesociology ·
Very informative thank you. 

Are rewards up and running or is this still in testing phase?

!PIZZA
properties (22)
authorrevisesociology
permlinkre-sagarkothari88-rea0lp
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"peakd/2022.05.9"}
created2022-06-30 05:58:39
last_update2022-06-30 05:58:39
depth1
children1
last_payout2022-07-07 05:58:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation2,273,803,953,744,383
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,442,359
net_rshares0
@sagarkothari88 ·
$0.11
Rewards are up and running.
👍  ,
properties (23)
authorsagarkothari88
permlinkre-revisesociology-2022630t11304526z
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-06-30 06:00:45
last_update2022-06-30 06:00:45
depth2
children0
last_payout2022-07-07 06:00:45
cashout_time1969-12-31 23:59:59
total_payout_value0.057 HBD
curator_payout_value0.057 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation529,748,360,961,967
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,442,394
net_rshares202,589,381,331
author_curate_reward""
vote details (2)
@shadowmyst ·
I wonder if there's an updated version of this, as I would like to be an encoder.
properties (22)
authorshadowmyst
permlinkre-sagarkothari88-ss7unc
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"peakd/2025.2.3","image":[],"users":[]}
created2025-02-25 01:54:48
last_update2025-02-25 01:54:48
depth1
children0
last_payout2025-03-04 01:54:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation201,281,371,887,764
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id141,031,949
net_rshares0
@tkrypt ·
This system properties can only be met by few people. Also the mbs network here in my country is somewhat rare, as a matter of fact I don't think I have witnessed 40mbs from our network providers before

This would have been much easier if its encrypted in 3speak from onset.

However, you're a Geek 🤓...you've really shared values. Thanks Champ!
properties (22)
authortkrypt
permlinkrea77a
categoryhive-181335
json_metadata{"app":"hiveblog/0.1"}
created2022-06-30 08:21:12
last_update2022-06-30 08:21:12
depth1
children0
last_payout2022-07-07 08:21:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length346
author_reputation3,173,436,184,972
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries
0.
accounthiveonboard
weight100
1.
accountocd-witness
weight100
2.
accountstarstrings01
weight300
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,444,237
net_rshares0
@urun ·
nice!
properties (22)
authorurun
permlinkre-sagarkothari88-re9dlu
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"peakd/2022.05.9"}
created2022-06-29 21:41:54
last_update2022-06-29 21:41:54
depth1
children0
last_payout2022-07-06 21:41:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation94,125,949,460,949
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,434,816
net_rshares0
@zuun.net ·
In the config  from git version is missing this
`
  "remote_gateway":{
  "api": "https://encoder-gateway.infra.3speak.tv",
  "enabled": true
 },`

I'll leave it here for someone to copy and paste if necessary...

I Always Get this error.
___
`jobInfo {"data":{"queueJob":{"reason":"RANK_REQUIREMENT","job":null}}} { node_id: 'did:key:z6MkvXLtWnXFXZRHLyBqCmxtoLntHthVsRf3NbnnYXULd1v1' }`
___

It would be nice to know what the criteria is for that message, since I have a server with Core i7 - 32 Gb RAM - 1 TB NVMe - 2 TB SSD -
Internet 1Gbit
properties (22)
authorzuun.net
permlinkre-sagarkothari88-2022629t15559161z
categoryhive-181335
json_metadata{"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-29 20:06:00
last_update2022-06-29 20:06:00
depth1
children3
last_payout2022-07-06 20:06:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length542
author_reputation7,596,564,094,155
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,432,813
net_rshares0
@sagarkothari88 ·
@zuun.net - congratulation. Your node is up & running. I've talked about this in the video. 
I've 5 different systems & out of 5, my 3 system gets those message.

"RANK Requirement" indicates that your node doesn't have RANK at all to get new jobs. 
When all nodes having good rank are busy, a node with no-rank will be picked & will be measured for it's performance. If performance is good, RANK will be updated after the your node finishes the video-encoding.

Now that you have a better rank (than NO RANK), your node will be preferred node for next video encoding.

I hope you got the idea.
👍  ,
properties (23)
authorsagarkothari88
permlinkre-zuunnet-2022630t15249697z
categoryhive-181335
json_metadata{"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.23-vision","format":"markdown+html"}
created2022-06-29 20:22:51
last_update2022-06-29 20:22:51
depth2
children1
last_payout2022-07-06 20:22:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length594
author_reputation529,748,360,961,967
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,433,125
net_rshares12,844,142,027
author_curate_reward""
vote details (2)
@simplegame ·
what makes your node have a higher rank
properties (22)
authorsimplegame
permlinkre-sagarkothari88-s2pm69
categoryhive-181335
json_metadata{"tags":["hive-181335"],"app":"peakd/2023.10.1"}
created2023-10-18 05:34:57
last_update2023-10-18 05:34:57
depth3
children0
last_payout2023-10-25 05:34:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation128,640,964,346,570
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id128,088,964
net_rshares0
@sagarkothari88 ·
At the moment, there are very limited beta users
and due to that, there are very little videos to encode for encoder-nodes
So, don't panic if your system doesn't get jobs for few days.
👍  
properties (23)
authorsagarkothari88
permlinkre9a5z
categoryhive-181335
json_metadata{"app":"hiveblog/0.1"}
created2022-06-29 20:27:36
last_update2022-06-29 20:27:36
depth2
children0
last_payout2022-07-06 20:27:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length184
author_reputation529,748,360,961,967
root_title"How to setup 3Speak Video Encoder node?"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,433,231
net_rshares12,616,228,051
author_curate_reward""
vote details (1)