Live data from Hacker News

Show HN: App that lets you record a video and immediately share with a link

getclick.co

31–40 of 40 posts

Re: Show HN: App that lets you record a video and immediately share with a link

#31
post #28

Hey creator, just wanted to say great job. A lot of these Hacker News comments are predictably neck-beardy and lack the recognition of effort and dedication put into a product launch. Don't listen to the non-constructive "yeah but X already does it" comments. This seems like a simple but useful product, and good on you all for putting this out there. Keep creating and iterating!

[deleted]

Re: Show HN: App that lets you record a video and immediately share with a link

#32
post #26
post #4

Earlier quoted context omitted.

Great questions! We learned a ton doing the video work on this never having worked with video encoding before. We built front end using React Native (ejected from Expo), backend API using Rails (as that's our most comfortable stack). The video encoding processing is handled by Amazon Elastic Transcoder, hosting the videos on s3. There's a sneaky amount of transcoding involved in the simple app, but it's all cheap at…

Why did you choose to use React Native if you weren't planning to use it for cross-platform purposes out of the box? Why not use swift or objective-c and then port to Android if there's customer demand?

> Why did you choose to use React Native if you weren't planning to use it for cross-platform purposes out of the box? Why not use swift or objective-c and then port to Android if there's customer demand?

There's lots of reasons someone might want to start with Expo while developing an app. If their team doesn't have native experience, it's far more accessible than needing to maintain a native stack (or two should they support Android).

It also supports the ability for OTAs out of the box, which allows them to be responsive to feedback / bugs / feature requests.

There's more to RN/Expo than "do you plan on releasing a cross-platform product at once". Even if their road map is "Apple now, Android later" the decision would still be justified.

Re: Show HN: App that lets you record a video and immediately share with a link

#33
post #28

Hey creator, just wanted to say great job. A lot of these Hacker News comments are predictably neck-beardy and lack the recognition of effort and dedication put into a product launch. Don't listen to the non-constructive "yeah but X already does it" comments. This seems like a simple but useful product, and good on you all for putting this out there. Keep creating and iterating!

Just tried it. First off, love the simplicity. Do one thing, do it well. It worked great!

So now, the feedback. I would have no login. Or make it optional, like pastebin, but for video. 2nd, allow Facebook to google login.

One last thing, how can you afford this??? I’ve thought about doing apps like this, and then I think about my aws bill!

Re: Show HN: App that lets you record a video and immediately share with a link

#34
post #15

Earlier quoted context omitted.

Good question, I would say the biggest difference is the vine-like recording interface that lets you record multiple clips and merged them together. It also never requires you to save it on your phone. Not sure if the icloud feature allows you to record direct to the cloud but that may be an advantage as well.

> the biggest difference is the vine-like recording interface that lets you record multiple clips and merged them together How do you view prior clips? Once I start a new clip I don't see a way to go back (it could be I'm missing something that's colored as I keep my iPhone SE in black and white mode)

The website says:

> Hold-to-record mode lets you string clips together so that you can collect your thoughts between recording.

You can probably hold-to-record multiple times in a single movie (don't have an iPhone to test). Seems like the easiest and most straightforward way to do it, just no re-ordering of recorded clips.

Re: Show HN: App that lets you record a video and immediately share with a link

#37
post #28

Hey creator, just wanted to say great job. A lot of these Hacker News comments are predictably neck-beardy and lack the recognition of effort and dedication put into a product launch. Don't listen to the non-constructive "yeah but X already does it" comments. This seems like a simple but useful product, and good on you all for putting this out there. Keep creating and iterating!

Just tried it. First off, love the simplicity. Do one thing, do it well. It worked great! So now, the feedback. I would have no login. Or make it optional, like pastebin, but for video. 2nd, allow Facebook to google login. One last thing, how can you afford this??? I’ve thought about doing apps like this, and then I think about my aws bill!

For the AWS bill, inbound traffic is free and S3 doesn't cost much (0.023$ / GB), knowing that you'd only store one video once.

Outbound though traffic though is where it hurts: somewhere around 0.15$ / GB, and that's for each and every time any one plays a given video.

1 minute of h.265 would sit around 22Mb (according to the first source I found https://medium.com/@PoloPinetta/youtube-4k-and-h-265-uploads...)

Better get that compression going, and I hope they figure out a way to make some money soon enough, but for a small user base it should be manageable

Re: Show HN: App that lets you record a video and immediately share with a link

#38
Why is there no content visible on the website, without enabling Javascript?

Try using Javascript just for the stuff that actually requires it, and let the rest of the site work for people who browse with Javascript turned off. That will also make it much more mobile-friendly.

Re: Show HN: App that lets you record a video and immediately share with a link

#39
post #37

Earlier quoted context omitted.

Just tried it. First off, love the simplicity. Do one thing, do it well. It worked great! So now, the feedback. I would have no login. Or make it optional, like pastebin, but for video. 2nd, allow Facebook to google login. One last thing, how can you afford this??? I’ve thought about doing apps like this, and then I think about my aws bill!

For the AWS bill, inbound traffic is free and S3 doesn't cost much (0.023$ / GB), knowing that you'd only store one video once. Outbound though traffic though is where it hurts: somewhere around 0.15$ / GB, and that's for each and every time any one plays a given video. 1 minute of h.265 would sit around 22Mb (according to the first source I found https://medium.com/@PoloPinetta/youtube-4k-and-h-265-uploads... ) Bett…

Put a CDN in front of S3 to keep your bill low (you’ll only get dinged for the first origin to edge transfer out), or store in Backblaze B2 instead and use Cloudflare (they have a storage/CDN partnership making the overall cost much lower than S3).
Post reply on HN