Version 0.8 took a while, this article will explain why. But it comes packed in with a lot of new things that were highly requested. Almost a year since our inception, we are now hitting the 8th iteration of DTube, and how far we've gone. This update once again introduces more new features to make the experience more complete and similar to the mainstream video platforms. But before talking about new features, I have a big announcement:
DTube is now fully open-sourced
Up until now, everything was open-source, except the main application which was only available in minified format, which was apparently very frustrating for a lot of people.
I'm glad to announce that DTube is now a 100% free open-source software. Our main application is now is available for all to read or modify on github.com/dtube/dtube. This is another move in the hope of improving the transparency of our project and allow contributions from anyone.
Notifications
I've talked about notifications a lot in the past articles, and it is something I thought we would have earlier in our development. Finally, here it is. It required a bunch of changes in DTube so that any content could be viewable in DTube, including non-video content.
Our notifications are totally similar to what busy.org implemented, only the client-side is slightly different and should allow you to better identify which notifications you have clicked on already.
DTV: Livestreaming now available on DTube
A big new feature, that I am sure everyone will enjoy, is livestreaming. We are using MistServer, a centralized livestreaming server, with an open-source version.
On top of Mist, I built an api to safely generate streaming keys that are associated directly to a steem username. When you click the button to get your stream key, it will create a custom dtubeStreamVerif
transaction in the background that will verify your steem identity and authorize your stream token. This means you can start livestreaming, without necessarily having to publish a new root post on the blockchain.
Of course, this feature is indeed monetized. Once streaming, just publish your stream on the 'Go Live' page, and a new steem content will be created. Your livestream will then be displayed on the DTV section of DTube. Just like for videos, as you keep getting more and more upvotes, your stream will go up in the listings and grow your audience organically.
While decentralizing livestream would be good, it's a hard task that will take time. It is our end goal. However, unlike mass video encoding, livestreaming servers is a very open market with a lot of alternatives, including open source ones. We decided that it is a good choice to use just that for now, as it doesn't create much cost or maintenance time for us, while fulfilling the biggest demand of our community.
I wanted to release this as just a basic streaming feature, but many private users complained that a livestream in itself would serve no purpose if the video wasn't available later. We are therefore storing all of your livestreams inside our infrastructure, and clicking on an old content will show up the video matching the time of the publication on the steem blockchain. These videos, as well as the livestream feeds, are both unencoded (a bit how our videos were unencoded in earlier versions of the project), so keep that in mind, and make sure that your stream quality isn't too high if you want users with bad internet to be able to follow your stream.
In the next MistServer release, we should also have access to WebRTC broadcasting which will enable direct in-browser streaming through WebRTC, i.e. no more need for software like OBS or Larix Broadcaster to start streaming.
DTalk: Steem Private Messaging
Steem Private Messaging is a subject that seems to come back into life once in a while, without ever finding a working solution. I personally believe that if all top social networks have implemented messaging, there is a reason. Currently, most steemians are using steem.chat or Discord. These solutions are poor because they require users to verify who they are speaking with, if they don't want to get hustled. If we want a true way to message between steem users, we shouldn't need a secondary account on Discord on Steem.chat.
Some other developers have tried to come up with solutions to this issue before, such as Mangosteem by @mynameisbrian or Steem Messenger by @therealwolf. These solutions failed to get adopted by the community because they are on-chain. Mangosteem was spamming the chain as comments and became unusable after a short time. Steem Messenger is using transfer operations to send (short) messages, so each message will cost 0.001 STEEM or SBD. Also, even if you wouldn't be able to decode a message, you'd still know who is speaking with who.
After carefully considering these facts, and badly enough wanting to allow DTube users to send themselves messages, I've tried coming up with solutions. A simple centralized solution would be using a modified irc server that can can login STEEM users by asking them to decode a message only them can decrypt. This solution works fine, and should scale as good as a traditional IRC server (pretty good).
But, can we decentralize it?
If we can do it for pictures and videos, why not text strings? Because if we do not want to use the STEEM blockchain as a database like we usually do, storing messages would serve no purpose as we would have no way to fetch all messages from the same discussion easily... What we need is a decentralized database that runs inside the browser, inside the DTube app...
Yes we can!
For this purpose, DTube is now using Gun, a decentralized graph database technology. It's created by @marknadal, with whom I had the luck of collaborating to make DTalk reality. A good example of gun being used in production today is notabug.io, a decentralized reddit, running 100% on gun, no blockchain, no backend. DTube is now another big example of the capabilities of Gun.
Just like for IPFS, DTube will have a Gun node running 24/7 inside the infrastructure, which should help correspondants seeing new messages even if the sender disconnected, and keep your encrypted messages stored somewhere even if you wipe all your browsers.
All the messages are encrypted end-to-end, and finding out who speaks with who is impossible if you cannot decrypt the message. The only caveat, is that you will need to publish your gun key inside your profile in order to be discoverable and receive messages from other users. You should see a red button on the DTalk part of DTube. It's a one-time thing to do, except if you reset your STEEM keys, in which case you will need to do it again and all your old conversations will be lost.
So while the first option would most likely have worked better and with less work, the second option is our final goal, that's why we are starting this feature directly with a decentralized approach, even if it might be slightly buggy in the first weeks while we handle all the details.
Handling DMCAs
Not really a good feature, but we have started blocking a few videos from the d.tube domain based on DMCA complaints we have received. We are now running a super slim 18-lines server that identifies DMCA'd videos.
This is unfortunate, but all of the requests received so far have been 100% legit, mostly reposted movies or links to pirated software. A large majority of our users are playing fair and uploading only original content, let's keep it that way!
Clustering our infrastructure
After the previous update, we were managing about 10 different size specialized servers for D.Tube. Some were focusing on storage (storage servers), some on computational power (encoding servers), some were for general purpose things or testing. This was convenient and simple to manage while we had a low number of server, but the growth of the project required us to professionalize that part, even though in the far future we aren't supposed to run anything server-side, it isn't the case currently.
Clustering everything, is a bit like creating one big machine by merging all other machines together. This big machine is what we call a cluster. Then with virtualization tools like Docker, we are able to launch many small instances of the same software inside the cluster, without having to rent a new server and wait everytime.
Dockerification of all our software
These small instances are all ran through Docker, a popular way to achieve this. Most STEEM witnesses are also using docker for running the STEEM blockchain.
Most of the software we run server-side is our own code, and the ipfs-uploader for example wasn't quite ready for cluster support. We had to adapt everything so it would be easy to start/stop any number of the same DTube service and scale up.
At the moment, our cluster runs a total of 7 services:
- traefik: the service that handles all the traffic and reroutes it to the good docker container
- IPFS Uploader: our upload service (ffmpeg encoding, snap resizing, ipfs node)
- Streaming: MistServer combined with our own stream keys api.
- Direct video delivery (more on that later)
- GunDB node
- MariaDB (our small sql database for accounting and @dtube.rewards)
- vip.d.tube: a small website for quickly creating steem accounts if you have a code
Data storage and redundancy
Another big issue of our old setup, was what happened when a drive died. All the data inside it died with it, and unless the file was copied on another ipfs node, or the author reuploads the same file, the video would never load again. Managing redundancy with IPFS was the original plan, but using ipfs pin ls
on large datastores like ours takes far too long and isn't manageable.
Instead, we tried to use existing enterprise-grade solutions to basically create a huge cloud folder for all our videos, and every bit of data inside this folder, gets written on at least 2 different real physical machines. We first tried 'GlusterFS', which ended up being really slow because of all the small files created inside the IPFS datastore. We are finally using Ceph which seems to do what we want it to do.
Migration
An important part of the cluster project, was to move everything from our simple setup, into the new thing which had no prior testing. We did a few testing days where half of our uploads would go on the cluster, and half on the old setup. We finished migrating the ipfs uploading and video delivery into the cluster on June 19th.
IPFS getting slow, adding direct video delivery
In the middle of all this change, the IPFS network gateway started getting slower to load videos, even when using our old-school way of doing things. Users were complaining. We had to do something. We built a new service running on the 'video.dtube.top' domain, which serves videos straight from our cluster, exactly like IPFS, but without going through the IPFS network. Files are still kept inside the IPFS datastore and fetching the video from IPFS still works.
While this was true 1 month ago, it seems IPFS manages to load videos quite quick again. Wait & see
Issues we had
All these changes in the infrastructure came at quite a heavy cost. Our service has been unstable at times during these past months.
We had a big incident on July 15th which caused a ~6 hours downtime of the uploads and video delivery.
We also had multiple short-term incidents, mostly during the migration period. Either super long queues for the upload, or videos not playing.
On behalf of the DTube team, I'd like to apologize for all these failures. Our service has been running uninterupted for the past 3 weeks now, and we think it will be good now. In case of issues, please keep contacting us in the #upload-issues channel like you've done in the past, this greatly helps us.
Get started on DTube development with Utopian.io
While I am only announcing today on our blog about the fact that the main DTube app is open-source, we already collected 75 stars and many pull requests from contributors, mostly coming from Utopian.
Contributing to DTube's development with Utopian is a unique possibility today for open-source developers, and we already had multiple positive experiences of developers doing work for DTube, out of their own motivation, without expecting a payout. Except they end up with crypto on their account, and a lot of visibility for their work.
The process is easy:
- Find something to work on. Either in our tagged GitHub issues or by reaching out to me directly on discord.gg/dtube
- Write good code and submit it as a pull request on GitHub.
- We will check your pull request and merge it, or comment on the issues we discovered.
- Within the next 14 days of the merge, submit a post on the STEEM network. It can be a DTube video.
- The first tag must be
utopian-io
- The second tag must be
development
.
- The first tag must be
- ???
- Profit and become famous
DTube 0.8 Open Source Contributions
New Curation Style
Contributor: @wehmoen | Utopian post | New Repo
Since a couple of weeks now, we have a new discord bot that helps our curators do their work more precisely.
Instead of simply voting always at the same percentage (20%), curators can now control the voting weight of the bot through emojis! Each reaction (👍,👎,💯,🎲 or ❤) has a different impact on the vote.
DTube Onboarding Platform: vip.d.tube
Contributor: @wehmoen | Utopian post | New Repo
It's something that has been requested to me many times, and that I didn't want to do before, but it's getting important now. We will now be able to generate voucher codes that enable people to get an instant STEEM account. We plan to distribute these codes at events, probably directly on our business cards as a forst. We can also give codes to popular Youtubers wanting to make the switch without having to wait in the future.
Small UI and graphical lifting (menu, upload, homepage, etc)
Contributor: @happyrobot | PR
0.8 looks better than 0.7, and all of that is thanks to our new contributor @happyrobot. Most noticeable changes will be in sidebar and on the upload page, but almost everything got a small lifting.
Bottom Drawer for languages and notifications lists
Contributor: @happyrobot | PR
Our language selection menu was getting quite long, even on desktop, making languages at the end of the alphabet get out of the screen. Notifications were also running into this issue on mobile where it was impossible to display a floating menu with all notifications inside. Therefore we created a new way to display long list of informations in DTube.
Remembering user settings for nightmode and voting weight.
Contributor: @kirkins | Utopian post | PR
Another small annoyance when using DTube was how your voting weight or nightmode settings was reset when you opened a new tab or refreshed the current one. This is now working as expected and will be remembered.
Final words
This update is another big step towards the completion of a large project. Last year when I originally published about the 0.1 version of DTube, I had honestly no idea where things were going to go, I wasn't even sure it would work.
I want DTube to go away from the proof-of-concept stage and turn into a fully-integrated product. Right now the machinery isn't very polished, but things are getting plugged in at a quick rate.
There are still tons of features which will be needed to make DTube the video platform that producers and consumers equally want to use in the future. Playlists, VOD, Twitch-style donations, analytics, ads platform, I keep coming up with good feature ideas as the project goes along.
This post is one of the most informative that I have seen related to DTube and related services. I believe the topics you bring up are of greater importance toward the growth of Steemit and its user base than any other application or interface seen as of yet. Very nice blog.
I would sincerely hope that requests to silence content which is being demonetized and/or banned on another video site would not be taken down on DTube. That is, if we can attract said users.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
The DMCA process applies to copyrighted contents. We have no choice but to comply on this aspect for our d.tube domain.
If you are thinking about contents which are demonetized/banned for different reasons on YouTube, then I don't know, we haven't received any of that yet, all of the complaints have been legit (full movies uploads mostly)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
DMCA and illegal actions / promoting illegal actions should be the ONLY things that get taken down.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
When the law itself becomes the abuse, DMCA will be the problem. See The Nuremberg Trials.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
you sir just won a godwin point clap clap
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
UPvoted and followed for that kind of comment mate! Excellent! 🙃
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Honestly I am very impressed with how you share with others with your help they can get something they never expected.
And I always help you post next from you mr. @done
Thank you for what you have done for us
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You may want to consider flagging as a pre-filter for content that comes up as high risk in your DMCA identification server. ..with an option to appeal ofcourse..That way user is disincentivzed to initiate such events.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Flag.s on Steemit are most times used to punish users for speaking out and they fundamentally demonetizing the user for months at a time. This is the sad reality. They often become tit for tat never ending vengeful tools. Not the answer.
Steemit investors do well when it comes to identifying copy/paste blogs. I do not see a problem with us doing the same for video content.
Ideally, the one that comes up with a decentralized solution will win. I have never heard of a blockchain currency having to undo a transactions based on a DMCA or any other illegal activity. Once a line is drawn and the possibility exists to take down anything, there is room for abuse.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Very well explained about flag issue. Well done @done
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
yeah, but as soon as the first flag is made that has a serious impact against the creator... you can't just unflag and get the steem. A vote is a vote, and if a bot starts flagging people unjustly while it is reputable, then that will have serious ramifications for upcoming users..
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
you can always remove the flag , no?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Yes, but the flag would still be registered on the blockchain, its permanent regardless of what the actions are in the frontend (after flagging).
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I am not sure if I follow you , in my understanding whatever damage a flag causes can be undone as soon as it is removed...
am I wrong ?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Not from my understanding of how the blockchain works. Each vote is permanent regardless if you "unvote". Just like each post you make is permanent, regardless if you edit, all you're doing is just updating the frontend content, but all the previous data is still registered on the blockchain.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I openly understand the use of dtube.
Please upvote me
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
No.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Regardless of DCMA, some content like mine (DJ Mixes) clearly fall under "fair use". Anyone can use copyright content as long as it's altered (Remix videos/Full mixes) and doesn't hurt the market (Free DJ promotion). DCMA has hurt legit independent DJ's the most.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Fair use isn't that simple. It's possible in some circumstances to change very little and still be able to win a fair use defense, and in other circumstances to change a lot and still be found to have infringed the copyright. I encourage you to study how it actually works, and maybe ask a copyright attorney. In fact, I happen to know of Leonard French, an attorney who talks a lot about copyright (including fair use) and other topics, as well as various cases in the news, on his YouTube channel.
That said, the DMCA is being abused a lot. Something needs to be done to stop that abuse. Lenz v Universal was a step in the right direction, but I don't think it actually did as much as it could have. It's even worse when people make DMCA claims that are completely invalid, as e.g. someone did sometime back to Imagos Softworks and quite a number of their fans. At least they got a positive resolution, but a lot of damage was already done.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I am against too much federal, corporate, technological, religious, political, cultural, centralized, financial, tyranny, control, suppression, and YouTube removed thousands of my home videos I made on my OJAWALL Chanel, videos I made when I was ten years old with family and friends with no background music. Just little kids running around having fun. Gone.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Nice said. This is the beauty of blockchain. I believe dtube can grow big because of the transparency!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Yes, this are great news!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Yea. I guess they were updating lately, that caused some uploading problems. Now should be fine.
Posted using Partiko iOS
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Except that I can no see my VIDEOS on Dtube and my wallet on Dtube says $204 while my Steemit wallet says $198 right now and I do not know what that is about.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice upgrade
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi bro this my first dtube video chack please
https://steemit.com/onelovedtube/@ahmanik/rsgpx1r2
Posted using Partiko Android
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi bro this my first dtube video chack please
https://steemit.com/onelovedtube/@ahmanik/rsgpx1r2
Posted using Partiko Android
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi bro this my first dtube video chack please
https://steemit.com/onelovedtube/@ahmanik/rsgpx1r2
Posted using Partiko Android
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi bro this my first dtube video chack please
https://steemit.com/onelovedtube/@ahmanik/rsgpx1r2
Posted using Partiko Android
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
YouTube, DMCA, Sony, CBS, destroyed thousands of my OJAWALL videos in 2017.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I wanna ask to be sure. After this update my videos don't gonna disappear over a time? Put in my work will gonna be available forever? :D
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
The cluster storage is another temporary solution, but yes we plan to host your videos for much longer than before, but we can't promise that we will store it forever.
Our end goal for storage is to have every file available on IPFS / WebTorrent / DAT for a pretty long amount of time on our servers (which mostly will depend on our budget for infrastructure, something that is hard to foresee today), but we will need our users to use either a desktop or a mobile application running at least one of those 3 techs to keep old and inactive videos online.
Another solution would be to incentivize Steem witnesses to run IPFS nodes and pay them proportionally to their used storage, but I don't see how that'd work.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi dude. @exnihilo.witness is ready to run a IPFS nodes if needed.
By the way, good job Auvergne, as usual.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Why not use a system similar to STORJ for distributed hosting of video files? This would distribute the load while also solving any redundancy issues. Uploaders could contract with storage nodes on chain for the space and bandwidth usage. Give uploaders control over the level of redundancy as well, which would reflect in the cost of the contract. You could have both short term contracts as well as long term archive type contracts or whatever you want to call them. I think it would be a bad idea to limit something like that to steem witnesses though... it would be a bottleneck for one, but it also wouldn't be very pro-decentralization if you catch my meaning. I've got a large file server on a fiber line just sitting idle waiting for the right decentralized storage network to come along. Storage is cheap... if you create the right inventive people will support it.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great ideas.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey,
talking about running an IPFS node: currently it looks like my local DHT hardly contains any hash from the DTube peer. Is it possible that you could make the peer ID of the D.Tube Peer (or several if you have it) public? So far I have not found a way to get them and so it is often the case that I could not find a single peer via
ipfs dht findprovs
here in Germany and therefore the operation of an own node has hardly any sense. The peer ID can be entered as bootstrap peer, so this would certainly be a good step to get more people to run a local peer.Thxalot,
JanSe
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Did you ever get an answer to this?
I'm trying to setup a small ipfs node to "auto pin" videos and related assets that I upload to d.tube.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi @magali,
currently, D.Tube no longer uses its own IPFS node (as you can read here, they now have their own solution). Back then, they all re-initialized the nodes regularly (so there is no unique peer ID). If you now want to pin videos again (but they are no longer streamed via D.Tube), then download the video first using
wget
and then add it normally with your node.Big f_cking Edit: Since when do they use IPFS again?!! 😮 Can they make up their minds? Seems to be running IPFS again now, but I think the problem will still exist, but I will stay on it.
Thxalot,
JanSe
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I know you guys have been banging on this problem for a while now, so I'm pretty sure you considered decentralized storage solutions with their own internal currency solution for hosting like Sia or Filecoin.
It would be interesting to hear your reasons for going with Ceph over a more decentralized solution. Are the blockchain-based storage solutions just not up to the amount of traffic that DTube can/will produce or…?
This bit in particular is why I inquire about coin-supported storage solutions, since they are effectively doing exactly this, albeit on a different blockchain but with people who are specifically engaged and interested in providing distributed storage. It would be really cool if some steem witnesses wanted to provide some extra support for storage in general and used their server capabilities to help do that, but as I understand it they're pretty strapped just providing enough computational and storage power for the steem blockchain as it is. That's why we have multiple kinds of provider for people who are interested in providing different services for pay.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Because decentralized storage doesn't mean as a IPFS node hoster you don't want to use an efficient way to store IPFS content.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Except that doesn't answer the question at all.
One of the things that the DTube folks have set on a regular basis is that they want to be censorship and access control minimalized, using IPFS as a deliberate choice for moving toward that goal. However, obviously, IPFS isn't up to being that performant in this case, or they wouldn't need to go to an enterprise cluster storage solution.
Since they have stated their desires and that cluster storage is a temporary solution, I assumed that they had looked at other blockchain-based solutions which literally involve incentivizing other people to provide decentralized storage and compared that to the cluster storage option.
Talking about that sort of thing and the trade-offs involved is what I was interested in hearing about, from people who had actually been involved in being elbows deep in solving the problem.
If you need a secondary storage solution for hosting IPFS content, you might as well use that storage solution instead of IPFS if it solves the problem. If it doesn't solve the problem, and there are other systems which purport to solve the problem, and you don't use them – the reasoning around that should be interesting.
Sia and Filecoin (and even Storj) purport to literally solve the problem that DTube has said that they have and I was curious about their analysis of why going with a more traditional cluster storage solution won out. Is it truly a temporary measure until they finish assessing more decentralized solutions? Is it considered a midpoint solution, acting as a storage buffer between front end users and more decentralized, less attackable storage architectures on the backend? This is good stuff to know for other people who might be interested in building digital applications which interact with the steem blockchain and require their own storage capacity.
It'd be nice to know what someone who knows something about it has to say.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You people went waaaay to deep, i just want the answer about Decentralised solution vs Ceph too @heimindanger
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Brings into question whether or not they truly want to decentralize it. Think about it... how do you decentralize information while retaining centralized like control in order to abide by DMCA's? Or blanket ban Alex Jones? Now that doesn't mean this content can't be distributed. If I understand correctly, anyone can already download any video and re-host it themselves out of the kindness of their heart. There's no monetary incentive for this however, and it has to be done manually. So it would appear that all that's really needed would be a platform to monetize and automate this while retaining the ability to remove content to satisfy DMCA's, or whatever else someone doesn't like. You wouldn't actually need to incorporate any of the existing decentralized applications, and there wouldn't really be a need for encryption since the files are publicly available anyway. In the end though, none of these types of platforms will truly be decentralized because well... people just simply aren't ready to accept the consequences of decentralization yet. You know, I find it ironic that we've practically banned freedom of speech because of our intolerance, yet we continue to do things like pay taxes and suck down fluoride without question. Really makes you wonder who's actually in control.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I'm not quite enough obsessed with conspiracies to ask that question. Especially since given a fair amount of experience with large projects and the necessity of making certain concessions in order to get a project working at all, much less how you want it to work, I've been there.
There are certainly ways to have decentralized file storage and be compatible with the DMCA and have some degree of control of content visibility – and the secret is just that, visibility. Whether things are visible to a user is an entirely different thing to whether or not it's being stored in a distributed manner. In fact, these are orthogonal things; they have nothing to do with one another.
I think people are perfectly ready to deal with the results of decentralization and in fact are eager for the effects of decentralization, and in fact really want the results of decentralization, especially when it comes to distribution of file storage on the backend of a database, which is what we're talking about.
But, like I said, I'm not about to take up conspiracy when a perfectly reasonable, logical, and sensible explanation which doesn't require hidden motives is clearly available.
You can continue to see secret lizards under every face, but that doesn't change the mechanics of the world.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I'm not claiming conspiracy. Or are you just reacting to my mention of Alex Jones (who I do not support by the way) which I was simply using as a recent and well known example of censorship which in itself might very well be a conspiracy, but that's irrelevant to this conversation.
There's a big difference between decentralized and distributed. Decentralized meaning there is no central authority or control, and distributed meaning the data itself is not centralized however control over it still is. You cannot truly decentralize while retaining control to censor without the consent of the majority. So the real question is how to distribute the data in a way that takes advantage of some aspects of decentralization while retaining the control to censor, because let's face it... even though many of us are willing to accept the consequences of decentralization in the interest of freedom, the vast majority are not.
I may be wrong, but it sounds to me like your focusing mainly on the benefits of decentralization from a technical standpoint and what that means for computing and I completely agree with that viewpoint. On the other hand, most people outside of the tech world associate "decentralization" solely with eliminating central authority which, aside from greed, is the driving force behind decentralized currencies in the first place.
What I mean by saying people are not ready for the consequences of true decentralization is that people have to be tolerant of material they don't like or agree with since the very nature of decentralization means giving up the ability to censor all the ugliness that comes with it. Until people wake up and accept the personal responsibility that's required for our freedom we will never have true decentralization (or freedom for that matter). People not wanting that responsibility is what got us into the mess were in in the first place.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Having witnesses to host IPFS servers is brilliant!
So far I have not seen a witness offering that (I have not been too much involved in steem it lately, though)
Other important thing is that DTube should inform creators on how to host their own content in their own IPFS nodes. That way, they have their own backup(s) and ensure their content is more available. Perhaps writing a guide that helps them set up a IPFS node and pin their content.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
if you do not use your own IPFS node, then disapear of course... https://en.wikipedia.org/wiki/There_ain%27t_no_such_thing_as_a_free_lunch
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
There ain't no such thing as a free lunch
"There ain't no such thing as a free lunch" (alternatively, "There is no such thing as a free lunch" or other variants) is a popular adage communicating the idea that it is impossible to get something for nothing. The acronyms TANSTAAFL, TINSTAAFL, and TNSTAAFL are also used. The phrase was in use by the 1930s, but its first appearance is unknown. The "free lunch" in the saying refers to the nineteenth-century practice in American bars of offering a "free lunch" in order to entice drinking customers.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Amazing update! Made a YouTube video about it telling the old Tubers about it! :D
I rank fast haha :D
Keep it up DTube team!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Lol
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
hahahhaha amazing bro @phoneinf
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
DTalk doesn't really work, does it? Published my key to steem, then nothing. blank screen
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
When I click the red button in Firefox nothing happens at all
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
it worked in chrome, but yeah... nothing after
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Excellent! I look forward to trying this out. Open sourcing the code is exciting since it might really accelerate the development of the project - maybe the world can join forces to topple Youtube? :)
I have had a lot of problems getting uploads to work properly with Firefox in the previous version of DTube, so I'll see if something has fixed that.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This is wonderful! I'm sure it wouldn't take too long before most of Youtubers switch to Dtube. I'm already seeing many yotube vloggers switching to Decentralized platform like Dtube. So this is perfect opportunity for all!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Delegators Thanksgiving Thursday it is! Thank you for delegating some SP to us, we have upvoted your post with 100%
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
That moment when you realise several Steem DApps have built more and are being used by more people than numerous shitcoins avove STEEM in market cap.
Great update! One of the few posts that I will share outside of the Steem bubble.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thank you for sharing the article, it really helps to have a supportive community around the project.
People already know that STEEM network has more users than any other decentralized tech. Steem has other issues though, and when dozens of interesting new apps in the growing phase compete against each other in the same economy of bandwidth and rewards, it's not so good, and everything looks undervalued.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
It works!!! streaming my first live stream on DTUBE!!!
https://steemit.com/gaming/@rival/36ofnk71
Retro unreal tournament gaming!!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great work @dtube team! If anyone wants to know how to set up the live stream its here:
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
If anyone wants a fun logo to put on their streams:
White Neon Glow Transparent (Save as .png)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Nice one!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Holy fucking hell, ill have to make sure to take a solid look at this.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Please do! I kinda wish I had split this article into two updates but it is the way it is, and might take up to 10 minutes for the full read :(
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
There's a lot there - its a good read.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
It's amazing, everything people said about @dtube in @dcooperation is true, DTUBE IS THE BEST :
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey @heimindanger, DTube is now available on OBS! For 3 million downloads per month! I tought you would like that. A little publicity and convenience does not hurt! ;-)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Sweet. Author of notabug.io here.
I've not built any sort of messaging yet, but it's something I'd like to support and I see no reason to reinvent the wheel. Ideally we could eventually have chat interoperate between notabug and d.tube
Is the dtalk code isolated in a way I could adopt it into another site/project easily?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You can check the code in
client/collections/dtalk.js
it uses gun mainly, but it puts an alias likego1dfish@publickey@steem
, then users need to publish their gun public key (thegun.user().is.pub
) to the blockchain so I can do the search users thingy.Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
A friend of mine recently introduced me to Dtube. I look forward to seeing how the platform develops.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I was just beginning to wonder what's happening with DTube and after reading this update all I can say is wow! You guys have been busy bees and it's so great to see as we desperately need alternatives for youtube as it becomes controlled more and more by the interests of big companies.
It seems you're pushing DTube to the right direction with mind and heart in the right place.
And for everyone else reading this, DTube distributes additional curator rewards so it's more worthwhile to curate content specially from DTube!
And content creators might find themselves receiving a big upvote from DTube curators so what you're waiting for, make DTube part of your time spent on Steem ecosystem if it isn't already or you're missing out.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thank you very much for the update. I look forward to seeing how well uploaded and playbacks work! That's really the main thing for me - being able to upload, and being able to play the video back.
I've been using DTube for a year now, with greatly varied success over the months! Sometimes, it was completely down for weeks on end. And other times, like right now, I'm uploading at least once a week, and playback is flawless. Thanks!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
We've done tons of work to make everything work as expected. Uploads can still be a bit slow and have queues sometimes, but generally work fine. Stability will come with time and polishing, but I think the cluster part of this article should help greatly, especially for video delivery.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hi, my DCR Tools (StreamLabs like app) works for comments, tips and upvotes nottifications on Dtube livestreams (with overlay windows for OBS):
Here is the link: https://zygmunt.pro/apps/dcr
Just put Your nickname, set settings, copy links to OBS and You are ready. No registering or login in :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks for the shoutout. Looking forward to trying the new update!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks for the contrib, I hope many will follow your way :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
So many big changes in here.
No doubt that each one of the new changes is essential for the Growing of DTube, The Bockchain and Dtubers,
All the rest of the changes and news team is Evolution and for that ... Cheers!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great, thanks for this platform, and thanks everyone for putting your time and dedication into making this great replacement for now outdated youtube. Hail decentralization!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Fantastic job @heimindanger. Only a question: is there a chat with DTV?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Right now it's only traditional comments, which should add a notification to the streamer shortly after.
Of course the end goal is to create public chat rooms with infinite number of participants, unencrypted. GUN will allow us to do that very shortly in the future, I realize chat is very important for livestreaming :p
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Wow! Great job @heimindanger so full of great information and updates! upped and resteemed to keep coming back to! 👍✌😎
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This is an amazing update @heimindanger and @dtube team. The collaboration across multiple Steem applications is extra exciting as well. You're really setting a precedent here by tapping into the open-source network and innovation this blockchain can / and is cultivating.
We're longtime users of d.tube and can't wait to take Version 0.8 out for a ride.
Also, that thumbnail and those graphics look extra nice ;)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Way to go. These developments are really cool. Nice work. Looking forward to trying out the streaming
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I really need to get on Dtube. I feel like I am missing out. Someone told me that videos are not accesable after a week. is that true
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great job. Whenever I see an update for a platform I like, I get super excited.
Thank you for your support with the dtube account.
For livestreaming, can you confirm that this works on mobile/android devices? I tried livestreaming with DLive in the past and it didn't work on my android phone. Have you tested to see if it works?
Thanks
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Best job DTube team!
This post is featured on today's Joy News (in Chinese :D)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
good job
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks 😊
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Clients gain cash in view of the amount STEEM they have put into the stage by owning STEEM Power.
Steemit you gain STEEM and STEEM Dollars. You would then be able to money out these two monetary standards or utilize STEEM to influence up your record to have more. You can exchange both STEEM and SBD on a digital currency trade for Bitcoins which you would then be able to exchange for cash at specific trades.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Amazing update @heimindanger, thanks for sharing! 👏👍
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
The biggest upgrade here ! Live streaming is the best thing in 0.8 great job !
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Well there are a lot of changes , but Dtalk and the new onboarding system are my the favourite things in the 0.8
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Damn, watch out DLive, DTube is coming for you :P #Livestream
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I've been following DTube since the begin. The platform have been take great development since that inauguration post. Now just more one step forward. Great! ;D
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Oh yeah!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
great
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Yay! I love the addition of Notifications.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
#heimindanger (67)
I know about dtube But it has not yet become known to everyone. Yes, but it is a platform platform like UTO It's a lot easier to rule. I'm happy now. For more ..
Do you know better details of it ?????
If you tell me a little?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
upvote nd leave the comment nd fallow me @ksrinu445
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Ok.................you back ME
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great for the open source projects!!!
👍👍👍
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
@heimindanger
Thats the best point of your video Youtube doesnt care , they do not talk etc.
But why I dont know, i mean its one of the biggest things of internet.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
please, i need know something
hi
dtube votes if i make a video and speak using portuguese language??? Or ir jus upvote with english language?? Can someone answer me?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
We can upvote every language, however I'm not sure if there's anyone speaking portuguese in our curation team yet, so usually curators do not upvote if they do not understand something.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
so, i have more chance if i talk in english???? I can try, but, i am not proficienty in english :(
thank you
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice topic dear, you explain very good
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I hope someone can help me, if i upload a video to dtube the 3 steps wont show up and there's no submit button at the bottom. I can upload, set snapshot, edit title, description and tags. But i can't submit. I've tryed different browsers. What am i doing wrong.
Thx.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thank you for this update.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
job well done :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You got a 39.94% upvote from @postpromoter courtesy of @heimindanger!
Want to promote your posts too? Check out the Steem Bot Tracker website for more info. If you would like to support the development of @postpromoter and the bot tracker please vote for @yabapmatt for witness!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
So... am I understanding this post correctly to mean that videos won't "disappear" anymore? I've tried looking at some older videos for @ketoconnect and they won't load.
Might be a good idea to do a new post describing your existing infrastructure, etc, for content creators fleeing @dlive.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Awesome Post. Upvoted.. Thanks a lot for puting your time and energy into it. Much Appreciated !!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Well it’s good if Dtubs is open source so now we can get more things to learn and programmers can get more information to develop new things , great information bro , I would like to work with you , let’s see how we can work together
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Glad you went open source. But FYI:
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
So you don't like Discord? It's a very convenient application, luckily if you want real private messaging, we have DTalk now, which is self-hosted (in your browser) and encrypts messages end-to-end ;)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Is DTalk open source though? And if not, will it ever be?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Finally..
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I was waiting for this. Is the 720p and 1080p working. No mention about the new 1080p in the post.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
It's only the field that we added, if you have your own 1080p encoded version feel free to put the ipfs hash in there, but our servers still don't encode to 1080p
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Really transforms the experience of watching dtube . I have must !
Posted using Partiko Android
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
live streaming is very good and dtube need to update his version
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Now this update was worth the wait!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Congratulations @heimindanger! You have completed the following achievement on Steemit and have been rewarded with new badge(s) :
Award for the number of posts published
Award for the number of upvotes received
Click on the badge to view your Board of Honor.
If you no longer want to receive notifications, reply to this comment with the word
STOP
To support your work, I also upvoted your post!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
The great thing about DTube is there are no gatekeepers. No one is waiting to tell you if you're good enough. It's just your audience.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice! glad to see these updates taking place. step by step...!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks for the info brother. I hope that Dtube will grow and innovate for more so it can compete to youtube and can serve the public to adopt by all.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Game set match we win...
I really wish I could personally thank the developers for all this work their doing. They really are the best out here. I LOVE what yall are doing on here.
but yeah I appreciate this for real
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Sounds awesome!
FYI, your link above for Steem Messenger goes to the same location as the Mangosteem link above.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thank you, fixing it now
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
NP.
Also, it seems the button to publish the DTalk key to steem isn't working.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Same for me, clicking on the big red button "PUBLISH MY DTALK KEY ON STEEM" has no visible effect.
Windows 10 Enterprise, Google chrome version 68.0.3440.106 (64-Bit)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hmmmm, which browser are you using? I think DTalk has some issues on FF atm, or some people have some issues with connectivity. Works for a good 80% of people tho.
We will look into it in the coming days ;)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I was using FF. Trying again with google chrome... still doesn't work, Version 68.0.3440.106 (Official Build) (64-bit) under Ubuntu 18/Linux.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Then it also has some issues with Chrome, Vivaldi, Opera, and Firefox – all on Windows 10. All of which I've tested in the last day.
If there's any commonality in those things, it's that all of them are running some form of ad blocker as well as block pop-ups. But none of them are giving me a notification that a pop-up is blocked when posting the key to Steemit, so that's unlikely to be the problem.
Or, essentially, I don't think I've talked to anyone for whom it has worked yet. Testing it on multiple browsers here hasn't actually worked. Not only hasn't it worked, there's no indication that it's supposed to be doing something – the button just bounces and nothing happens.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Excellent information, it really is very important to know these things, and if someone takes the trouble to explain with the delicacy that you did it seems perfect.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey, this guy is advertising a counterfeit site for video sharing. He was planning to sell cyrotocurrency coins, and looks like he at least stole the idea of your site. He advertises this on every on of his posts.
https://steemit.com/blog/@thediyworld/diy-tube-video-community-offers-freedom-of-speech-and-freedom-from-harassment
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Well very cool.
We'll have to chat more about your decision for your messenger choice.
Still not sure what system to go with for @steempeak interface so any advice is appreciated.
Also do you think many will take you up on creating stuff now that it's open source? Was that the main reason? What are you hoping they develop?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
The messenger is something I've been thinking for a long time about. I'd truly recommend looking into how this one works, and why not adding it into steempeak? Then it would make DTube<->SteemPeak conversations possible ;)
The 'backend' code for the DTalk feature is in
/client/collections/dtalk.js
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
you write very well
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Wow, quite a lot of features, looking forward to use all of them. Nice post too very informative.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Wow! You guys have been busy!
That's all super exciting! I'm stoked about DTalk!
Thanks for all that you do!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Seems like DTube has improved alot,
I think I should give it a try.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
nice very information post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
but now what's a difference with Dlive ? Dtube is better than Dlive ?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
DTube stands for Decentralized Tube. The idea is to get rid of the middle-men that make money on the content production and distribution. DTube allows users to do everything on their own, even if our servers were dead DTube would still work (a few features like search would die, but the rest would work). Also DTube cares about your privacy (we do not collect any single information about our users)
DLive starts with the same letter but I have no idea what their D stands for, as nothing of what I said applies to them.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
this is so great. thank you so much for good job.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This is some update to wake up to!!! Great Job DTube Team! I am very excited all the more to be a part of this great community.. So much information to Digest.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This is really awesome! Looks like a very good project!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Fantastic job ,if you do not use your own IPFS node, then disapear of course..
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
good information
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
It represents the future.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
I'm soooooo super excited about the live streaming function. Can't wait to give it a try!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Exceptional updates - congratulations @heimindanger and all.
Looking forward to trying my first livestream soon and also really appreciate the longer storage. I'll work out all the technical stuff one day, I'm sure :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
DTUBE ROCKS! Nuff said
Posted using Partiko iOS
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
In regards to the DMCA blocks.
I hope you made sure that once posted content is "blocked" due to DMCA complaint,
it is possible for the party posting it to unlock it?
dTube have legal immunity from any sort of claims towards copyrighted content being hosted.
The responsibility lays on the party uploading the content and party claiming to hold copyright.
Then there's Fair Use, and whatever else.
You know what I mean?
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You guys have been really busy :) Great job, I'm really glad we have notifications, such a simple thing yet so needed. Also I'm excited to try out live streaming as I just couldn't get on with Dlive.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Hey this post is a lot about dtube and i have learnt a lot reading this post, but one thing I didn't understand till now that how can we make money over dtube. Is it like youtube where we monetize the content and earn money through Adsense.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great progress and no need for apologizing for downtimes etc. You are not a multi-billion company. <3
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Wonderful! I love seeing the amazing improvements that are happening on the blockchain. Thank you. Be well.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
#resteemed
Posted using Partiko iOS
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You are very clear!!
& I saw your profile its amaizing....!!!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
very good work @heimindanger we are very anxious to try this new update
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
One of the sentences I love more on the internet.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
This is really dope. Glad yo see all this development take off.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
R.I.P
Live streaming ,on dlive
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Thanks @heimindanger . After reading about Dtube's upgrade posted by you I am 100% sure that DTube will beat all other competitions in it's way because of it's transparency feature!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great info sir.... And works a lot for me... Hatsoff to you. As I was thinking to be a dtuber and before going to start it it necessary to have info about it... And by your post I learnt a lot... I will start on it... And hope so you will help me a lot in this regard whenever I needs any suggestion from you.... Again thanks for this post
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Really excited to start using these new developments!! Thank you so much for the updates @heimindanger and dtube!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Great news for Dtube!!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
You got a 42.63% upvote from @upme thanks to @heimindanger! Send at least 3 SBD or 3 STEEM to get upvote for next round. Delegate STEEM POWER and start earning 100% daily payouts ( no commission ).
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Good
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
Amazing thank you..... this is the future...!!!!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
comment
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit