Search found 11 matches

by JonathanM
Wed Aug 13, 2014 1:12 pm
Forum: Community
Topic: HLT - under android-x86
Replies: 16
Views: 9323

Re: HLT - under android-x86

Yeah, that's my results as well.

I'm just going to stick with waiting for my phone to do renders.
by JonathanM
Mon Aug 04, 2014 2:01 pm
Forum: Community
Topic: HLT - under android-x86
Replies: 16
Views: 9323

Re: HLT - under android-x86

The Andy app is promising.
HLT runs just fine and it provides a 64G sdcard.
Will transfer data over tomorrow and give it a render.
by JonathanM
Mon Aug 04, 2014 1:47 pm
Forum: Community
Topic: HLT - under android-x86
Replies: 16
Views: 9323

Re: HLT - under android-x86

Well AVD didn't work (doesn't come with google play)
You can hack it in but ...

Having a look at the Andy app.
by JonathanM
Mon Aug 04, 2014 12:54 pm
Forum: Community
Topic: HLT - under android-x86
Replies: 16
Views: 9323

Re: HLT - under android-x86

I guess this could be usefull when overlaying since memory space, RAM and processing power shouldn't be an issue then...should I try buying the full version? I actually had an issue getting a larger sdcard to work well (got it to work but messy) Something about it didn't feel right (bloatware ... o...
by JonathanM
Mon Aug 04, 2014 11:00 am
Forum: Community
Topic: HLT - under android-x86
Replies: 16
Views: 9323

Re: HLT - under android-x86

I'm going to try another option BlueStacks which runs an android emulator.
Will let you know how that goes.
by JonathanM
Sun Aug 03, 2014 2:03 pm
Forum: Trouble Shooting
Topic: recorded videos play flipped
Replies: 5
Views: 2059

Re: recorded videos play flipped

Going with the solution above and reencoding the videos. Once completed they are usable on both PC and HLT. Need to cut them to 15minutes anyway due to the 2G limit. #!/bin/bash /usr/bin/ffmpeg -threads 4 -i "$1" -t 00:15:00 -metadata:s:v rotate="0" -vf "hflip,vflip" -d...
by JonathanM
Sun Aug 03, 2014 1:53 pm
Forum: Trouble Shooting
Topic: recorded videos play flipped
Replies: 5
Views: 2059

Re: recorded videos play flipped

Yeah, if only that was the issue, vlc also has the same problem. Only way I have been able to solve it so far is to re-encode the video's and strip the metadata and inject rotate="0". Like what's discussed here: http://thornelabs.net/2013/06/04/correct-smartphone-video-orientation-and-how-...
by JonathanM
Sun Aug 03, 2014 1:48 pm
Forum: Community
Topic: HLT - under android-x86
Replies: 16
Views: 9323

Re: HLT - under android-x86

Understood. No quick fix for that.

Thanks for filling me in.
by JonathanM
Sun Aug 03, 2014 1:03 pm
Forum: Trouble Shooting
Topic: recorded videos play flipped
Replies: 5
Views: 2059

recorded videos play flipped

Hey, All the videos recorded by HLT are showing up as flipped when played on a PC. They play correct on the android device, in HLT or another external media player. If I modify the file (for instance with ffmpeg copy - from the previous trim to 2GB thread) they show as flipped on both PC and HLT. Ru...
by JonathanM
Sun Aug 03, 2014 12:55 pm
Forum: Outdated
Topic: [FAQ] Working with large videos on Android
Replies: 13
Views: 16329

Re: [FAQ] Working with large videos on Android

The command line arguments seem to have changed slightly (with ffmpeg).

Created the following .sh to trim the files down to 15m (which I find is always just under the 2G limit)

Code: Select all

#!/bin/bash
/usr/bin/ffmpeg -i "$1" -t 00:15:00 -dcodec copy -vcodec copy -acodec copy "15m-$1"