LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Fedora
User Name
Password
Fedora This forum is for the discussion of the Fedora Project.

Notices

Reply
 
LinkBack Search this Thread
Old 07-28-2009, 02:19 PM   #2191
mswift42
Member
 
Registered: Mar 2009
Posts: 39

Rep: Reputation: 16

Absolutely not reproducable. Watched it a third time, no problems.
Fuck the heck.
 
Old 07-28-2009, 04:54 PM   #2192
Wolfvorkian
Member
 
Registered: Sep 2007
Distribution: Arch
Posts: 108

Rep: Reputation: 15
If anyone besides me is having trouble with gameday audio, I just tried a very recent build of VLC and it works okay or does with the archived streams. The real test naturally is a live game. I'll find out later today if it performs decently with them.

VLC gives a lot of error messages but it works for the most part except that with both the streams I tested it did crap out once with each after perhaps 2 or 3 minutes but it picked them back up again in a few seconds & ran for the approx. remaining 10 minutes I wasted listening to each stream.

Prior to this newer build, VLC would work for awhile but inevitably lose the stream and not pick it up again.

Last edited by Wolfvorkian; 07-28-2009 at 07:01 PM. Reason: just tried a live stream and same problem with vlc, still craps out. So it is the web page for audio, apparently.
 
Old 07-30-2009, 12:10 PM   #2193
rjwood
Member
 
Registered: Jan 2006
Distribution: UBUNTU
Posts: 110

Rep: Reputation: 16
I've been having difficulty recently with home feeds. The picture and audio freezes and collapses. Anyone else experiencing this?
 
Old 08-02-2009, 02:56 PM   #2194
zeom
LQ Newbie
 
Registered: Aug 2009
Posts: 5

Rep: Reputation: 1
nexdef in-market problem

Quote:
Originally Posted by daftcat View Post
It's the Yankees On Yes, in-market coverage. As near as I can tell, I'm parsing it correctly. The grid.xml has media entries with types of home_audio, away_audio, mlbtv_home, mlbtv_away, mlbtv_national, and with YoY, mlbtv_inmarket. I don't have any code to handle mlbtv_inmarket.
Ok, I did look into this problem as it affected me too. Here are my
results:

Quote:
If that's what you're looking for, then use either flash or get the event-id, content-id from the media listings website and use the test tools. If you're just trying to get the normal coverage, I can't say why it's not working. You can also try to pinpoint your coverage with the test tools by finding the event-id, content-id from the website (mouse over the link), and use the test tools.
When I used nexdef.py with the calendar_event_id and the content-id
from I was able to watch the right stream. But as soon as I used mlbtv.py
all I got was the dreaded "couldn't parse nexdef stream" error. So I had
to dig deeper.

Quote:
I will look more into the code but it's all in parse_media_grid(), around line 373 of mlbtv.py for anyone feeling ambitious.
Thanks to your hint thats where I started. As I've already written a
parser for most xml files on gd2.mlb.com I just added one for grid.xml.
But it soon became obvious the everything was fine in there.

The real culprit, imho, is in parse_soap_content. Because the list you
generate from the soap reply again contains the in-market-stream.

So as a quick fix I just tried to filter out these in-market streams
and lo and behold I can again watch YES streams.

Here is the patch:

Code:
diff --git a/MLBviewer/mlbtv.py b/MLBviewer/mlbtv.py
index 072a794..1624da0 100644
--- a/MLBviewer/mlbtv.py
+++ b/MLBviewer/mlbtv.py
@@ -1135,6 +1135,8 @@ class GameStream:
                 for i in range(len(stream['domain-specific-attributes']['domain-attribute'])):
                     domain_attr = stream['domain-specific-attributes']['domain-attribute'][i]
                     dict[domain_attr._name] = domain_attr
+                if 'in-market' in str(dict['coverage_type']):
+                    continue
                 try:
                     cov_pat = re.compile(r'([0-9][0-9]*)')
                     coverage = re.search(cov_pat, str(dict['coverage_association'])).groups()[0]

However the patch falls into the category "works-for-me". I have no idea
how it affects people that are really "in market". I'm always out of it.

HTH
 
Old 08-03-2009, 03:49 AM   #2195
daftcat
mlbviewer Maintainer
 
Registered: Apr 2008
Posts: 1,246

Rep: Reputation: 65
SVN revision 212: Fixed Yankees broadcast for out-of-market viewing

Good news:
I've accepted zeom's patch for out-of-market support of Yankees games.

Bad news:
In-market support is not supported.


I don't have the time nor the testing capacity to figure out how to support Yankees-On-Yes. Maybe if Fox Sports Net signs on for in-market next season, I can revisit this.

Also, it's still just a really bad time right now for me to volunteer my free time to more code. Maybe after the release deadlines at my day job have passed (end of this month), I'll feel different about putting free-time into optional code.

I think I may also have a fix for the parsing error but I can't be sure since it didn't turn up again today. Give 212 a try and let me know if you're still getting parser errors on the listings.
 
Old 08-07-2009, 02:18 AM   #2196
jeremybub
LQ Newbie
 
Registered: Apr 2009
Posts: 26

Rep: Reputation: 16
I'd just like to post to say thanks! The games have been working on and off for my grandfather (Yankees fan) recently. Hopefully this will fix it. I understand that you're busy.
 
Old 08-11-2009, 03:11 AM   #2197
danq989
LQ Newbie
 
Registered: Jul 2008
Posts: 11

Rep: Reputation: 0
Thanks daftcat and Zeom!

I've been testing the new patch since its release last week and I'm pleased to say I can watch the out-of-market YES coverage again.

FYI, I did have an issue during Thursday's NYY-BOS game worth mentioning: Apparently MLB is starting to test selectable multi-camera-angle streaming.

During Thursday's game, the stream that mlbviewer grabbed was the raw camera feed from over the 3rd-base dugout. The video was a few seconds ahead of the audio, and there were no station graphics overlayed on the feed, nor did it cut to other cameras to follow the ball. It was kind of neat but difficult to follow some of the action .

I assume this feed was played because it was the first stream found - the stream listing in mlbviewer said something like "NYY-BOS-MULTI-ANGLE-A" during playback.

Seems like an update to the parser may be in order when mlb rolls this out more generally.

---Danq989

Quote:
Originally Posted by daftcat View Post
Good news:
I've accepted zeom's patch for out-of-market support of Yankees games.

Bad news:
In-market support is not supported.


I don't have the time nor the testing capacity to figure out how to support Yankees-On-Yes. Maybe if Fox Sports Net signs on for in-market next season, I can revisit this.

Also, it's still just a really bad time right now for me to volunteer my free time to more code. Maybe after the release deadlines at my day job have passed (end of this month), I'll feel different about putting free-time into optional code.

I think I may also have a fix for the parsing error but I can't be sure since it didn't turn up again today. Give 212 a try and let me know if you're still getting parser errors on the listings.
 
Old 08-12-2009, 10:50 AM   #2198
zeom
LQ Newbie
 
Registered: Aug 2009
Posts: 5

Rep: Reputation: 1
Quote:
Originally Posted by danq989 View Post
Thanks daftcat and Zeom!

I've been testing the new patch since its release last week and I'm pleased to say I can watch the out-of-market YES coverage again.
Thanks for your feedback, I'm glad it worked for you too.

Quote:
FYI, I did have an issue during Thursday's NYY-BOS game worth mentioning: Apparently MLB is starting to test selectable multi-camera-angle streaming.
I had the same issue, but as a workaround I tried the test/nexdef.py tool
which picked up the correct stream and let me watch game.

Quote:
I assume this feed was played because it was the first stream found - the stream listing in mlbviewer said something like "NYY-BOS-MULTI-ANGLE-A" during playback.

Seems like an update to the parser may be in order when mlb rolls this out more generally.
Yeah I think you are right here. But I have to admit at the time I was
really more interested in watching the game than screwing around with
the parser again.

But I'll look into it when it becomes a more frequent (= better testable) occurrence.

--
zeom
 
Old 08-13-2009, 04:11 AM   #2199
daftcat
mlbviewer Maintainer
 
Registered: Apr 2008
Posts: 1,246

Rep: Reputation: 65
can't do anything with multiangle anytime soon. having wrist pain from work but at least I can use my tablet... for the moment. hard to code with though. if it becomes a prob, zeom, it's in the view-keys. I think we want mp4_flash (or something like that.)
 
Old 08-14-2009, 03:03 PM   #2200
Geissbock
LQ Newbie
 
Registered: Aug 2009
Posts: 2

Rep: Reputation: 0
hey guys,

i'm trying to use mlbviewer, but i have a problem getting mplayer working correctly. when using mplayer from the jaunty repositories, i get

mplayer: could not connect to socket
mplayer: No such file or directory


in the console with no sound or video. when compiling mplayer from svn-source, i get sound but the console says

vidixlib: PROBING: ???
[???] Error occured during pci scan: Operation not permitted
vidixlib: PROBING: ???
[???] Error occured during pci scan: Operation not permitted
...
vidixlib: No suitable driver can be found


and still no video. also, mplayer seems to be completely useless since starting videos from command line doesn't give me any output either and smplayer crashes because mplayer doesn't recognize the -stop-screensaver option.

any idea what's going wrong? mplayer is compiling without error, but i guess i'm missing some options i have to append.
 
Old 08-15-2009, 03:47 AM   #2201
mswift42
Member
 
Registered: Mar 2009
Posts: 39

Rep: Reputation: 16
Geissbock,

Did you compile mplayer following theophiles How-to from page 83 of this thread? if not, please do so.
 
Old 08-15-2009, 12:33 PM   #2202
Wolfvorkian
Member
 
Registered: Sep 2007
Distribution: Arch
Posts: 108

Rep: Reputation: 15
Quote:
Originally Posted by Geissbock View Post

[snip]

any idea what's going wrong? mplayer is compiling without error, but i guess i'm missing some options i have to append.
Below are the instructions daftcat included in his REQUIREMENTS 2009-.txt document in Mlbviewer. I've built Mplayer at least 8 times following them and haven't had any problems. You might look them over and if you deviated at all, try again.

......................................................................

QUICK INSTRUCTIONS FOR GETTING AND BUILDING THE LATEST MPLAYER

Step 1: Verify you have subversion by typing "svn":

$ svn
Type 'svn help' for usage.
$

If you don't have subversion, you can download it from your distribution's
package management system (e.g. apt-get install subversion if you're using
Ubuntu or Debian), or you can get it here:

http://subversion.tigris.org/

Step 2: Download the latest MPlayer source via svn:

$ svn checkout svn://svn.mplayerhq.hu/mplayer/trunk mplayer

Step 3: Run the configure script with, at a minimum, the following options:

$ cd mplayer
$ sh configure --enable-dynamic-plugins --prefix=/usr

It's very important you use --prefix=/usr as you want to install this new
version of mplayer over your pre-distributed package.

Step 4: Run 'make'

$ make

Step 5: (as root), run 'make install'

$ make install
 
Old 08-15-2009, 03:36 PM   #2203
Geissbock
LQ Newbie
 
Registered: Aug 2009
Posts: 2

Rep: Reputation: 0
i followed the requirements-explanation with the result that i described yesterday, but the theophile-tutorial did the trick. thanks, guys!
 
Old 08-16-2009, 08:39 AM   #2204
kweisen
Member
 
Registered: May 2006
Location: Stewartsville, NJ
Distribution: fedora 14 & Ubuntu
Posts: 34

Rep: Reputation: 0
Vlc player and losing audio stream

First, I joined this forum back in early 2008 season - got my problems resolved - and haven't followed it too closely. It has really grown - and a lot of cool stuff here.

Anyway, I also use vlc to listen to gameday audio and loose the stream - anywhere from one to several times a game. Sometimes it seems to occur when I'm clicking on my mouse, other times, it just drops. I thought it might be because I'm running my Linux (Fedora 11) on a older (9 years - pentium III) pc that has gone through numerous hardware /software changes.

And finally, if Lidge (Phillies) blows another save, I'm jumping off a bridge (or at least drinking another beer!).
 
Old 09-03-2009, 11:04 AM   #2205
Theophile
Member
 
Registered: Jan 2003
Posts: 283

Rep: Reputation: 35
I've reinstalled the system and reinstalled mlbviewer (r212) and now I'm getting an error. Splash screen comes up, but then a note at the bottom says: "There was a parser problem with the listings page" and I get this:

Code:
Traceback (most recent call last):
  File "/usr/local/bin/mlbviewer.py", line 1518, in <module>
    curses.wrapper(mainloop, mycfg.data)
  File "/usr/lib/python2.6/curses/wrapper.py", line 44, in wrapper
    return func(stdscr, *args, **kwds)
  File "/usr/local/bin/mlbviewer.py", line 398, in mainloop
    + len(coveragetoggle.get(cfg['coverage'])) + 2
UnboundLocalError: local variable 'hd_available' referenced before assignment
What have I done?
 
  


Reply

Tags
help, install, installation, instructions, seek, vlc, windows


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
mlb.com gameday audio stream statmobile Linux - Newbie 6 05-06-2008 11:16 PM
link dies intermittently-seemingly at random- between win<->linux not linux<->linux?? takahaya Linux - Networking 10 03-09-2007 11:37 PM
triple boot linux/linux/linux No Windows involved toastermaker Linux - Newbie 12 03-02-2006 11:40 PM
Redhat (rhel v2.1) bootup problem with linux (linux vs linux-up) namgor Linux - Software 2 06-24-2004 03:49 PM


All times are GMT -5. The time now is 08:53 AM.

Main Menu
 
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration