• 1
  • 69
  • 70
  • 71(current)
  • 72
  • 73
  • 93
Release CetonTV+HDHomeRun - Watch TV on XBMC (WIN/OSX)
What is the best way to update this? Should I just overwrite the existing folder or start fresh with each update?

Thanks
Reply
(2013-04-23, 19:44)airbillion Wrote: What is the best way to update this? Should I just overwrite the existing folder or start fresh with each update?

Thanks

Correct Overwrite, I typically just extract the files over top the old ones in the same directory

@mcheng89 In regards to the icon, I like the way the iphone makes one if you add a shortcut to your home screen for the iphone.html I'm not sure if you programmed it that way or the iphone makes it either way it's clean and looks nice.
Reply
(2013-04-24, 04:44)Jennifer612 Wrote: I want to record the cable feed, and set recordings a-la Comcast via EPGImageImageImageImage

FYI Your image links don't seem to go anywhere actually might also be spammy. Mike has suggested that the ability to record is forth coming in a later release but if you want to be able to do this now outside of WMC you can install Remote potato http://www.remotepotato.com/ it will let you schedule recordings from your phone or PC remotely and also watch them if you want to buy the $5 App in the iTunes app store. I haven't bought the app I use the remote potato webpage <serverip>:9080/mainmenu to schedule then use plex for remote playback myself.
Reply
(2013-04-23, 16:50)cinemagic Wrote: Hi,
I am new to this forum, i tried new v0.5.11, when i am trying to add new device (tuner) its not adding at all. pl. help me
Thanks

Can you give me some more info? What device and what shows up on your screen? Also are you using windows?

(2013-04-23, 14:04)dsc1000 Wrote: Just downloaded the Roku SDK. Looks like it supports .hls streaming. I may start working on this.

Let me know how it goes and if you need any help with anything
Reply
Thanks mcheng, I fixed that, I am using windows, windows media center service was creating problem i stopped that service and now working, I have one more question, when am i streaming on xbmc with any resolution the audio is not coming good and when change to direct stream its came correct audio, pl let me where i can fix that.
Reply
(2013-04-24, 05:52)Massfeller Wrote:
(2013-04-24, 04:44)Jennifer612 Wrote: I want to record the cable feed, and set recordings a-la Comcast via EPGImageImageImageImage

FYI Your image links don't seem to go anywhere actually might also be spammy. Mike has suggested that the ability to record is forth coming in a later release but if you want to be able to do this now outside of WMC you can install Remote potato http://www.remotepotato.com/ it will let you schedule recordings from your phone or PC remotely and also watch them if you want to buy the $5 App in the iTunes app store. I haven't bought the app I use the remote potato webpage <serverip>:9080/mainmenu to schedule then use plex for remote playback myself.

Pretty sure this is spam. Same user posted same comment exactly a week ago (page 103 I believe) and I gave them pretty much the identical response. Guess we'll find out in a week...
Reply
Hi All,

I'm new to the forum and to this program, but thanks to everyone for all your work on this.

This may be a silly question that's answered somewhere obvious, but I've yet to find it. Is the HDHomerun Dual (OTA Tuner) supported by this app?

If so, then I'll list my problem. When the server is up and running and pulls up the 127.1.1.1 homepage, when I go to "add device", nothing happens when I hit the "Save" button in that dialog. Of course, if this is because the program doesn't support the Duals, then my question is answered.

I can ping my Dual from the server and I've tried on Firefox v20 and IE 9. This is on a Windows Server 2012 x64 OS.

Thanks for all of your help!
Reply
(2013-04-25, 06:10)metro088 Wrote: Hi All,

I'm new to the forum and to this program, but thanks to everyone for all your work on this.

This may be a silly question that's answered somewhere obvious, but I've yet to find it. Is the HDHomerun Dual (OTA Tuner) supported by this app?

If so, then I'll list my problem. When the server is up and running and pulls up the 127.1.1.1 homepage, when I go to "add device", nothing happens when I hit the "Save" button in that dialog. Of course, if this is because the program doesn't support the Duals, then my question is answered.

I can ping my Dual from the server and I've tried on Firefox v20 and IE 9. This is on a Windows Server 2012 x64 OS.

Thanks for all of your help!

This program is written for CableCard tuners, the only three on the market being the InfiniTV 4, the HDHR prime, and the Hauppage 2650. The HDHR dual is not among those so it won't work. You could use WMC with RemotePotato if that suits your needs. This link indicates you might be able to use the dual in XBMC natively but I'm no expert on the matter.
Reply
Below is the sample code from Roku's "simple video player" template. What url should I use to get the tvserver to play on the roku? My tv server is located at http://192.168.2.125:8888/


'*************************************************************
'** displayVideo()
'*************************************************************

Function displayVideo(args As Dynamic)
print "Displaying video: "
p = CreateObject("roMessagePort")
video = CreateObject("roVideoScreen")
video.setMessagePort(p)

'bitrates = [0] ' 0 = no dots, adaptive bitrate
'bitrates = [348] ' <500 Kbps = 1 dot
'bitrates = [664] ' <800 Kbps = 2 dots
'bitrates = [996] ' <1.1Mbps = 3 dots
'bitrates = [2048] ' >=1.1Mbps = 4 dots
bitrates = [0]

'Swap the commented values below to play different video clips...
urls = ["http://video.ted.com/talks/podcast/CraigVenter_2008_480.mp4"]
qualities = ["HD"]
StreamFormat = "mp4"
title = "Craig Venter Synthetic Life"
srt = "file://pkg:/source/craigventer.srt"

'urls = ["http://video.ted.com/talks/podcast/DanGilbert_2004_480.mp4"]
'qualities = ["HD"]
'StreamFormat = "mp4"
'title = "Dan Gilbert asks, Why are we happy?"

' Apple's HLS test stream
'urls = ["http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8"]
'qualities = ["SD"]
'streamformat = "hls"
'title = "Apple BipBop Test Stream"

' Big Buck Bunny test stream from Wowza
'urls = ["http://ec2-174-129-153-104.compute-1.amazonaws.com:1935/vod/smil:BigBuckBunny.smil/playlist.m3u8"]
'qualities = ["SD"]
'streamformat = "hls"
'title = "Big Buck Bunny"

if type(args) = "roAssociativeArray"
if type(args.url) = "roString" and args.url <> "" then
urls[0] = args.url
end if
if type(args.StreamFormat) = "roString" and args.StreamFormat <> "" then
StreamFormat = args.StreamFormat
end if
if type(args.title) = "roString" and args.title <> "" then
title = args.title
else
title = ""
end if
if type(args.srt) = "roString" and args.srt <> "" then
srt = args.StreamFormat
else
srt = ""
end if
end if

videoclip = CreateObject("roAssociativeArray")
videoclip.StreamBitrates = bitrates
videoclip.StreamUrls = urls
videoclip.StreamQualities = qualities
videoclip.StreamFormat = StreamFormat
videoclip.Title = title
print "srt = ";srt
if srt <> invalid and srt <> "" then
videoclip.SubtitleUrl = srt
end if

video.SetContent(videoclip)
video.show()

lastSavedPos = 0
statusInterval = 10 'position must change by more than this number of seconds before saving

while true
msg = wait(0, video.GetMessagePort())
if type(msg) = "roVideoScreenEvent"
if msg.isScreenClosed() then 'ScreenClosed event
print "Closing video screen"
exit while
else if msg.isPlaybackPosition() then
nowpos = msg.GetIndex()
if nowpos > 10000

end if
if nowpos > 0
if abs(nowpos - lastSavedPos) > statusInterval
lastSavedPos = nowpos
end if
end if
else if msg.isRequestFailed()
print "play failed: "; msg.GetMessage()
else
print "Unknown event: "; msg.GetType(); " msg: "; msg.GetMessage()
endif
end if
end while
End Function
Reply
Hey, I'm having the same issue that metro088 and cinemagic seem to be having...I start up the tvserver exe file, and go to "Add device" to add my InfiniTV device. I select "Ceton InfiniTV4" in device type, type in the IP address, but when I click "Save", it doesn't do anything. I'm on a Windows machine, tried it in Chrome, FF, and IE, and nothing seems to work.
Reply
(2013-04-25, 18:39)dsc1000 Wrote: Below is the sample code from Roku's "simple video player" template. What url should I use to get the tvserver to play on the roku? My tv server is located at http://192.168.2.125:8888/

I'll post another build for you later tonight that will make hls streams easier to work with.

The url for this new build would look like:
Code:
http://192.168.2.125:8888/play?channel=7&format=hls&bitrate=500&resolution=480&redirect=true

(the redirect doesnt work for hls streams with the current server, but I have a fix for it)
Reply
Thanks! I am pretty new to this so i don't understand all of the code. Does the stream need to end in .m3u8?
Reply
(2013-04-26, 02:51)dsc1000 Wrote: Thanks! I am pretty new to this so i don't understand all of the code. Does the stream need to end in .m3u8?

Replace your tv.exe with this file http://www.mediafire.com/?u53aipd7fayp1d7

It actually does end in .m3u8. The redirect option will forward the client to http://<server ip>:8888/hls/tuner0.m3u8



(2013-04-25, 21:09)snappy316 Wrote: Hey, I'm having the same issue that metro088 and cinemagic seem to be having...I start up the tvserver exe file, and go to "Add device" to add my InfiniTV device. I select "Ceton InfiniTV4" in device type, type in the IP address, but when I click "Save", it doesn't do anything. I'm on a Windows machine, tried it in Chrome, FF, and IE, and nothing seems to work.

If you restart the server does it work?
Reply
(2013-04-25, 21:09)snappy316 Wrote: Hey, I'm having the same issue that metro088 and cinemagic seem to be having...I start up the tvserver exe file, and go to "Add device" to add my InfiniTV device. I select "Ceton InfiniTV4" in device type, type in the IP address, but when I click "Save", it doesn't do anything. I'm on a Windows machine, tried it in Chrome, FF, and IE, and nothing seems to work.

Same thing here. Tried restarting, etc, no success, 5.10 shows the same behaviour. 5.9 worked fine.
Reply
I downloaded the new tv.exe and started it as administrator. When I ran "http://192.168.2.125:8888/play?channel=7&format=hls&bitrate=500&resolution=480&redirect=true" in a browser on the server, the hdhomerun started on chaannel 7 at the bitrate specified. Then it asked me where I wanted to save the tuner0.m3u8 file. I saved it to the tvtuner/webfiles folder. I changed the line in the roku channel code to "http://192.168.2.125:888/hls/tuner0.m3u8" but it is not working. I tested on my ipad and it isn't working either. What did I do wrong.
Reply
  • 1
  • 69
  • 70
  • 71(current)
  • 72
  • 73
  • 93

Logout Mark Read Team Forum Stats Members Help
CetonTV+HDHomeRun - Watch TV on XBMC (WIN/OSX)10