Page 1 of 1

Profile for Roku 3 - Help with transcoding please

Posted: Tue Sep 16, 2014 3:03 am
by k10ck3r
My original thread disappeared for some reason.
I tried the "older" hls based approach to getting non-mp4 videos to transcode for the Roku 3, but it didn't work.

Looking for other suggestions to get this working with the Roku.

Ideas?

This is for the Roku 3, which is a DLNA device unlike earlier models.
Video — MKV (H.264), MP4 (H.264), MOV (H.264), WMV (VC-1, firmware 3.1 only).

Native video formats work fine - it is just the transcoding that doesn't seem to.

Thanks.

Re: Profile for Roku 3 - Help with transcoding please

Posted: Sat Sep 27, 2014 3:49 am
by k10ck3r
Any ideas? Any logs I can capture? Running out of trial time...

Re: Profile for Roku 3 - Help with transcoding please

Posted: Sat Sep 27, 2014 5:55 pm
by k10ck3r
Ok, found a solution here:
(But changed the settings for 2 channel AAC to 0 channel AC3 for surround sound to work)

http://www.chaneru.com/forum/viewtopic. ... =wms#p3273

I just couldn't figure out this step: (for temp file cleanup)

Settings - Processing - Add

Name: Clean HLS directory
Mark "Button on the main form"

Where is this found?

Update: found it. seems to work well.

Re: Profile for Roku 3 - Help with transcoding please

Posted: Sat Sep 27, 2014 6:23 pm
by k10ck3r
I also updated the clean script, since it had a hard coded path:
var
fso: Variant;
sDirectory: string;
begin
fso := CreateOleObject('Scripting.FileSystemObject');
sDirectory := IncludeTrailingBackslash(ProgramPath) + 'Presentation\HLS\*';
fso.DeleteFolder(sDirectory);
end.

Re: Profile for Roku 3 - Help with transcoding please

Posted: Sat Sep 27, 2014 6:35 pm
by k10ck3r
Is there a way to clean up the files after playing back the transcoded video?
I tried adding the "clean HLS directory" script to the post-playback event, but it messes up the playback (probably because it is being invoked at the end of each little chunk?).