NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public NextPVR Support Linux v
« Previous 1 … 4 5 6 7 8 … 34 Next »
Recording length error

 
  • 0 Vote(s) - 0 Average
Recording length error
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,838
Threads: 177
Joined: Aug 2016
#1
2023-11-07, 12:51 AM
I'm having issues with playing some NextPVR recordings. The one I am currently having trouble with is NFL Football Dallas Cowboys at Philadelphia Eagles recorded 11/05/2023 at 3:25pm

The problem is the recording is over three hours long but in all the NextPVR clients and Web client the recording only reports 15 minutes in length. I have only seen this with recordings using the Tablo tuner + Extra so far.

The same recording actually plays fine in Kodi and reports the correct duration of 3hrs 21min.

Do the logs show any clues as to what is happening?

Thanks


Attached Files
.zip   logs-20231106-1832.zip (Size: 1.03 MB / Downloads: 4)
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,838
Threads: 177
Joined: Aug 2016
#2
2023-11-07, 01:22 AM
Even though Kodi reported the correct duration of 3:21:00 there is still a problem with the video file as I had issues with skipping so the file was corrupted.

A remux of the video file seems to correct the duration reporting with the NextPVR clients.
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,626
Threads: 767
Joined: Nov 2003
#3
2023-11-08, 09:16 PM
Does it have a timing file?

If you've still got an example file not remuxed, I'm happy to take a look at it.
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,767
Threads: 954
Joined: May 2006
#4
2023-11-08, 09:33 PM (This post was last modified: 2023-11-08, 10:18 PM by mvallevand.)
Kodi only reports time based on what is in the database bad seeking will be because of the bad time stamps.

I did make a request the UI client use the timing file but seeks are still based on media info which doesn't handle bad time stamps either

The original info for the database is good

Code:
2023-11-06 17:54:14.537    [DEBUG][47]    ClientGetActivity() returning:
{
  "level": 3,
  "url": "/stream?client=default&f=%2Fmnt%2Fsda1%2FRecorded_TV%2FNFL%20Football%2FNFL%20Football_20231105_15251830.ts",
  "screen": "player",
  "recording_id": "24556",
  "recording_name": "NFL Football",
  "recording_title": "NFL Football",
  "recording_description": "The Cowboys visit the Eagles. Philadelphia sits atop the NFL with a 7-1 record, and paces the NFC with 224 points scored. A.J. Brown (PHI) became the first player in NFL history to record 125-plus receiving yards in six consecutive games on Oct. 29.",
  "recording_subtitle": "Dallas Cowboys at Philadelphia Eagles",
  "recording_duration": "12060",
  "recording_size": "16168918944",
  "supports_server_skip": "true",
  "file": "/mnt/sda1/Recorded_TV/NFL Football/NFL Football_20231105_15251830.ts"

}

but seeks have the wrong duration so the calculated range header is bad.

Code:
2023-11-06 17:54:37.443    [DEBUG][94]    ClientGetActivity() returning:
{
  "level": 3,
  "url": "/stream?client=PC&seek=78&f=%2Fmnt%2Fsda1%2FRecorded_TV%2FNFL%20Football%2FNFL%20Football_20231105_15251830.ts",
  "screen": "player",
  "skip_to": "78",
  "duration": "928",
  "range": "14964303492-"

}

I'd be curious to see the timing file too

Martin
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,838
Threads: 177
Joined: Aug 2016
#5
2023-11-08, 10:32 PM (This post was last modified: 2023-11-08, 10:33 PM by VCR58.)
Thanks.

Here is the timing file. And a link to Cut Chunk of the unremuxed file

https://1drv.ms/v/s!ArMMuDTvT3Aivn9eWyop...a?e=xeHlPN


Attached Files
.zip   NFL Football_20231105_15251830.zip (Size: 441.05 KB / Downloads: 4)
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,767
Threads: 954
Joined: May 2006
#6
2023-11-08, 10:58 PM (This post was last modified: 2023-11-09, 12:47 AM by mvallevand.)
That's what I expected and why I like the v4 timing.info better since it doesn't care about bad timestamps.

Code:
frame,95639.112389,14766074224
frame,195.644944,14766531252

You would need the cutchunk to start about 14754616000 bytes or maybe a bit earlier to capture the timestamp issue.

I will check to see if that is a TabloTV issue after 95k ms.

Martin
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,838
Threads: 177
Joined: Aug 2016
#7
2023-11-08, 11:28 PM
Cut Chunk maxes at 1G so from the end of the file that won't do. 15G is my total Google drive capacity and One drive is only about 4G I think.

If it matters, this recording is the second of back to back NFL recordings on the same channel. The first one played fine I think. Also, NextEnd was running.
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,767
Threads: 954
Joined: May 2006
#8
2023-11-09, 12:28 AM
On Linux you can use dd maybe something like this (dd is powerful be careful)

dd if=filename.ts of=chunk.ts bs=188000 skip=78542 count=1000

Martin
VCR58
Offline

Posting Freak

Marion Iowa, USA
Posts: 1,838
Threads: 177
Joined: Aug 2016
#9
2023-11-09, 04:47 AM
Here is what I got using "bs=188000 skip=78542 count=1000" https://1drv.ms/v/s!ArMMuDTvT3AivwDsr63b...w?e=aYmsHL

Hopefully it's in the right spot.
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,767
Threads: 954
Joined: May 2006
#10
2023-11-09, 04:53 AM
It isn't corret but I might be able to give better directions if I get the calculator out tomorrow.

If possible can you give a link from normal OneDrive and not photos next time? These are are hard to download with Firefox.

Martin
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (3): 1 2 3 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  Recording Plyback Timeline Issue JeffH 11 565 2025-01-17, 03:20 PM
Last Post: mvallevand
  Wake on suspend for recording flyingsubs 15 4,363 2024-12-03, 01:07 PM
Last Post: mvallevand
  NextPVR i.mjh.nz [Failed: Recording interrupted] Nzbaxterman 6 655 2024-10-29, 11:44 PM
Last Post: sub
Wink recording rules - nextpvr kfmf 4 682 2024-07-20, 08:50 AM
Last Post: kfmf
  Live stream not working while recording pciber 6 845 2024-06-10, 07:48 AM
Last Post: pciber
  No device listed -- error saving capture source: SQLite Error 1: 'no such column: −1' skrottapple 46 3,901 2024-04-13, 10:27 PM
Last Post: skrottapple
  Time scheduled radio recording? WagMan 8 995 2024-01-13, 05:34 PM
Last Post: mvallevand
  Different Errors depending on channel (no tuner found/transcoding Error) idefixrc 3 760 2023-11-21, 12:45 PM
Last Post: mvallevand
  Nextpvr unaccessable from Jellyfin with 401 error Simonzzzz 5 1,203 2023-11-20, 10:28 AM
Last Post: Simonzzzz
  "Unexpected error scanning for other devices" BlackJack 2 709 2023-07-15, 03:03 PM
Last Post: BlackJack

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode