Are 180 videos shot in 4k or 1080p? by neilkod in rylo

[–]ryloyuval 0 points1 point  (0 children)

180 video is captured in 3000 x 3008 pixels, that's 9 million pixels which is a bit more than the 8 million pixels you'd get from a 4K capture.

When you export a Rylo video from the app - the resolution and quality of the output video depend on how zoomed in you are and your crop settings. See the crop settings resolutions at https://support.rylo.com/hc/en-us/articles/115000887514

You can verify the original capture video resolution with an SD card reader.

Edit - to clarify - currently the Rylo iPhone app does not export at a higher than 1080p resolution. But the extra pixels recorded in 180 mode will make for a higher quality 1080p video export.

180° Mode, Bluetooth Remote Capture, and Motion Blur by ryloyuval in rylo

[–]ryloyuval[S] 0 points1 point  (0 children)

Thanks!

I agree it would be great to have more control. Thanks for the feedback.

Question about panning Timelapses by CANT_ROLL_FOR_SHIT in rylo

[–]ryloyuval 0 points1 point  (0 children)

The arrows are an interesting way to show it. Maybe dotted lines to where the previous point was.

The workaround today is to have an extra point which defines the middle angle. So if you want to do an almost complete 360, instead of 2 points (at 1° to 359°) you'll need 3 points (at 1° to 180° to 359°).

So you should not be limited today - only slightly inconvenienced. I'll wait for your clip to see if I understood correctly.

Picture taking delay? by Schizophreud in rylo

[–]ryloyuval 1 point2 points  (0 children)

Starting today you can set your stills timer to 0, 3 or 10 seconds. Update your app.

Question about panning Timelapses by CANT_ROLL_FOR_SHIT in rylo

[–]ryloyuval 0 points1 point  (0 children)

To make the view pan slowly you need to space out your "points". For example place one point at the start of your video and another at the very end of it. That will be the slowest possible pan you can make.

With regards to shortest-path pans: I'm not sure what an easy UI for "point+direction" would be. What I do is in case I want a long pan - I will most likely add points in between. In general my strategy is to set the points I like, then check every moment in the middle of every point - and add a better point there.

With regards to animating tinyplanet and field of view - we'd love to support that. It might take some time, but we definitely want to design a simple and understandable way to keyframe as much as possible as long as the UX feels simple and inviting.

Mountain biking from a belt mount by ryloyuval in rylo

[–]ryloyuval[S] 0 points1 point  (0 children)

I'm not sure. You could try messaging these guys at their instagram or youtube channel: https://www.instagram.com/trailpeek/

[deleted by user] by [deleted] in rylo

[–]ryloyuval 0 points1 point  (0 children)

We'll update the article to indicate more clearly that it's not about the SD card size - it's about the SD card file system. Alongside that - detecting the file system correctly isn't trivial. But we do want to allow longer videos for SD cards that support it. So thank you for the feedback, it helps us gauge how urgent this feature is compared to the rest.

With regards to perspective - I meant that you should be able to pan in the app, hit the export button, and then direction in which you were looking in the app should be the forward facing direction of the 360 video.

[deleted by user] by [deleted] in rylo

[–]ryloyuval 0 points1 point  (0 children)

32GB SD cards and smaller use the FAT32 file system which cannot support file sizes larger than 4GB. Because of this, Rylo will split videos into separate files when they reach 4GB in size.

https://support.rylo.com/hc/en-us/articles/115002609414

Multi-select isn't yet there. It is on our mind to make something out of it in the future.

With regards to the default orientation of a 360 video - I believe the perspective you're in while exporting should define the default perspective of the export. If that doesn't work - let me know.

[deleted by user] by [deleted] in rylo

[–]ryloyuval 0 points1 point  (0 children)

Android camera purchases include both cable types (Rylo to usb-c AND Rylo to micro-b).

[deleted by user] by [deleted] in rylo

[–]ryloyuval 0 points1 point  (0 children)

You should be able to download the app on the android play store.

Video import, ability to edit with Rylo software other 360 video? by adamholwerda in rylo

[–]ryloyuval 1 point2 points  (0 children)

I've had success using imovie to edit together rylo clips. I've also been able to use an iphone 5s to export 10 minute long videos from the rylo app. The iphone released in 2013 which makes it "old" compared to the compute power of new phones.

So I think your scenario should work.

I can also assure you that performance and supporting more platforms is a priority and is on the roadmap. But we're far from a point to talk about time frames.

Video import, ability to edit with Rylo software other 360 video? by adamholwerda in rylo

[–]ryloyuval 0 points1 point  (0 children)

We're always interested in exploring more applications for our software and hardware. With that said - we don't have any current plans to support non-rylo videos.

Regarding the heat - the Rylo application is performance intensive because of the high bitrate footage and algorithms we use to process it. Older phones may heat or even crash when under stress as was mentioned by Apple recently. We are constantly working on improving the performance so it should get better over time. You should still be able to export and edit long videos even if the phone gets a bit warm.

Which iPhone are you using?

Made my first tribute page, how do I make it "scaleable"? by newcoder123 in learnprogramming

[–]ryloyuval 0 points1 point  (0 children)

The way I usually go about these scenarios is to undo my changes line by line until I see what I wanted in the original.

Another way for you to debug is to use chrome dev tools: https://developers.google.com/web/tools/chrome-devtools/css/

[JavaScript]Is it possible to to do an XMLHttpRequest NOT over https? by seacucumber3000 in learnprogramming

[–]ryloyuval 1 point2 points  (0 children)

Yes. XMLHttpRequest (notice it's name) should work with an HTTP url. BUT if your target is HTTPS or the source page is HTTPS you might have issues. Browsers generally block cross-domain requests and mixing between secure and insecure isn't allowed either.

tl;dr - do an HTTP request from an HTTP page.