View unanswered posts | View active topics It is currently Wed Jun 19, 2013 12:24 am



This topic is locked, you cannot edit posts or make further replies.  [ 493 posts ]  Go to page Previous  1 ... 27, 28, 29, 30, 31, 32, 33 ... 50  Next
 How to use TViXiE2Playon!HD 
Author Message

Joined: Sun Aug 01, 2010 2:34 am
Posts: 8
Post Re: How to use TViXiE2Playon!HD
Got it! Thanks! :D


Tue Aug 10, 2010 4:12 am
Profile

Joined: Mon May 10, 2010 9:16 am
Posts: 42
Post Re: How to use TViXiE2Playon!HD
OoD wrote:
I do it manual. I don't know how to mount every time when pohd boot.

You need to add it to the end of the rcS script @ /usr/local/etc/rcS
You will need also to add an arbitrary delay (.. start with "sleep 10") between the mkdir and the mount command to mimic manual think time.


Tue Aug 10, 2010 6:08 am
Profile

Joined: Thu Mar 04, 2010 2:30 pm
Posts: 148
Post Re: How to use TViXiE2Playon!HD
aasoror wrote:
You need to add it to the end of the rcS script @ /usr/local/etc/rcS
You will need also to add an arbitrary delay (.. start with "sleep 10") between the mkdir and the mount command to mimic manual think time.


i test this command and it work.

add follow line to /usr/local/etc/rcS
Code:
##Make Folder..
mkdir -p /tmp/ramfs/volumes/Z
sleep 10
##Mounting...
mount -t cifs -o iocharset=utf8,username=xxxx,password=xxxx //192.168.1.3/Z   /tmp/ramfs/volumes/Z

Thank


Tue Aug 10, 2010 10:35 pm
Profile

Joined: Tue Aug 03, 2010 4:05 pm
Posts: 153
Post Re: How to use TViXiE2Playon!HD
Isn't there a way to create Jukebox locally on my desktop instead of POHD?

For testing purpose i'm trying to combine ThumbGen with TViXiE without luck atm.

_________________
Wired Playon!HD C+ | 1TB HDD | f/w - r4138


Fri Aug 13, 2010 1:18 pm
Profile

Joined: Fri Jul 23, 2010 2:08 pm
Posts: 24
Post Re: How to use TViXiE2Playon!HD
Can I add TV Shows to this? The TViXiE2Playon!HD is looking for video files but in a TV Show structure the main file has links to all the episodes therefore no video is connected to it (it calls sub_sheets for each episode connected to that show).


Fri Aug 13, 2010 10:09 pm
Profile

Joined: Thu Mar 04, 2010 2:30 pm
Posts: 148
Post Re: How to use TViXiE2Playon!HD
T_Tronix wrote:
Can I add TV Shows to this? The TViXiE2Playon!HD is looking for video files but in a TV Show structure the main file has links to all the episodes therefore no video is connected to it (it calls sub_sheets for each episode connected to that show).


TViXiE2Playon!HD can't build TV Shows Jukebox.


Sat Aug 14, 2010 1:07 am
Profile

Joined: Thu Mar 04, 2010 2:30 pm
Posts: 148
Post Re: How to use TViXiE2Playon!HD
Hayabusa wrote:
Isn't there a way to create Jukebox locally on my desktop instead of POHD?

For testing purpose i'm trying to combine ThumbGen with TViXiE without luck atm.


TViXiE2Playon!HD build Jukebox file on PC.
Jukebox file don't compatible with POHD "update jukebox" function.
So please don't use POHD update Jukebox build by TViXiE2Playon!HD.
When POHD ask for update Jukebox please select "cancel".
If you select update Jukebox. Jukebox file will broken.

You can use ThumbGen file to build Jukebox.


Sat Aug 14, 2010 1:37 am
Profile

Joined: Thu Mar 04, 2010 2:30 pm
Posts: 148
Post Re: How to use TViXiE2Playon!HD
Howto use TViXiE2Playon!HD(Build.2010.8.9) (6 min Video MP4 file)

Download Click Here


Sat Aug 14, 2010 9:12 am
Profile

Joined: Sun Aug 15, 2010 3:18 am
Posts: 25
Post Re: How to use TViXiE2Playon!HD
Wow thanks a lot for this video guide. Could we have a similar step by step guide for actually installing Movie_Jukebox on the PBO that doesn't have a HDD?

I'm getting read-only errors when I try to:
copy folder "Movie_Jukebox" to /usr/local/bin/scripts/IMS_Modules/

also IMS_Modules folder doesn't exist and I can't create it because of write permissions.

Thanks for the good work


Sun Aug 15, 2010 3:23 am
Profile

Joined: Thu Mar 04, 2010 2:30 pm
Posts: 148
Post Re: How to use TViXiE2Playon!HD
Shadowraven wrote:
Wow thanks a lot for this video guide. Could we have a similar step by step guide for actually installing Movie_Jukebox on the PBO that doesn't have a HDD?

I'm getting read-only errors when I try to:
copy folder "Movie_Jukebox" to /usr/local/bin/scripts/IMS_Modules/

also IMS_Modules folder doesn't exist and I can't create it because of write permissions.

Thanks for the good work


I don't know about PBO directory structure.
But you can make directory IMS_Modules or
You can modify path to Movie_Jukebox by edit "menu.rss" and "Movie_Jukebox.rss".

If you get errors when copy file. You may check root free space by follow command.

Code:
df -h

If root space %use is 100%. You need to delete some files to get free space.

Here is sample step to install Movie_jukebox on POHD.

1. copy folder Movie_Jukebox to usb flashdrive.
2. telnet into POHD.
3. run follow command (assume path of usb flashdrive is /tmp/usbmounts/sda1/)
Code:
#!/bin/sh

## set root as read/write mode
mount -o,remount,rw /

## make directory Movie_Jukebox
cd  /usr/local/bin/IMS_Modules
mkdir Movie_Jukebox

##copy files to /usr/local/bin/IMS_Modules/Movie_Jukebox/
cp  /tmp/usbmounts/sda1/Movie_Jukebox/*.*   /usr/local/bin/IMS_Modules/Movie_Jukebox/

##backup menu.rss
cp  /usr/local/bin/scripts/menu.rss   /usr/local/bin/scripts/menu.rss.bak

##copy menu.rss to /usr/local/bin/scripts/
cp  /tmp/usbmounts/sda1/Movie_Jukebox/menu.rss   /usr/local/bin/scripts/

sync

## set root as read only mode
mount -o,remount,ro /


Sun Aug 15, 2010 5:41 am
Profile
Display posts from previous:  Sort by  
This topic is locked, you cannot edit posts or make further replies.   [ 493 posts ]  Go to page Previous  1 ... 27, 28, 29, 30, 31, 32, 33 ... 50  Next

Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by: phpBB | Innitial forum Design by: STSoftware | Modified by: AC Ryan.