Opened 20 years ago
Closed 19 years ago
Last modified 18 years ago
#340 closed task (fixed)
Redo live-tv.
Reported by: | Isaac Richards | Owned by: | Isaac Richards |
---|---|---|---|
Priority: | blocker | Milestone: | 0.19 |
Component: | mythtv | Version: | |
Severity: | medium | Keywords: | |
Cc: | Ticket locked: | no |
Description (last modified by )
From the old bug db, #24:
Getting rid of the Ringbuffer way of timeshifting would be nice:
- Ringbuffer's slow for local access (ie, uses the network)
- Multiple semi-complicated codepaths to support the Ringbuffer and normal file access.
- Unable to save an in-progress show from the timeshifting buffer.
The idea would be to:
- Just use normal files for timeshifting.
- Automatically change to a new physical file on channel change or program change (from the guide data). Would also need to segment files every few hours, in order to allow very long programs to be timeshifted and still offer the ability to limit space used for timeshifting. Could just punt on this and just require enough recording space, though.
Basically, the recorder would need to create a chain of files to play back, and share that with the frontend on a periodic basis (store in db, send a message out to reload?). The recorder would have to be able to chunk the files based on a GOP end, so playback could continue from the beginning of an arbitrary file. The player engine would need to be able to seamlessly change from playing one file to the next. I think the hardest part would be dealing with seeking over file boundaries, but even that shouldn't be too bad.
Attachments (1)
Change History (41)
comment:3 Changed 20 years ago by
Type: | defect → task |
---|
comment:4 Changed 20 years ago by
comment:5 Changed 20 years ago by
Milestone: | → 0.19 |
---|---|
Priority: | critical → blocker |
comment:6 Changed 19 years ago by
comment:9 Changed 19 years ago by
THIS BREAKS LIVE-TV.
First part of the new live-tv 'chain' implementation.
- The RingBuffer? no longer is a ring buffer. Need to look at the locking in the class now, it can likely be made much simpler. Troublesome to rename this now, probably should at some point.
- Live-tv initialization is different, there is no more 'setup ringbuffer' command. Instead, 'spawn tv' takes care of that, and the client sends a live-tv chain id to the backend to start appending to. Once started, the client reads the first program out of the chain, sets up the local ringbuffer and starts playing it.
- It automatically creates a new file / chain entry when the program guide data changes. Playback follows along, reloads the chain, and can seamlessly playback across the gap.
Broken at the moment:
- bttv/mjpeg/plextor usb capture cards (only in live tv).
- Channel, input changes.
- Seeking across file boundaries. Probably, seeking in general.
- The OSD during live-tv.
- Getting the proper position map from the encoder.
- probably more stuff.
comment:10 Changed 19 years ago by
I just got a crash from some kind of mutex problem when exiting a pre-recorded show.
I haven't gotten around to testing LiveTV yet :)
Changed 19 years ago by
Attachment: | livetv-start-bt.txt added |
---|
fe SEGFAULT on LiveTV start on a DVBRecorder
comment:11 Changed 19 years ago by
Check to make sure the recorder is adding stuff to the tvchain table. I was unsure of where best to place things for dvb - it could be completely off..
It _may_ make sense for the frontend to play/loop from a local file instead of the dummy recorder streaming it stuff.
comment:12 Changed 19 years ago by
I'll look at it tomorrow, I also managed to crash the backend generating a preview of a blank recording. I have some family obligations + errands to run, but I should have a couple hours early and late in the day.
comment:13 Changed 19 years ago by
comment:15 Changed 19 years ago by
comment:16 Changed 19 years ago by
comment:17 Changed 19 years ago by
In SVN 7767, with a PVR250, I cannot enter live tv at all. I saw the big commit's message said live tv is broken, but I see other messages saying channel changing is working, so it sounds like I should at least be able to enter live tv.
The Watch TV menu item flickers briefly when I try to activate it. When tailing the backend server log --verbose all, I see no entry as I attempt to enter. I've attached both front and backend logs with verbose all while I start things up, attempt to enter live tv, and then exit.
comment:18 Changed 19 years ago by
LiveTV is disabled right now per Isaac's announcement here: http://www.gossamer-threads.com/lists/mythtv/users/159077 Ask on the lists before here if you're not sure when it's operational again, or follow Isaac's instructions in the linked post if you want to test.
comment:19 Changed 19 years ago by
Remove the obsolete LiveBufferDir/BufferSize/MaxBufferFill? settings for livetv.
comment:20 Changed 19 years ago by
Add the recorder type changed handler - should handle card type switches cleanly now. The 'seamless' switch now handles discontinuities properly, and resets the decoder, too. This also tries to drain the ringbuffer read buffer & video output buffers a bit before switching to the next file.
comment:21 Changed 19 years ago by
Simplify the TV class to use the TVChain-derived ProgramInfo? for its OSD information, instead of using a query to the backend. Store the channel name + input name in the TVChain table to make this easier.
Remove obsolete queries (GET_PROGRAM_INFO and GET_INPUT_NAME), and bump the protocol version to 21.
comment:22 Changed 19 years ago by
Seeking across file boundaries for livetv. Possibly ff/rew too, didn't test yet.
Behavior is: When seeking forward, and not playing the most recent file, seek to the beginning of the next program. When seeking backward, it'll go to 5 seconds before the end of the file.
There seem to be some issues syncing the position map for the chains. Need to look into those later.
comment:23 Changed 19 years ago by
comment:24 Changed 19 years ago by
Put LiveTV recordings into a "LiveTV" Recording Group.
Move NuppelVideoPlayer::UpdateInUseMark?() functionality into
ProgramInfo::UpdateInUseMark?() so it can be used elsewhere.
Mark currently recording programs as in use.
Make mythcommflag update a recording's in-use flag while flagging in
case it is run on a long recording on a slow machine.
comment:25 Changed 19 years ago by
comment:26 Changed 19 years ago by
ToggleRecord? now works, and is now basically just a couple db calls. It just marks the program being watched in LiveTV as a non-livetv program (normal autoexpire value, 'Default' group). So, now it saves the entire program that's been watched from the beginning instead of from when 'ToggleRecord?' was hit.
Change the recording group 'LiveTV' to be untranslated in the DB, and translated on display like 'Default'.
Add some locking for the playbackinfo pointer in TV, since it can now be changed out of thread.
comment:27 Changed 19 years ago by
Exclude LiveTV recordings from Max Episodes count when running Auto-Expire.
Modify AutoExpire? to wake up every 2 minutes to expire short LiveTV programs. These recordings are leftover from channel surfing. Short means < 2 minutes.
Disallow setting AutoExpireMethod? to None (0) since LiveTV now depends on it. LiveTV "recordings" are set to Auto-Expire by default so if you don't want to let anything else Auto-Expire, then don't allow Auto-Expire on your individual scheduled recordings. You can still choose what ordering (oldest first or lowest recording priority) to use when expiring.
Fix one more place where I was translating "LiveTV" and didn't need to be.
comment:28 Changed 19 years ago by
Move keeping track of the LiveTVChain instance on the backend to the MainServer? object. Fixes 'dirty' exits of livetv.
comment:29 Changed 19 years ago by
Deleting a recording from a tvchain notifies players now. Still a hole where it could potentially break if something's deleted while the player's in process of changing.
Make the 'short livetv program' autoexpire only delete things that have finished recording by at least a minute.
Call FinishedRecording? on livetv programs, so the endtimes get updated properly.
Add the current PID to the 'playkey' for the inuseprograms table, so the frontend + backend don't try using the same ids & so don't delete the other's inuse flag.
comment:30 Changed 19 years ago by
comment:31 Changed 19 years ago by
comment:32 Changed 19 years ago by
comment:33 Changed 19 years ago by
bttv/plextor/mjpeg/etc (anything generating .nuv) should work in live-tv now. I only had a plextor convertx handy, so bttv could use some testing.
Switching cards works in live-tv. There were a few assumptions in tv_rec that a recorder would only start at the beginning of the chain.
A couple plextor convertx fixes too - mark its actual keyframes in the file for better seeking support.
comment:34 Changed 19 years ago by
I've been having a problem w/ SVN 7901 when I start live TV. Sometimes it starts fine, but about 1/2 the time it returns to the main menu and the following is output by mythfrontend. I have a PVR-250.
2005-11-17 07:13:17.478 Invalid file handle when opening /mnt/mythtv/1228_20051117071316.mpg. 6 retries remaining. . . . 2005-11-17 07:13:20.514 NVP::OpenFile(): Error, file not found: /mnt/mythtv/1228_20051117071316.mpg 2005-11-17 07:13:20.515 TV Error: StartPlayer(): NVP is not playing after 20000 msec 2005-11-17 07:13:20.748 TV Error: LiveTV not successfully started
comment:35 Changed 19 years ago by
comment:36 Changed 19 years ago by
Prior post (11/17 12:20) only actually occurs when there is no signal coming in. I have external cable box on PVR-250's s-video input. When the cable box is off, the above behavior occurs. When there's signal, it works as normal.
comment:37 Changed 19 years ago by
It appears the RingBuffer?/NVP has problems with short files.
I'm also seeing a similar problem when trying to address #664.
When you have a short (30 frames or so) file in the livetv buffer, the NVP sometimes falls into prebuffering pause. It never checks whether it should be switching buffers. I guess it is blocking the check somehow? It eventually it gives up and you return to the main menu.
This may be related to another apperent bug where the player gets stuck in a prebuffering pause at the end of scheduled recordings. It eventually it gives up and you return to the main menu. Of course it shouldn't be entering prebuffering pause at all in this case, but should just exit playback normally.
comment:38 Changed 19 years ago by
comment:39 Changed 19 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:40 Changed 18 years ago by
About the following:
"- Just use normal files for timeshifting.
- Automatically change to a new physical file on channel change or program change (from the guide data). Would also need to segment files every few hours, in order to allow very long programs to be timeshifted and still offer the ability to limit space used for timeshifting. Could just punt on this and just require enough recording space, though."
I own a Siemens PVR (it's the Gigaset M740 AV) which is really nice. It has the timeshifting feature well designed: It creates several files while watching TV of about 80MB. Previous versions of the Firmware created files of 300MB. Then there is a file which identifies what show is splited into which files (a crid file, by the way. Check this for more info: http://en.wikipedia.org/wiki/Crid ). In my opinion it's good to split broadcasts into small files (well, you name the size, cause you guys maybe know better how to deal with that and make it optimized) because that helps fine tuning the space used by all the timeshifting data.
(In [7284]) Messing around with stuff in preparation for working on program-based live-tv.
Refs #340.