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
author | sagarkothari88 | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | retfajht | ||||||||||||||||||
category | hive-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"}}}" | ||||||||||||||||||
created | 2022-06-29 19:10:06 | ||||||||||||||||||
last_update | 2024-08-09 14:18:51 | ||||||||||||||||||
depth | 0 | ||||||||||||||||||
children | 24 | ||||||||||||||||||
last_payout | 2022-07-06 19:10:06 | ||||||||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||||||||
total_payout_value | 70.954 HBD | ||||||||||||||||||
curator_payout_value | 79.655 HBD | ||||||||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||||||||
promoted | 0.000 HBD | ||||||||||||||||||
body_length | 3,360 | ||||||||||||||||||
author_reputation | 529,748,360,961,967 | ||||||||||||||||||
root_title | "How to setup 3Speak Video Encoder node?" | ||||||||||||||||||
beneficiaries |
| ||||||||||||||||||
max_accepted_payout | 100,000.000 HBD | ||||||||||||||||||
percent_hbd | 10,000 | ||||||||||||||||||
post_id | 114,431,741 | ||||||||||||||||||
net_rshares | 274,827,055,913,583 | ||||||||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
leprechaun | 0 | 864,322,551 | 30% | ||
good-karma | 0 | 110,514,249,923 | 12.6% | ||
ausbitbank | 0 | 516,167,277,967 | 24% | ||
jza | 0 | 6,129,903,113 | 100% | ||
fiona777 | 0 | 0 | 100% | ||
ace108 | 0 | 362,495,913,021 | 11% | ||
borran | 0 | 1,021,692,097,548 | 100% | ||
theb0red1 | 0 | 63,776,190,572 | 20% | ||
stevescoins | 0 | 2,964,409,775 | 30% | ||
penguinpablo | 0 | 284,900,111,785 | 14% | ||
wakeupnd | 0 | 101,304,177,731 | 50% | ||
tftproject | 0 | 1,597,969,589 | 9% | ||
jimbobbill | 0 | 2,713,843,620 | 15% | ||
funnyman | 0 | 1,320,016,964 | 5.6% | ||
aschatria | 0 | 0 | 100% | ||
dylanhobalart | 0 | 0 | 21% | ||
ura-soul | 0 | 38,014,791,114 | 30% | ||
felix.herrmann | 0 | 0 | 23% | ||
esteemapp | 0 | 23,954,428,124 | 12.6% | ||
v4vapid | 0 | 6,394,168,706,653 | 39.6% | ||
da-dawn | 0 | 0 | 23% | ||
amryksr | 0 | 0 | 100% | ||
rr2qie | 0 | 7,590,259 | 100% | ||
teammo | 0 | 175,337,626,794 | 100% | ||
ranchorelaxo | 0 | 48,373,896,689,148 | 100% | ||
oscarps | 0 | 4,974,834,013 | 100% | ||
trafalgar | 0 | 24,064,877,888,064 | 54% | ||
louisthomas | 0 | 134,892,977,802 | 100% | ||
itinerantph | 0 | 630,495,434 | 27% | ||
freebornsociety | 0 | 921,764,122 | 6.1% | ||
pastzam | 0 | 337,741,032,261 | 41% | ||
raindrop | 0 | 391,084,340,828 | 54% | ||
tamaralovelace | 0 | 62,918,140,304 | 100% | ||
frankydoodle | 0 | 1,890,217,044 | 15% | ||
mes | 0 | 527,879,489,556 | 100% | ||
thelordsfinest | 0 | 524,086,218 | 12.6% | ||
web-gnar | 0 | 57,147,211,198 | 100% | ||
opinizeunltd | 0 | 16,000,051,132 | 50% | ||
drag33 | 0 | 6,261,291,788 | 100% | ||
ironshield | 0 | 37,957,126,248 | 60% | ||
varunpinto | 0 | 124,869,148,060 | 100% | ||
drwom | 0 | 2,020,009,752 | 6.3% | ||
jonsnow1983 | 0 | 6,391,456,981 | 100% | ||
alphacore | 0 | 4,869,239,101 | 2.82% | ||
galenkp | 0 | 507,395,519,400 | 13% | ||
firstamendment | 0 | 123,214,513,421 | 100% | ||
truthforce | 0 | 3,856,189,639 | 60% | ||
theouterlight | 0 | 326,191,774,955 | 100% | ||
binkyprod | 0 | 111,481,428,119 | 100% | ||
diegoameerali | 0 | 8,895,008,241 | 30% | ||
haejin | 0 | 12,616,407,506,145 | 100% | ||
steemshiro | 0 | 63,808,608,295 | 100% | ||
momijiscrypto | 0 | 18,912,476,662 | 100% | ||
stayoutoftherz | 0 | 4,218,471,181,452 | 50% | ||
isabelpena | 0 | 19,495,374,495 | 100% | ||
pocketrocket | 0 | 15,530,477,529 | 100% | ||
steemik | 0 | 1,511,113,061,237 | 100% | ||
jeanlucsr | 0 | 6,209,283,175 | 10% | ||
amitsharma | 0 | 116,052,146,160 | 100% | ||
duekie | 0 | 0 | 100% | ||
aafeng | 0 | 7,676,677,994 | 1% | ||
htotoo | 0 | 3,338,678,769 | 100% | ||
santigs | 0 | 27,254,870,218 | 48% | ||
bashadow | 0 | 109,365,114,673 | 25% | ||
cconn | 0 | 10,169,682,806 | 100% | ||
drax | 0 | 29,652,536,728 | 7.4% | ||
tomwafula | 0 | 3,131,144,938 | 100% | ||
revisesociology | 0 | 1,894,224,371,612 | 100% | ||
yangyanje | 0 | 160,883,967,516 | 100% | ||
overunitydotcom | 0 | 18,274,374,115 | 100% | ||
insanityisfree | 0 | 1,176,032,704 | 60% | ||
aquatp2 | 0 | 423,583,761 | 100% | ||
risemultiversity | 0 | 4,305,353,379 | 30% | ||
happydolphin | 0 | 14,810,865,340 | 10% | ||
esteem.app | 0 | 3,799,342,370 | 12.6% | ||
phoenixwren | 0 | 114,716,692,554 | 50% | ||
arabisouri | 0 | 97,643,512,609 | 100% | ||
noble-noah | 0 | 21,495,928,046 | 100% | ||
traciyork | 0 | 667,551,022,805 | 55% | ||
informationwar | 0 | 386,986,562,940 | 60% | ||
boycharlieplays | 0 | 408,880,958 | 100% | ||
new-world-steem | 0 | 0 | 23% | ||
bobinson | 0 | 686,749,115,969 | 100% | ||
afzalqamar | 0 | 6,189,439,549 | 100% | ||
traf | 0 | 2,120,755,322,373 | 54% | ||
nathen007 | 0 | 0 | 100% | ||
breelikeatree | 0 | 206,509,987,803 | 100% | ||
auleo | 0 | 1,145,877,914 | 2.52% | ||
spiritabsolute | 0 | 35,050,272,891 | 100% | ||
dmwh | 0 | 30,952,447,580 | 30% | ||
wiseagent | 0 | 53,436,367,047 | 5% | ||
cryptonized | 0 | 20,529,782,644 | 14% | ||
onestrong | 0 | 14,374,432,685 | 100% | ||
phortun | 0 | 146,427,137,118 | 20% | ||
gabrielatravels | 0 | 32,487,428,900 | 100% | ||
jmotip | 0 | 43,424,927,485 | 50% | ||
awuahbenjamin | 0 | 1,177,422,568 | 100% | ||
cmmemes | 0 | 3,726,586,584 | 100% | ||
r1s2g3 | 0 | 104,558,950,684 | 30% | ||
ahmedsy | 0 | 28,036,789,297 | 100% | ||
empress-eremmy | 0 | 49,027,967,042 | 30% | ||
aagabriel | 0 | 15,490,403,017 | 65% | ||
ikrahch | 0 | 199,791,623,571 | 50% | ||
piotr42 | 0 | 1,116,526,909 | 7% | ||
cherryng | 0 | 1,551,760,183 | 2.52% | ||
minerspost | 0 | 2,234,338,427 | 50% | ||
eddiespino | 0 | 3,369,082,559,215 | 100% | ||
darkpylon | 0 | 3,856,544,604 | 100% | ||
onlavu | 0 | 18,279,717,487 | 20% | ||
technologix | 0 | 58,115,882,065 | 99% | ||
foxyspirit | 0 | 788,991,574 | 13.75% | ||
grisvisa | 0 | 74,087,430,304 | 100% | ||
bil.prag | 0 | 138,504,295,707 | 20% | ||
manniman | 0 | 71,957,281,257 | 11% | ||
reversehitler88 | 0 | 13,507,354,920 | 100% | ||
memepress | 0 | 1,770,076,138 | 50% | ||
kgakakillerg | 0 | 15,662,606,920 | 10% | ||
el-dee-are-es | 0 | 39,296,864,965 | 10% | ||
retard-gamer-de | 0 | 777,254,916 | 30% | ||
techcoderx | 0 | 28,193,288,291 | 100% | ||
davidesimoncini | 0 | 4,927,093,140 | 20% | ||
viniciotricolor | 0 | 4,491,781,247 | 100% | ||
commonlaw | 0 | 4,892,911,231 | 35% | ||
haccolong | 0 | 10,014,570,120 | 15% | ||
newsnownorthwest | 0 | 801,553,267 | 9% | ||
gaottantacinque | 0 | 0 | 100% | ||
amnlive | 0 | 129,730,893 | 30% | ||
luciannagy | 0 | 541,594,230 | 3.9% | ||
hoaithu | 0 | 3,656,909,104 | 12.75% | ||
steemadi | 0 | 5,410,095,938 | 100% | ||
aconsciousness | 0 | 2,335,261,587 | 95% | ||
deepdives | 0 | 484,990,257,145 | 60% | ||
gasaeightyfive | 0 | 14,680,645 | 100% | ||
anhvu | 0 | 2,645,353,147 | 12% | ||
gubbatv | 0 | 273,291,299,118 | 100% | ||
reteem | 0 | 538,861,320 | 15% | ||
cribbio | 0 | 72,075,588 | 100% | ||
reetuahlawat | 0 | 0 | 100% | ||
stefano.massari | 0 | 73,361,424,296 | 32% | ||
riskneutral | 0 | 7,086,691,590 | 60% | ||
marylucy | 0 | 12,109,377,669 | 100% | ||
thrasher666 | 0 | 2,224,466,062 | 60% | ||
pauliinasoilu | 0 | 16,217,232,201 | 100% | ||
teenagecrypto | 0 | 28,118,996,183 | 100% | ||
theycallmedan | 0 | 83,302,972,850,152 | 100% | ||
jacuzzi | 0 | 2,687,744,380 | 1.4% | ||
singhcapital | 0 | 2,167,918,750,143 | 100% | ||
primeradue | 0 | 634,796,856 | 39.6% | ||
marianomariano | 0 | 0 | 100% | ||
e-r-k-a-n | 0 | 24,941,436,027 | 100% | ||
elikast | 0 | 2,984,471,007 | 100% | ||
hungrybear | 0 | 593,938,150 | 14% | ||
denizcakmak | 0 | 1,053,218,713 | 100% | ||
calisthenicsdrop | 0 | 3,239,680,010 | 100% | ||
androshchuk | 0 | 2,063,331,733 | 100% | ||
guysellars | 0 | 1,349,452,283 | 100% | ||
maxsieg | 0 | 7,384,915,352 | 60% | ||
photographercr | 0 | 23,538,249,384 | 10.8% | ||
threespeak | 0 | 42,613,079,438,887 | 100% | ||
helgalubevi | 0 | 507,781,624 | 50% | ||
linita | 0 | 10,733,230,534 | 100% | ||
clownworld | 0 | 2,741,722,586 | 30% | ||
iktisat | 0 | 656,021,845 | 100% | ||
lrekt01 | 0 | 3,108,983,916 | 65% | ||
urun | 0 | 21,827,120,721 | 100% | ||
oratione | 0 | 926,548,765 | 100% | ||
bilpcoin.pay | 0 | 524,790,280 | 10% | ||
thecontesttrain | 0 | 719,054,289 | 30% | ||
yourtop3 | 0 | 2,443,947,198 | 27.5% | ||
inigo-montoya-jr | 0 | 4,533,075,672 | 51% | ||
atma.love | 0 | 64,024,250,099 | 12% | ||
julesquirin | 0 | 1,773,080,114 | 10.8% | ||
davidlionfish | 0 | 0 | 50% | ||
titofit | 0 | 3,055,974,200 | 100% | ||
obrisgold1 | 0 | 9,137,080,068 | 100% | ||
iliyan90 | 0 | 682,539,381,284 | 100% | ||
elkakoycheva | 0 | 13,586,149,516 | 100% | ||
unklebonehead | 0 | 27,457,018,967 | 100% | ||
softworld | 0 | 242,600,751,438 | 52% | ||
ississ89 | 0 | 188,316,247,747 | 100% | ||
velinov86 | 0 | 43,390,423,681 | 50% | ||
diosvarga | 0 | 641,216,397 | 100% | ||
ninnu | 0 | 74,234,737,735 | 50% | ||
sneji79 | 0 | 7,124,309,305 | 100% | ||
lyubo19 | 0 | 2,081,377,411 | 90% | ||
ecency | 0 | 4,425,348,975,612 | 12.6% | ||
roflie | 0 | 61,426,509,029 | 100% | ||
tiger85 | 0 | 7,765,102,929 | 100% | ||
kingneptune | 0 | 3,396,282,489 | 30% | ||
iyimoga | 0 | 12,746,637,053 | 100% | ||
sweetest | 0 | 452,551,704 | 100% | ||
minihw | 0 | 0 | 100% | ||
bimpcy | 0 | 9,936,100,741 | 20% | ||
name0 | 0 | 1,937,639,326 | 100% | ||
patronpass | 0 | 7,116,577,504 | 100% | ||
plusvault | 0 | 2,399,996,869 | 100% | ||
th4488 | 0 | 838,624,866 | 100% | ||
olaunlimited | 0 | 44,342,289,466 | 24.3% | ||
alpha-arietis | 0 | 0 | 50% | ||
ecency.stats | 0 | 4,176,801,539 | 12.6% | ||
hive-108278 | 0 | 509,626,992 | 30% | ||
raikovv23 | 0 | 3,144,874,031 | 100% | ||
engioi | 0 | 5,864,025,758 | 80% | ||
arrrds | 0 | 1,171,439,971 | 50% | ||
melochacalie | 0 | 2,178,189,599 | 100% | ||
hive-168869 | 0 | 13,665,923,931 | 13% | ||
omarcitorojas | 0 | 24,504,187,254 | 100% | ||
contentisking | 0 | 1,494,122,525 | 100% | ||
rarereden | 0 | 3,235,219,230 | 100% | ||
ismaelrd04 | 0 | 17,195,921,292 | 100% | ||
kattycrochet | 0 | 20,288,499,182 | 27% | ||
alex-rourke | 0 | 133,985,454,432 | 100% | ||
n0m0refak3n3ws | 0 | 2,823,870,805 | 30% | ||
jesustiano | 0 | 16,573,698,270 | 100% | ||
mccoy02 | 0 | 32,207,680,353 | 100% | ||
gr33nm4ster | 0 | 0 | 100% | ||
iliqn.iliev | 0 | 924,482,487 | 100% | ||
nineclaws | 0 | 57,869,227,024 | 100% | ||
marito74 | 0 | 0 | 100% | ||
eldritchspig | 0 | 2,003,981,879 | 30% | ||
trostparadox | 0 | 3,829,718,723,424 | 100% | ||
motomojo | 0 | 505,104,390 | 100% | ||
ivangeevo | 0 | 8,705,011,049 | 90% | ||
alicewonderyoga | 0 | 21,346,619,471 | 100% | ||
harmony.art | 0 | 651,404,129 | 100% | ||
sofs-su | 0 | 68,026,807,952 | 55.9% | ||
kriszrokk | 0 | 8,883,920,979 | 100% | ||
hectorsanchez18 | 0 | 22,378,580,099 | 100% | ||
mihaylov | 0 | 8,690,174,075 | 50% | ||
cookaiss | 0 | 7,916,315,412 | 50% | ||
repayme4568 | 0 | 3,393,151,685 | 100% | ||
therealsnowjon | 0 | 7,549,415,343 | 80% | ||
vaketo | 0 | 7,788,916,127 | 100% | ||
mobluesbetter | 0 | 7,840,633,975 | 100% | ||
kustev.chef | 0 | 2,615,758,669 | 100% | ||
bobi.stefanov | 0 | 2,607,540,213 | 100% | ||
pavlevskifamily | 0 | 12,199,318,456 | 100% | ||
vpetrow | 0 | 970,642,204 | 100% | ||
presidentmorty | 0 | 1,029,905,144 | 90% | ||
kateto.anna | 0 | 2,933,277,376 | 100% | ||
mmanolev33 | 0 | 10,941,960,512 | 100% | ||
nj07 | 0 | 3,827,017,014 | 100% | ||
xyba | 0 | 49,621,811,504 | 100% | ||
guru33 | 0 | 2,225,996,281 | 100% | ||
cooperclub | 0 | 91,450,294,413 | 80% | ||
demanouil | 0 | 812,996,771 | 100% | ||
nik.valchev79 | 0 | 999,742,248 | 100% | ||
dakothelion | 0 | 4,041,658,458 | 100% | ||
abm100yan | 0 | 1,988,974,226 | 100% | ||
ajanaku | 0 | 2,554,773,962 | 100% | ||
wend1go | 0 | 34,608,045,230 | 100% | ||
mayor333 | 0 | 9,700,985,549 | 100% | ||
moshkoto | 0 | 1,242,087,668 | 100% | ||
jacques0829 | 0 | 1,887,760,835 | 100% | ||
yaponeca23 | 0 | 986,341,751 | 90% | ||
valor2s | 0 | 16,169,745,626 | 100% | ||
hive-test-bg | 0 | 2,174,215,815 | 100% | ||
dynalav | 0 | 822,638,024 | 100% | ||
andr3apat1no | 0 | 2,786,001,713 | 100% | ||
albertocoachbl | 0 | 7,518,159,543 | 100% | ||
hive.friends | 0 | 0 | 1% | ||
shanhenry | 0 | 2,603,038,139 | 100% | ||
matrix-guru | 0 | 78,668,836,168 | 100% | ||
rosselena | 0 | 260,411,905 | 100% | ||
readthisplease | 0 | 2,389,059,486 | 2.5% | ||
davidbright | 0 | 8,396,924,709 | 50% | ||
mariannysleon | 0 | 0 | 100% | ||
mimtan | 0 | 760,820,555 | 100% | ||
carlos13 | 0 | 6,977,853,801 | 100% | ||
jaybone | 0 | 4,104,823,739 | 100% | ||
irenicus30 | 0 | 154,913,783,094 | 100% | ||
elgringoviejo | 0 | 202,398,104 | 100% | ||
realafela | 0 | 0 | 100% | ||
yulilemus02 | 0 | 5,339,641,722 | 100% | ||
fartunku | 0 | 1,718,831,017 | 50% | ||
litalfrog | 0 | 1,759,833,302 | 45% | ||
gokturk70 | 0 | 0 | 100% | ||
delver | 0 | 24,791,160,915 | 60% | ||
mishoni | 0 | 0 | 100% | ||
vasko90 | 0 | 0 | 100% | ||
raqraq | 0 | 0 | 100% | ||
lsdmercyy | 0 | 81,658,549 | 29% | ||
ecency-bulgaria | 0 | 2,250,375,980 | 100% | ||
ozohu | 0 | 666,061,415 | 12.5% | ||
radinaaa.ppp | 0 | 586,191,678 | 100% | ||
mitaka2001 | 0 | 1,795,299,380 | 100% | ||
ralphmarcuss | 0 | 730,049,532 | 100% | ||
onwugbenuvictor | 0 | 5,371,708,864 | 15% | ||
preets | 0 | 12,990,513,475 | 100% | ||
cryptomaster5 | 0 | 2,139,834,063 | 100% | ||
lazy001 | 0 | 2,259,538,137 | 100% | ||
leilei1991 | 0 | 0 | 100% | ||
nilarwin | 0 | 9,705,368,497 | 100% | ||
cryptokungfu | 0 | 8,630,319,014 | 100% | ||
adamkadmon5 | 0 | 667,614,125 | 100% | ||
iasplan | 0 | 10,481,405,936 | 100% | ||
dsky | 0 | 759,372,407,175 | 100% | ||
teodor.borisov | 0 | 606,896,154 | 100% | ||
sandraa1 | 0 | 6,157,904,202 | 100% | ||
deraaa | 0 | 1,561,319,993 | 10% | ||
adrianalara | 0 | 16,488,341,881 | 100% | ||
mintfinch | 0 | 4,586,089,245 | 100% | ||
danyst1ne | 0 | 16,089,276,860 | 100% | ||
tkrypt | 0 | 1,641,623,067 | 100% | ||
bettymorgan | 0 | 0 | 100% | ||
estherscott | 0 | 963,420,615 | 6.25% | ||
goldigolds | 0 | 3,138,801,571 | 49% | ||
mrtodorov | 0 | 1,534,826,293 | 100% | ||
winniecorp | 0 | 666,489,572 | 12.5% | ||
attentionneeded | 0 | 529,223,559 | 5% | ||
ernestoacostame | 0 | 2,746,836,632 | 100% | ||
cryptobeautiful | 0 | 1,323,065,877 | 100% | ||
methodofmad | 0 | 788,332,910 | 100% | ||
omosefe | 0 | 1,396,428,876 | 12.5% | ||
sagarkothari88 | 0 | 12,981,284,967 | 100% | ||
mariano123 | 0 | 6,820,026,126 | 100% | ||
jordanfit | 0 | 604,655,016 | 100% | ||
rocinanteprimo | 0 | 1,401,134,373 | 100% | ||
zuun.net | 0 | 15,165,359,276 | 58.2% | ||
krisi.nikolova | 0 | 1,810,300,223 | 100% | ||
hironakamura | 0 | 2,081,480,144 | 25% | ||
pompoko | 0 | 141,022,458 | 100% | ||
bricksolution | 0 | 6,940,938,119 | 16% | ||
dancho90 | 0 | 532,451,792 | 100% | ||
iliev26 | 0 | 20,376,624,594 | 100% | ||
islandboi | 0 | 0 | 100% | ||
santikomalasari | 0 | 0 | 100% | ||
investinfreedom | 0 | 34,619,987,903 | 60% | ||
rainbrella | 0 | 3,526,540,482 | 100% | ||
juditka | 0 | 1,768,570,562 | 100% | ||
alonicus | 0 | 0 | 100% | ||
braachaan | 0 | 0 | 100% | ||
mezzane | 0 | 34,229,192,478 | 100% | ||
reineesmay | 0 | 1,263,576,498 | 8.75% | ||
yisusth | 0 | 0 | 100% | ||
theinfiltred | 0 | 1,268,197,283 | 100% | ||
vankata8 | 0 | 789,962,117 | 100% | ||
shafqatmahmood | 0 | 0 | 100% | ||
doncustom | 0 | 654,726,159 | 21% | ||
ranteputohh | 0 | 332,900,880 | 100% | ||
olgargorohova | 0 | 412,136,272 | 100% | ||
resonator | 0 | 19,538,602,522,945 | 60% | ||
micaela.nomade | 0 | 3,316,230,538 | 100% | ||
xianlaiyiju | 0 | 3,765,233,532 | 100% | ||
doxdod38 | 0 | 0 | 27% | ||
priceless93 | 0 | 0 | 100% | ||
baboz | 0 | 100,521,905 | 100% | ||
franzpaulie | 0 | 399,217,577 | 100% | ||
adaezeinchrist | 0 | 2,113,975,828 | 100% | ||
xtheycallmedan | 0 | -885,197,270 | -100% | ||
xthreespeak | 0 | -678,764,876 | -100% | ||
xtrafalgar | 0 | -347,093,167 | -54% | ||
xecency | 0 | -1,596,708,127 | -12.6% | ||
kamarah | 0 | 5,605,653,247 | 41.2% | ||
memes01 | 0 | 64,922,668 | 100% | ||
faucetb2002 | 0 | 754,660,959 | 100% | ||
matyr | 0 | 354,434,635 | 51% | ||
trifecta-tt | 0 | 1,252,866,460 | 44.3% | ||
karevska | 0 | 2,171,074,366 | 100% | ||
sommylove | 0 | 1,646,616,199 | 100% | ||
rico.csirait | 0 | 98,004,402 | 100% | ||
growandbow | 0 | 0 | 100% | ||
memes03 | 0 | 59,465,682 | 100% | ||
memes04 | 0 | 67,003,036 | 100% | ||
acgalarza | 0 | 81,130,227,180 | 40% | ||
projectmamaby | 0 | 0 | 100% | ||
rosmeris21 | 0 | 4,355,308,298 | 100% | ||
memes05 | 0 | 67,670,021 | 100% | ||
menati | 0 | 7,497,868,124 | 100% | ||
koleso | 0 | 2,313,744,250 | 100% | ||
revise.spk | 0 | 8,271,227,843 | 100% | ||
atkw | 0 | 0 | 100% | ||
tihomirova | 0 | 540,673,303 | 50% | ||
silhouetted.grey | 0 | 603,842,721 | 100% | ||
meta007 | 0 | 247,564,848 | 49% | ||
chiomaj | 0 | 0 | 1% | ||
elius100 | 0 | 3,351,814,784 | 100% | ||
judgedredd0666 | 0 | 0 | 100% | ||
lovelust | 0 | 0 | 13% | ||
dlugasny | 0 | 0 | 75% |
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
author | aquatp2 |
---|---|
permlink | regr9l |
category | hive-181335 |
json_metadata | {"users":["theycallmedan"],"app":"hiveblog/0.1"} |
created | 2022-07-03 12:21:48 |
last_update | 2022-07-03 12:21:48 |
depth | 1 |
children | 0 |
last_payout | 2022-07-10 12:21:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 136 |
author_reputation | 308,210,481,727 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,530,185 |
net_rshares | 0 |
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.
author | bitcoinflood |
---|---|
permlink | re-sagarkothari88-2022629t18124163z |
category | hive-181335 |
json_metadata | {"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-06-29 22:08:51 |
last_update | 2022-06-29 22:08:51 |
depth | 1 |
children | 2 |
last_payout | 2022-07-06 22:08:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 209 |
author_reputation | 1,645,024,977,979,240 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,435,276 |
net_rshares | 15,017,849,052 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
overunitydotcom | 0 | 12,545,592,798 | 70% | ||
captainbob | 0 | 2,472,256,254 | 1% | ||
davidlionfish | 0 | 0 | 25% | ||
blancovu | 0 | 0 | 100% | ||
e43 | 0 | 0 | 100% |
We're working on it.
author | sagarkothari88 |
---|---|
permlink | re-bitcoinflood-202271t204747383z |
category | hive-181335 |
json_metadata | {"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.24-vision","format":"markdown+html"} |
created | 2022-07-01 15:17:48 |
last_update | 2022-07-01 15:17:48 |
depth | 2 |
children | 1 |
last_payout | 2022-07-08 15:17:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.036 HBD |
curator_payout_value | 0.036 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 20 |
author_reputation | 529,748,360,961,967 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,481,208 |
net_rshares | 125,393,339,830 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
bitcoinflood | 0 | 99,966,798,050 | 4.41% | ||
overunitydotcom | 0 | 12,369,610,830 | 70% | ||
sagarkothari88 | 0 | 13,056,930,950 | 100% |
Thank you!
author | bitcoinflood |
---|---|
permlink | re-sagarkothari88-202271t14113584z |
category | hive-181335 |
json_metadata | {"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.24-vision","format":"markdown+html"} |
created | 2022-07-01 18:07:42 |
last_update | 2022-07-01 18:07:42 |
depth | 3 |
children | 0 |
last_payout | 2022-07-08 18:07:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 1,645,024,977,979,240 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,485,474 |
net_rshares | 0 |
Thank you so much Sir.I learnt a lot from your post
author | chiomaj |
---|---|
permlink | re-sagarkothari88-rebtdt |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"peakd/2022.05.9"} |
created | 2022-07-01 05:17:54 |
last_update | 2022-07-01 05:17:54 |
depth | 1 |
children | 1 |
last_payout | 2022-07-08 05:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 1,044,665,312,601 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,471,134 |
net_rshares | 0 |
You're welcome. I am glad that it helped you learn more. I'm committed to do even more contribution.
author | sagarkothari88 |
---|---|
permlink | re-chiomaj-202271t105033956z |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"ecency/3.0.24-vision","format":"markdown+html"} |
created | 2022-07-01 05:20:36 |
last_update | 2022-07-01 05:20:36 |
depth | 2 |
children | 0 |
last_payout | 2022-07-08 05:20:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 100 |
author_reputation | 529,748,360,961,967 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,471,158 |
net_rshares | 13,026,404,224 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sagarkothari88 | 0 | 13,026,404,224 | 100% |
👍💪🇦🇷
author | elgringoviejo |
---|---|
permlink | re-sagarkothari88-202271t215452361z |
category | hive-181335 |
json_metadata | {"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.30-mobile","format":"markdown+html"} |
created | 2022-07-02 00:54:54 |
last_update | 2022-07-02 00:54:54 |
depth | 1 |
children | 0 |
last_payout | 2022-07-09 00:54:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4 |
author_reputation | 271,715,728,222 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,494,965 |
net_rshares | -2,742,013,458 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -2,742,013,458 | -0.1% |
Can I monitor it working in real time?
author | fernandosoder |
---|---|
permlink | re-sagarkothari88-202275t104625440z |
category | hive-181335 |
json_metadata | {"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.24-vision","format":"markdown+html"} |
created | 2022-07-05 13:46:27 |
last_update | 2022-07-05 13:46:27 |
depth | 1 |
children | 0 |
last_payout | 2022-07-12 13:46:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 38 |
author_reputation | 43,324,597,346,337 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,588,810 |
net_rshares | 0 |
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)!
author | hivebuzz |
---|---|
permlink | notify-sagarkothari88-20220630t070523 |
category | hive-181335 |
json_metadata | {"image":["http://hivebuzz.me/notify.t6.png"]} |
created | 2022-06-30 07:05:24 |
last_update | 2022-06-30 07:05:24 |
depth | 1 |
children | 0 |
last_payout | 2022-07-07 07:05:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,405 |
author_reputation | 370,776,814,109,957 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,443,237 |
net_rshares | 0 |
Ubuntu is not an operating system. It is a Linux distribution. And even not a recommendable.
author | hivediver |
---|---|
permlink | re-sagarkothari88-reb1vm |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"peakd/2022.05.9"} |
created | 2022-06-30 19:23:45 |
last_update | 2022-06-30 19:23:45 |
depth | 1 |
children | 2 |
last_payout | 2022-07-07 19:23:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 92 |
author_reputation | 5,049,338,871,195 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,457,416 |
net_rshares | 0 |
🙏 Prabhu 🙏 (Master in my language)
author | sagarkothari88 |
---|---|
permlink | re-hivediver-202271t05825302z |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"ecency/3.0.24-vision","format":"markdown+html"} |
created | 2022-06-30 19:28:24 |
last_update | 2022-06-30 19:28:24 |
depth | 2 |
children | 1 |
last_payout | 2022-07-07 19:28:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 529,748,360,961,967 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,457,513 |
net_rshares | 12,777,680,119 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sagarkothari88 | 0 | 12,777,680,119 | 100% |
😁
author | hivediver |
---|---|
permlink | re-sagarkothari88-reb349 |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"peakd/2022.05.9"} |
created | 2022-06-30 19:50:33 |
last_update | 2022-06-30 19:50:33 |
depth | 3 |
children | 0 |
last_payout | 2022-07-07 19:50:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1 |
author_reputation | 5,049,338,871,195 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,457,978 |
net_rshares | 0 |
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......
author | jamiashu1 |
---|---|
permlink | re-sagarkothari88-2022712t92824297z |
category | hive-181335 |
json_metadata | {"tags":["hive-181335","india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.30-mobile","format":"markdown+html"} |
created | 2022-07-12 04:28:27 |
last_update | 2022-07-12 04:28:27 |
depth | 1 |
children | 0 |
last_payout | 2022-07-19 04:28:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 251 |
author_reputation | 35,387,816,487 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,775,982 |
net_rshares | 0 |
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.
author | overunitydotcom | ||||||
---|---|---|---|---|---|---|---|
permlink | l52vamai | ||||||
category | hive-181335 | ||||||
json_metadata | {"app":"3SpeakComment/0.2"} | ||||||
created | 2022-07-01 19:47:33 | ||||||
last_update | 2022-07-01 19:47:33 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2022-07-08 19:47:33 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 170 | ||||||
author_reputation | 306,060,043,399 | ||||||
root_title | "How to setup 3Speak Video Encoder node?" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 100,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 114,488,215 | ||||||
net_rshares | 17,444,799,795 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
overunitydotcom | 0 | 17,444,799,795 | 100% | ||
davidlionfish | 0 | 0 | 25% |
<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>
author | pizzabot |
---|---|
permlink | re-retfajht-20220630t055934z |
category | hive-181335 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2022-06-30 05:59:36 |
last_update | 2022-06-30 05:59:36 |
depth | 1 |
children | 0 |
last_payout | 2022-07-07 05:59:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 237 |
author_reputation | 7,502,888,834,771 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,442,372 |
net_rshares | 0 |
Very informative thank you. Are rewards up and running or is this still in testing phase? !PIZZA
author | revisesociology |
---|---|
permlink | re-sagarkothari88-rea0lp |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"peakd/2022.05.9"} |
created | 2022-06-30 05:58:39 |
last_update | 2022-06-30 05:58:39 |
depth | 1 |
children | 1 |
last_payout | 2022-07-07 05:58:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 2,273,803,953,744,383 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,442,359 |
net_rshares | 0 |
Rewards are up and running.
author | sagarkothari88 |
---|---|
permlink | re-revisesociology-2022630t11304526z |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"ecency/3.0.24-vision","format":"markdown+html"} |
created | 2022-06-30 06:00:45 |
last_update | 2022-06-30 06:00:45 |
depth | 2 |
children | 0 |
last_payout | 2022-07-07 06:00:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.057 HBD |
curator_payout_value | 0.057 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 27 |
author_reputation | 529,748,360,961,967 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,442,394 |
net_rshares | 202,589,381,331 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
revisesociology | 0 | 190,134,579,359 | 10% | ||
sagarkothari88 | 0 | 12,454,801,972 | 100% |
I wonder if there's an updated version of this, as I would like to be an encoder.
author | shadowmyst |
---|---|
permlink | re-sagarkothari88-ss7unc |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"peakd/2025.2.3","image":[],"users":[]} |
created | 2025-02-25 01:54:48 |
last_update | 2025-02-25 01:54:48 |
depth | 1 |
children | 0 |
last_payout | 2025-03-04 01:54:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 81 |
author_reputation | 201,281,371,887,764 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 141,031,949 |
net_rshares | 0 |
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!
author | tkrypt | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | rea77a | ||||||||||||||||||
category | hive-181335 | ||||||||||||||||||
json_metadata | {"app":"hiveblog/0.1"} | ||||||||||||||||||
created | 2022-06-30 08:21:12 | ||||||||||||||||||
last_update | 2022-06-30 08:21:12 | ||||||||||||||||||
depth | 1 | ||||||||||||||||||
children | 0 | ||||||||||||||||||
last_payout | 2022-07-07 08:21:12 | ||||||||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||||||||
total_payout_value | 0.000 HBD | ||||||||||||||||||
curator_payout_value | 0.000 HBD | ||||||||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||||||||
promoted | 0.000 HBD | ||||||||||||||||||
body_length | 346 | ||||||||||||||||||
author_reputation | 3,173,436,184,972 | ||||||||||||||||||
root_title | "How to setup 3Speak Video Encoder node?" | ||||||||||||||||||
beneficiaries |
| ||||||||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||||||||
percent_hbd | 10,000 | ||||||||||||||||||
post_id | 114,444,237 | ||||||||||||||||||
net_rshares | 0 |
nice!
author | urun |
---|---|
permlink | re-sagarkothari88-re9dlu |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"peakd/2022.05.9"} |
created | 2022-06-29 21:41:54 |
last_update | 2022-06-29 21:41:54 |
depth | 1 |
children | 0 |
last_payout | 2022-07-06 21:41:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 5 |
author_reputation | 94,125,949,460,949 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,434,816 |
net_rshares | 0 |
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
author | zuun.net |
---|---|
permlink | re-sagarkothari88-2022629t15559161z |
category | hive-181335 |
json_metadata | {"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-06-29 20:06:00 |
last_update | 2022-06-29 20:06:00 |
depth | 1 |
children | 3 |
last_payout | 2022-07-06 20:06:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 542 |
author_reputation | 7,596,564,094,155 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,432,813 |
net_rshares | 0 |
@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.
author | sagarkothari88 |
---|---|
permlink | re-zuunnet-2022630t15249697z |
category | hive-181335 |
json_metadata | {"tags":["india","threespeak","videoencoder","nodes","hive","earning","passive"],"app":"ecency/3.0.23-vision","format":"markdown+html"} |
created | 2022-06-29 20:22:51 |
last_update | 2022-06-29 20:22:51 |
depth | 2 |
children | 1 |
last_payout | 2022-07-06 20:22:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 594 |
author_reputation | 529,748,360,961,967 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,433,125 |
net_rshares | 12,844,142,027 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
davidlionfish | 0 | 0 | 25% | ||
sagarkothari88 | 0 | 12,844,142,027 | 100% |
what makes your node have a higher rank
author | simplegame |
---|---|
permlink | re-sagarkothari88-s2pm69 |
category | hive-181335 |
json_metadata | {"tags":["hive-181335"],"app":"peakd/2023.10.1"} |
created | 2023-10-18 05:34:57 |
last_update | 2023-10-18 05:34:57 |
depth | 3 |
children | 0 |
last_payout | 2023-10-25 05:34:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 128,640,964,346,570 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 128,088,964 |
net_rshares | 0 |
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.
author | sagarkothari88 |
---|---|
permlink | re9a5z |
category | hive-181335 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2022-06-29 20:27:36 |
last_update | 2022-06-29 20:27:36 |
depth | 2 |
children | 0 |
last_payout | 2022-07-06 20:27:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 529,748,360,961,967 |
root_title | "How to setup 3Speak Video Encoder node?" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 114,433,231 |
net_rshares | 12,616,228,051 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sagarkothari88 | 0 | 12,616,228,051 | 100% |