[flagged]
Show HN: I completed shipping my desktop app
21–30 of 304 posts
Re: Show HN: I completed shipping my desktop app
#22[flagged]
I'm aware of a person who started a "startup" and made a revolutionary new way to resize and manipulate images server side. The whole thing was a simple PHP script invoking imagemagick. They made it available over an API. Sold it to eBay for more than $1M.
Re: Show HN: I completed shipping my desktop app
#23[flagged]
Actually ran into a random issue before where the first result for "convert video to MP4 with ffmpeg" would produce files not playable by Quicktime on Mac, you needed to pass in some other codec argument to make it work. So even ffmpeg is not a panacea for technical folks.
Additionally this take is just incorrect. If you scroll down the landing page to "Super simple video editor" you'll see it has cool features where a GUI shines, like cropping a video to a specific section while scrubbing through it. Good look using ffmpeg to do that.
My advice to OP is to make those GUI features more prominent in the landing page compared to "converting videos" -- I think most social media apps will accept the common video formats created by most phones so that's probably more niche than some of the editing stuff.
Re: Show HN: I completed shipping my desktop app
#24[flagged]
Turns out not everyone wants to spend years learning *nix and sit on a desktop pc debugging shell commands to edit their video.
Re: Show HN: I completed shipping my desktop app
#25Re: Show HN: I completed shipping my desktop app
#26[flagged]
That's unnecessarily flippant, even if it were just an ffmpeg wrapper do you imagine every person is a software developer who knows how to use the command line? This is clearly geared toward content creators. And even though I am technical I usually use random websites from Google to accomplish this stuff, looking up magic ffmpeg commands is (not fun)[1]. Actually ran into a random issue before where the first result…
MP4 files use the MPEG-4 container format. It’s confusing at first why a .mp4 file would play somewhere and elsewhere not, until one looks into the difference of a container format and a video codec. After one learns that, one will be in a better position to find the right arguments to use for ffmpeg to produce a video file that is playable on some of one’s own different devices.
For me, to host videos on my website, I found it better to offload the task of converting formats to a self hosted PeerTube instance, rather than keeping scripts to transcode to multiple formats with different parameters on my own. I believe PeerTube also uses ffmpeg for this.
Re: Show HN: I completed shipping my desktop app
#27- Most of the page titles are the (same)[1] which doesn't seem good for SEO. Each of the pages like "Pricing" or "Compress Your Video Files" should be differently named.
- The "video compressor" tool would be much more useful if you could enter a target file size. This is a frequent use case, if you want to send a video over email or social media apps like Messenger with a file size limit. The only way I've been able to do that for myself is basically encode it repeatedly with ffmpeg at various quality settings until the file size is just small enough, but you could probably automate that with something more intelligent like a good guess and a binary search. I'm sure someone's made a library to do that already though.
- It needs a whole bunch of features related to subtitles, like making a subtitled GIF from a video file with subtitles.
- Maybe risky to include copyrighted work like the Spider-Verse movie in the demo video? Unless you really did rip it legally from a Blu-ray.
- There are random grammar mistakes and capitalization issues throughout the site, nothing major but worth a pass by a native English speaker. "What kinda files Pimosa supports?" and "Every files gets processed on your device only" as some examples. Might give some people pause.
- Could be worth to have a more prominent "Download" box at the top section that automatically detects your OS. Most landing pages have that so I assume it works.
[1] https://www.google.com/search?q=site%3Ahttps%3A%2F%2Fpimosa....
Re: Show HN: I completed shipping my desktop app
#28Re: Show HN: I completed shipping my desktop app
#29[flagged]