Quantcast
Channel: Kodi Community Forum - All Forums
Viewing all 85667 articles
Browse latest View live

Dedicated Airplay box. How to keep xbmc on now playing screen.

$
0
0
I have two boxes for xbmc: an htpc and an rpi that I use exclusively for airplay. I'd like the rpi (openelec build) to stay on the 'now playing' screen 24/7 so it either has a simple static screen or the track info. Any tips! Thanks! Btw I'm still deciding on a skin, most likely quartz, metropolis, bello, or aeon nox (yeah I know the last two are clunky on the rpi, but I'll only be navigating the UI for maintainence so eye candy will be a preference).

P.S. Why do I have a dedicated airplay box? Because of my a/v receiver. With just the one box I have to manually change audio profile betweenmusic to movie modes when airplaying, watching videos etc. With separate boxes (separate hdmi inputs on the receiver), each activity automatically has my preferred audio profile.

[HOW-TO]Easily switch audio outputs and settings.

$
0
0
I can't post in the how-to section so I've put it here.

A new addition to XBMC 13 is the ability to alter settings via the JSON-RPC API, making it easy to switch settings via remote controls, menu shortcuts etc. With a python script you can toggle between different groups of settings, such as audio settings, plus it uses XBMC's internal python it should work on all OS's. A list of settings that can be modified, provided by joethefox can be found here (note it does not contain every setting across all OS's, it is specific to Linux, but should cover the majority).

The following instruction are for Windows, so you need adapt file paths to your operating system. In your favourite text editor create a python script:
C:\Users\td\Dropbox\docs\audio_switch.py
Code:
#audio toggle script for xbmc
import xbmc
import os

tempdir = xbmc.translatePath('special://temp/')
tempfile0 = os.path.join(tempdir, 'audiooutput0')

print("CURRENT AUDIO DEVICE:")
print(xbmc.executeJSONRPC('{"jsonrpc":"2.0","method":"Settings.GetSettingValue", "params":{"setting":"audiooutput.audiodevice"},"id":1}'))

if not os.path.isfile(tempfile0):
#edit below here
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.audiodevice", "value":"WASAPI:default"}, "id":1}')
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.passthrough","value":true}, "id":1}')
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.channels","value":8}, "id":1}')
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"GUI.ShowNotification", "params":{"title":"AUDIO OUTPUT", "message":"WASAPI", "image":"C:/Users/td/AppData/Roaming/XBMC/addons/metadata.common.last.fm/icon.png"}, "id":1}')
#edit above here
    file = open(tempfile0, "a")
    file.close()
else:
#edit below here
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.audiodevice", "value":"DIRECTSOUND:default"}, "id":1}')
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.passthrough","value":false}, "id":1}')
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.channels","value":1}, "id":1}')
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"GUI.ShowNotification", "params":{"title":"AUDIO OUTPUT", "message":"DS", "image":"C:/Users/td/AppData/Roaming/XBMC/addons/metadata.common.last.fm/icon.png"}, "id":1}')        
#edit above here
    os.remove(tempfile0)

The above script toggles between two groups of settings - the audio device (The default WASAPI/DISRECTSOUND device), pass-through (true/false), number of channels (8(5.1ch)/1(2ch)) and displays a on-screen notification (link to a speaker icon to use). You need to edit the lines beginning with xbmc.executeJSONRPC and you can add/remove lines if necessary. To find current the audio output devices look in the XBMC log file after running the script (it doesn't matter if it isn't configured properly yet), it prints the current selected audio device to the log file in a JSON-RPC friendly string (search for "CURRENT AUDIO DEVICE:"). See below for some more JSON-RPC examples.

Above toggles between two groups of settings, below is an example of a script to change between 3 groups of settings (you can expand it for more than 3 groups):
Code:
#audio toggle script for xbmc
import xbmc
import os

tempdir = xbmc.translatePath('special://temp/')
tempfile0 = os.path.join(tempdir, 'audiooutput0')
tempfile1 = os.path.join(tempdir, 'audiooutput1')

print("CURRENT AUDIO DEVICE:")
print(xbmc.executeJSONRPC('{"jsonrpc":"2.0","method":"Settings.GetSettingValue", "params":{"setting":"audiooutput.audiodevice"},"id":1}'))

if not os.path.isfile(tempfile0):
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"GUI.ShowNotification", "params":{"title":"AUDIO OUTPUT", "message":"WASAPI", "image":"C:/Users/td/AppData/Roaming/XBMC/addons/metadata.common.last.fm/icon.png"}, "id":1}')
    file = open(tempfile0, "a")
    file.close()
elif not os.path.isfile(tempfile1):
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"GUI.ShowNotification", "params":{"title":"AUDIO OUTPUT", "message":"AUDIO2", "image":"C:/Users/td/AppData/Roaming/XBMC/addons/metadata.common.last.fm/icon.png"}, "id":1}')
    file = open(tempfile1, "a")
    file.close()
else:
    xbmc.executeJSONRPC('{"jsonrpc":"2.0", "method":"GUI.ShowNotification", "params":{"title":"AUDIO OUTPUT", "message":"DS", "image":"C:/Users/td/AppData/Roaming/XBMC/addons/metadata.common.last.fm/icon.png"}, "id":1}')        
    os.remove(tempfile0)
    os.remove(tempfile1)

Now to run the script within XBMC use the RunScript() function, which can be used in keyboard/remote keymaps, skin shortcuts etc:
Code:
RunScript("C:\Users\td\Dropbox\docs\audio_switch.py")

Examples of JSON-RPC strings:
Code:
{"jsonrpc":"2.0", "method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.audiodevice", "value":"DIRECTSOUND:{3AE5C20B-DAA5-4E9E-AEA1-5ED6D355C1DF}"}, "id":1}
Code:
{"jsonrpc":"2.0", "method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.audiodevice", "value":"ALSA:hdmi:CARD=NVidia,DEV=1"}, "id":1}
Code:
{"jsonrpc":"2.0", "method":"Settings.SetSettingValue", "params":{"setting":"audiooutput.audiodevice", "value":"PULSE:alsa_output.pci-0000_03_00.1.hdmi-stereo"}, "id":1}

That does it, now enjoy easily switching audio outputs and settings!

Can't stop Player() in xbmc

$
0
0
When i use this function to set the subtitle file for the player, i can't stop player(), after stop it, it auto replay, and forever :
Code:
def play(url, play=False):
    playlist = xbmc.PlayList(1)
    playlist.clear()
    thumb=''
    info = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=thumb)
    playlist.add(url, info)
    fname="sub.srt"
    subtitle=xbmc.translatePath( os.path.join( home, fname ))
    xbmc.Player().setSubtitles(subtitle.encode("utf-8"))
    xbmc.Player().play(playlist)

360 Controller Context Menu

$
0
0
I understand from this that the Xbox 360 controller is supposed to bring up the context menu (keyboard "c") when pressing "x" button. Right now I can get a click but no menu when the "c" key works perfectly well. I looked at my joystick.Microsoft.Xbox.360.Controller.xml file in userdata and see this:

Code:
<keymap>
  <global>
    <joystick name="Controller (XBOX 360 For Windows)">
      <altname>Afterglow Gamepad for Xbox 360 (Controller)</altname>
      <altname>Controller (Gamepad F310)</altname>
      <altname>Controller (Gamepad for Xbox 360)</altname>
      <altname>Controller (Rumble Gamepad F510)</altname>
      <altname>Controller (Wireless Gamepad F710)</altname>
      <altname>Controller (Xbox 360 Wireless Receiver for Windows)</altname>
      <altname>Controller (Xbox wireless receiver for windows)</altname>
      <altname>Controller (XBOX360 GAMEPAD)</altname>
      <altname>Controller (Batarang wired controller (XBOX))</altname>
      <altname>Wireless Gamepad F710 (Controller)</altname>
      <altname>XBOX 360 For Windows</altname>
      <altname>XBOX 360 For Windows (Controller)</altname>
      <altname>Xbox 360 Wireless Controller</altname>
      <altname>Xbox Receiver for Windows (Wireless Controller)</altname>
      <altname>Xbox wireless receiver for windows (Controller)</altname>
      <altname>Gamepad F310 (Controller)</altname>
      <!-- A selects. B goes back. X gets context menu. Y goes fullscreen and back. -->
      <button id="1">Select</button>
      <button id="2">Back</button>
      <button id="3">ContextMenu</button>
      <button id="4">FullScreen</button>


It *should* work, shouldn't it?

Accented letters in home screen

$
0
0
Hi all.

I'm French and there's a slight issue that's bothering me:

With Neon forcing upper case on home menu items, accent are a mess. I am not sure if it's a problem with the font or something else, but accented letters stay in lower case which ruin the feel of the menu...

For example, the menu goes: FILMS - SéRIES TV - VIDéOS - PARAMèTRES... This is really annoying, and this is the only thing keeping me from adopting the theme for good.

Could you add an option to not force upper case on home menu?

I think this would be the easiest way to work around this. Or you could allow the renaming of the default menu items, so I would clear them of accents manually? It is common use not to accent upper case anyway...

Thanks for you time an interest Wink

Add-ON Project FREE TV - Favorites are disappearing / Missing?

$
0
0
Add-ON Project FREE TV - Favorites are disappearing / Missing?

Past couple months noticed that my long list of Favorites on Project FREE TV keep missing from the listing..

Does anyone have any information on this? A fix or Work-a-round?

Thanks

Jim

Sleep and WOL issues

$
0
0
If this is the wrong section for this please feel free to move it and mock me.

I have 2 HTPC's which both used to work smoothly but after upgrading both to Gotham things aren't so nice. I want them both to sleep after a period of inactivity, usually 30 minutes. My main HTPC will sleep after 30 minutes with XBMC running but inactive, 2 or 3 times and then it will never sleep again until I manually put it to sleep or restart and let it sit again. Rise, repeat.

My second HTPC will sleep fine, mostly, but it's set to 30 minutes as well. It's located upstairs so I use WOL to wake it when I need to access it, copy media to it or whatever. Problem is it will stop responding to WOL commands after 5 or so tries. It also will not stay awake for more tha n10 minutes if I'm not using it directly and woke it with WOL. So I go upstairs and turn it on manually but when I go to watch it (I odn't always have the TV up there on) I find often it's actually shut down or XBMC isn't even running anymore.

Both machines have IR receivers for remote control. And both need to use WOL to wake so I don't have to traverse 2 flights of stairs to get it to wake up. Neither have any sleep settings set in XBMC, only Windows. Both set for screen to turn off after 10 minutes and computer to sleep after 30. They both used to work just fine but now.... not so well.

Any ideas what may be the issue? I can't deactivate the network cards from waking the PCs as I need WOL. I just can't figure it out.

Need to replace my box

$
0
0
I have been running a Foxconn running an ATOM processor (I think dual core 1.25Ghz). I've been running it for 3 or 4 years now. I have an SSD, 4 GB ram and have connected it via cable network.

I can stream videos without a problem from my media server. However, I cannot play 1080P without it stuttering. There are 720p that is no problem but there are some 720p movies that are a problem. Basically if a movie is about 1GB or less it will play without a problem. Larger than that it will stutter. The larger bluray movies will start and within 1 second start jumping/stuttering.

My box recently died (overheating). Now, everytime I boot it up it immediately triggers the exit screen. It continually loops. I use to be able to turn it off, let it cool down and it would work for a while, but it is now completely shot!

So... The problem seemed to be caused because I started running some plugins like sports devil (to get live sports). My box upstairs (same hardward except only 2GB of ram) will not run plugins at all. I assume it isn't enough ram.

So, right now, none of my media is HD. It's not really important for me to have HD, infact I kind of prefer SD so that I don't have to increase as much storage. If I can get it, great, but I don't want to pay more for it.

I would like to get a box that is < $150 if possible, and the cheaper the better as long as it will run my plugins too.

Can someone please advise what I should get?

P2p streams on Asus Chromebox

$
0
0
Hi,
I am running OpenELEC in a dual boot configuration with ChromeOS on a Chromebox. It's running very smoothly, but I have a problem: the addon p2p streams gives me errors for sopcast streams. It waits 20 seconds for the stream initialization and then fails with an error. Anyone else experiencing this?
I am willing to provide logs and I know how to open an SSH connection to the box...
Thanks in advance!

Novice HTPC questions!

$
0
0
Sorry, complete HTPC novice here with a few questions!

I have a 3 year old, top of the shelf PC game rig that is just sitting collecting dust and I am getting back into home theaters, so I thought it would be good to re-purpose this rig for a forklift home theater upgrade, with a HTPC running XBMC. I am somewhat technically savvy, so I am not to scared with installing and playing around with XBMC (knowing myself, it will always be a constant state of tweaking).

Current Specs:
Intel Core i7 3.4GHz 2600k (sandybridge)
Asus Sabertooth P67 motherboard
16GB RAM
Nvidia 1.5GB GTX 570

I am sure it has the horsepower to be a great HTPC, but I was thinking of upgrading my video card to one that is HDMI 1.4 compatible for 3d and lossless bitstreaming, as the 570 (from my research) is incapable of doing either of those. So I was going to throw in an Nvidia 2GB GTX 760 ti. Again, from my research, it looks like this card will do what I am looking for?? Or is there another direction I should go?

I have just upgraded my 9 year old Denon 3805 for a Denon X4000 that I will use as my new receiver, and just ordered a BenQ W1080ST 1080 3d projector for my screen.

All of my movies are on one 4GB external USB 3.0 drive that I will hook into the HTPC, and about 80% of all my movies are .mkv with .mov/.mp4/.avi rounding out the rest. I am correct that XBMC will play all these files? or will I need to download all the XBMC "addons" that I hear about?

Thanks for some direction in advance.

IPTV on Apple TV 2

$
0
0
Hi all, I am new to the iptv. I have installed xbmc on my jail broken Apple TV2 and installed the simple player from Pvr section. Not sure how to proceed and get and add a m3u playlist and I am struggling . Can you please guide me?

Airplay Metadata

$
0
0
Hello everyone,

I built more than one XBMC Media Center in the last time.
Everything is running fine.
But there is one big question:

How can I change the Airplay Playback View to Fullscreen or something else - showing big Metadata/CDArt and so on ?
I need one MediaCenter 80% for Playing via Airplay - so it will be very very nice to fill a 7" Screen with actual playing MetaData.
I read lot about the advancedsettings.xml - but don't find a solution.

Some "Skins" only show Metadata Infos but no CDArt - can I change this...?


Sorry for my bad english.

Failed load XBMCbuntu to USB using Lubuntu 14.04

$
0
0
I am trying to write xbmcbuntu-13.0~gotham_amd64.iso to a 16Gb ByteStor USB stick, used for many other Linux distros. The load aborts with an "Installation Failed" error message: An uncaught exception was raised: Invalid version string '"Trusty"' (The use of single and double quotes is in the message.)
I have tried downloads from 3 different mirrors (in case of file corruption), but the extent of data written to the stick is the same in each case: casper, isolinux and preseed directories and the md5sum.txt file. About 40% of files are copied.
As advised in the XBMC website install instructions, I am using the Ubuntu Startup Disk Creator, but from Lubuntu 14.04 32-bit (fully updated). This is on a Sony Vaio VGN-S271E laptop.

This is a first attempt to use the live system XBMCbuntu, triggered because trying the XBMC package on a Kubuntu 14.04 64-bit installation failed when it would not play any DVD. Attempting to do so freezes the PC just after XBMC puts up a box saying "Working" as it loads a DVD. The only way to clear is to shutdown the PC with a forced power-off. The system in this case is a Medion 64-bit with 4 Gb RAM and an NVidia 210 graphics card, connected via DVI to a Samsung HD TV. The DVD's play through VLC, but not XBMC. XBMC is fine with CD's.
Under the circumstances I am assuming that I am missing something, somewhere. Any suggestions as to what I may have wrong would be gratefully received.

Error playing http live video link. Related to curl byte range?

$
0
0
Hi,

I'm working on a plugin that is scraping a page for video links to live video. I've got the scraping working, and the links are functional if I try to play them as a network stream in VLC. When I try to play them through XBMC however, I get errors and they fail to play. The relevant part of the log is here:

Code:
12:32:40 T:4579958784  NOTICE: Thread DVDPlayer start, auto delete: false
12:32:40 T:4579958784  NOTICE: Creating InputStream
12:32:40 T:4579958784   DEBUG: CFileCache::Open - opening <vinnyboughtbotcolony_1_700@46333> using cache
12:32:40 T:4579958784   DEBUG: CurlFile::Open(0x11309a480) http://gamespothdflash-f.akamaihd.net/vinnyboughtbotcolony_1_700@46333
12:32:40 T:4579958784   DEBUG: Curl::Debug - TEXT: About to connect() to gamespothdflash-f.akamaihd.net port 80 (#0)
12:32:40 T:4579958784   DEBUG: Curl::Debug - TEXT:   Trying 67.69.196.160...
12:32:40 T:4579958784   DEBUG: Curl::Debug - TEXT: Connected to gamespothdflash-f.akamaihd.net (67.69.196.160) port 80 (#0)
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_OUT: GET /vinnyboughtbotcolony_1_700@46333 HTTP/1.1
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_OUT: Range: bytes=0-
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_OUT: User-Agent: XBMC/13.1 Git:20140604-84725b0 (Mac OS X; 12.5.0 x86_64, Version 10.8.5 (Build 12F45); http://xbmc.org)
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_OUT: Host: gamespothdflash-f.akamaihd.net
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_OUT: Accept: */*
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_OUT: Accept-Charset: UTF-8,*;q=0.8
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: HTTP/1.1 200 OK
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: Server: AkamaiGHost
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: Mime-Version: 1.0
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: Content-Type: video/x-flv
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: Content-Length: 2147483647
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: Expires: Wed, 09 Jul 2014 16:32:40 GMT
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: Cache-Control: max-age=0, no-cache
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: Pragma: no-cache
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: Date: Wed, 09 Jul 2014 16:32:40 GMT
12:32:40 T:4579958784   DEBUG: Curl::Debug - HEADER_IN: Connection: keep-alive
12:32:40 T:4579958784  NOTICE: Creating Demuxer
12:32:40 T:4594339840  NOTICE: Thread FileCache start, auto delete: false
12:32:40 T:4579958784   DEBUG: ffmpeg[10FCA000]: Format flv probed with size=2048 and score=100
12:32:40 T:4579958784   DEBUG: Open - probing detected format [flv]
12:32:40 T:4579958784   DEBUG: Open - avformat_find_stream_info starting
12:32:40 T:4579958784   DEBUG: ffmpeg[10FCA000]: [flv] File position before avformat_find_stream_info() is 13
12:32:40 T:4594339840    INFO: easy_aquire - Created session to http://gamespothdflash-f.akamaihd.net
12:32:40 T:4594339840   DEBUG: CurlFile::CReadState::Connect - Resume from position 2147418111
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT: About to connect() to gamespothdflash-f.akamaihd.net port 80 (#0)
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT:   Trying 67.69.196.160...
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT: Connected to gamespothdflash-f.akamaihd.net (67.69.196.160) port 80 (#0)
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: GET /vinnyboughtbotcolony_1_700@46333 HTTP/1.1
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: Range: bytes=2147418111-
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: User-Agent: XBMC/13.1 Git:20140604-84725b0 (Mac OS X; 12.5.0 x86_64, Version 10.8.5 (Build 12F45); http://xbmc.org)
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: Host: gamespothdflash-f.akamaihd.net
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: Accept: */*
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: Accept-Charset: UTF-8,*;q=0.8
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: HTTP/1.1 200 OK
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Server: AkamaiGHost
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Mime-Version: 1.0
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Content-Type: video/x-flv
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Content-Length: 2147483647
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Expires: Wed, 09 Jul 2014 16:32:40 GMT
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Cache-Control: max-age=0, no-cache
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Pragma: no-cache
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Date: Wed, 09 Jul 2014 16:32:40 GMT
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Connection: keep-alive
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT: HTTP server doesn't seem to support byte ranges. Cannot resume.
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT: Closing connection #0
12:32:40 T:4594339840   ERROR: CCurlFile::FillBuffer - Failed: Requested range was not delivered by the server(33)
12:32:40 T:4594339840   ERROR: CCurlFile::CReadState::Connect, didn't get any data from stream.
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT: Closing connection #0
12:32:40 T:4594339840   DEBUG: CurlFile::CReadState::Connect - Resume from position 2147418111
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT: About to connect() to gamespothdflash-f.akamaihd.net port 80 (#0)
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT:   Trying 67.69.196.160...
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT: Connected to gamespothdflash-f.akamaihd.net (67.69.196.160) port 80 (#0)
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: GET /vinnyboughtbotcolony_1_700@46333 HTTP/1.1
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: Range: bytes=2147418111-
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: User-Agent: XBMC/13.1 Git:20140604-84725b0 (Mac OS X; 12.5.0 x86_64, Version 10.8.5 (Build 12F45); http://xbmc.org)
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: Host: gamespothdflash-f.akamaihd.net
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: Accept: */*
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_OUT: Accept-Charset: UTF-8,*;q=0.8
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: HTTP/1.1 200 OK
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Server: AkamaiGHost
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Mime-Version: 1.0
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Content-Type: video/x-flv
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Content-Length: 2147483647
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Expires: Wed, 09 Jul 2014 16:32:40 GMT
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Cache-Control: max-age=0, no-cache
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Pragma: no-cache
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Date: Wed, 09 Jul 2014 16:32:40 GMT
12:32:40 T:4594339840   DEBUG: Curl::Debug - HEADER_IN: Connection: keep-alive
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT: HTTP server doesn't seem to support byte ranges. Cannot resume.
12:32:40 T:4594339840   DEBUG: Curl::Debug - TEXT: Closing connection #0
12:32:40 T:4594339840   ERROR: CCurlFile::FillBuffer - Failed: Requested range was not delivered by the server(33)
12:32:40 T:4594339840   ERROR: CCurlFile::CReadState::Connect, didn't get any data from stream.
12:32:40 T:4594339840   ERROR: CFileCache::Process - Error 36 seeking. Seek returned -1
12:32:40 T:4594339840    INFO: CFileCache::Process - Hit eof.
12:32:40 T:4579958784   DEBUG: Seek - waiting for position 2147483643.
12:32:40 T:4579958784 WARNING: Seek - failed to get remaining data
12:32:40 T:4579958784   ERROR: ffmpeg[10FCA000]: [h264] AVC: nal size 171238
12:32:40 T:4579958784   ERROR: ffmpeg[10FCA000]: [h264] no frame!
12:32:40 T:4579958784    INFO: ffmpeg[10FCA000]: [flv] decoding for stream 0 failed
12:32:40 T:4579958784   DEBUG: ffmpeg[10FCA000]: [flv] Could not find codec parameters for stream 0 (Video: h264, 2500 kb/s): unspecified size
12:32:40 T:4579958784   DEBUG: ffmpeg[10FCA000]: [flv] Consider increasing the value for the 'analyzeduration' and 'probesize' options
12:32:40 T:4579958784   DEBUG: ffmpeg[10FCA000]: [flv] Could not find codec parameters for stream 1 (Audio: aac, 44100 Hz, stereo, 128 kb/s): unspecified sample format
12:32:40 T:4579958784   DEBUG: ffmpeg[10FCA000]: [flv] Consider increasing the value for the 'analyzeduration' and 'probesize' options
12:32:40 T:4579958784   DEBUG: ffmpeg[10FCA000]: [flv] Estimating duration from bitrate, this may be inaccurate
12:32:40 T:4579958784   DEBUG: ffmpeg[10FCA000]: [flv] File position after avformat_find_stream_info() is 17915
12:32:40 T:4579958784 WARNING: could not find codec parameters for http://gamespothdflash-f.akamaihd.net/vinnyboughtbotcolony_1_700@46333
12:32:40 T:4579958784   ERROR: OpenDemuxStream - Error creating demuxer
12:32:40 T:4579958784  NOTICE: CDVDPlayer::OnExit()
12:32:40 T:4579958784  NOTICE: CDVDPlayer::OnExit() deleting input stream
12:32:40 T:4594339840   DEBUG: Thread FileCache 4594339840 terminating
12:32:40 T:4579958784   DEBUG: OnPlayBackStopped : play state was 1, starting 1
12:32:40 T:4579958784   DEBUG: Thread DVDPlayer 4579958784 terminating
12:32:40 T:140735217652096   DEBUG: OnPlayBackStopped : play state was 3, starting 0
12:32:40 T:140735217652096   DEBUG: CAnnouncementManager - Announcement: OnStop from xbmc
12:32:40 T:140735217652096   DEBUG: GOT ANNOUNCEMENT, type: 1, from xbmc, message OnStop
12:32:40 T:140735217652096   ERROR: Playlist Player: skipping unplayable item: 0, path [http://gamespothdflash-f.akamaihd.net/vinnyboughtbotcolony_1_700@46333]
12:32:40 T:140735217652096   DEBUG: Playlist Player: no more playable items... aborting playback
12:32:40 T:4579958784  NOTICE: Thread BackgroundLoader start, auto delete: false
12:32:40 T:140735217652096  NOTICE: CDVDPlayer::CloseFile()
12:32:40 T:140735217652096  NOTICE: DVDPlayer: waiting for threads to exit
12:32:40 T:140735217652096  NOTICE: DVDPlayer: finished waiting
12:32:40 T:140735217652096   DEBUG: LinuxRendererGL: Cleaning up GL resources
12:32:40 T:4579958784   DEBUG: Thread BackgroundLoader 4579958784 terminating
12:32:40 T:140735217652096  NOTICE: CDVDPlayer::CloseFile()
12:32:40 T:140735217652096  NOTICE: DVDPlayer: waiting for threads to exit
12:32:40 T:140735217652096  NOTICE: DVDPlayer: finished waiting

Specifically the error seems to stem from curl and its requirement for being able to request byte ranges. I imagine this is an issue for live video, since typically you're downloading chunks as they're available. Is there some way to get XBMC to do live video playback or does the plugin itself need to manage downloading chunks and feeding them into the XBMC player? If so, could anyone point me to some resources on how that could be accomplished?

IPTV on Apple TV 2

$
0
0
Hi all, I am new to the iptv. I have installed xbmc on my jail broken Apple TV2 and installed the simple player from Pvr section. Not sure how to proceed and get and add a m3u playlist and I am struggling . Can you please guide me?

Can't watch shows from my Mythbackend slave but can from Mythbackend Master

$
0
0
I have just setup XMBC and everything was working great until I selected a video stored on my 2nd backend system. Below is the important part of the log.

From the XBMC box.
17:52:05 T:3058651136 NOTICE: COMXPlayer: Opening: pvr://recordings/RobertDelete/Inside the Walking Dead/Inside the Walking Dead, TV (731 AMCHD), 20140709_025600.pvr
17:52:05 T:3058651136 WARNING: CDVDMessageQueue(player)::Put MSGQ_NOT_INITIALIZED
17:52:05 T:2743071824 NOTICE: Thread OMXPlayer start, auto delete: false
17:52:05 T:2743071824 NOTICE: Creating InputStream
17:52:05 T:2743071824 ERROR: AddOnLog: MythTV cmyth PVR Client: LibCMyth: (cmyth)cmyth_conn_connect: asked for version 8, got version 75
17:52:05 T:2743071824 ERROR: AddOnLog: MythTV cmyth PVR Client: LibCMyth: (cmyth)cmyth_conn_connect: asked for version 75, got version 75
17:52:05 T:2743071824 ERROR: AddOnLog: MythTV cmyth PVR Client: LibCMyth: (cmyth)cmyth_conn_connect_file: reply ('ERROR') is not 'OK'
17:52:05 T:2743071824 ERROR: COMXPlayer::OpenInputStream - error opening [pvr://recordings/RobertDelete/Inside the Walking Dead/Inside the Walking Dead, TV (731 AMCHD), 20140709_025600.pvr]

From the Mythtv backend.
Jul 9 17:52:05 mythtv01 mythlogserver: mythbackend[1867]: E ProcessRequest mainserver.cpp:6075 (LocalFilePath) ERROR: LocalFilePath unable to find local path for '3731_20140709025600.mpg', found 'myth://192.168.1.22:6543/3731_20140709025600.mpg' instead.

Does the current version of Myth PVR support slave backends?

Thanks
Robert

Subtitle Service for live tv streams?

$
0
0
Hello all. I just had a question regarding the new Gotham subtitle sources. Will any of them work for the live streams? The reason I ask is because I thoroughly enjoy watching the international streams, although I am also a casualty of our poor American school system, therefore I speak nothing but the King's English. Despite my sophisticated command over it, it helps little when I want to watch news sources in other languages. Thank you for any and all responses.
-Jace

No sound and xbmc freezes on audio output settings

$
0
0
i havent used xbmc in a while and i went on there in the hope to watch some live tv and there was no sound at all, not even the sound then u use the arrow buttons on the keyboard to go down the list and when watching videos, i even tried reinstalling but i get the same problems with no sound and when i try and go to settings when i hover the cursor over audio output it just freezes and i have to either have to wait or close xbmc, has anyone had this issue or knows how to fix it please let me know, i would be very grateful

How does my XBMC stack up?

$
0
0
It plays 1080p video without dropping frames. It has wireless mouse and keyboard controls. A 128gb flash drive. I run the XBMC Gotham build. It cost me $110. How do I compare?

[Image: vxj6UIqh.jpg]

Watched status not syncing across clients

$
0
0
As posted on the MB3 forums, I have Windows 7 64-bit and ServerWMC v1150 on Gotham 13.1. I have a couple issues related to watched status not being synced.

When I watch a show in XBMC, on my one client, I see the episode is marked as watched, but then when I open another client (both are rpi's), it is showing the episode as not watched.

Thoughts on this? Isn't the watched status supposed to be in sync across everything (all XBMC clients, etc)? And if so, is it a "real-time" sync or is there some delay? This is a big use case for me as I have several clients and would like to make sure the WMC recordings status is always in sync.
Viewing all 85667 articles
Browse latest View live


Latest Images

<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>