NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Information Community Announcements v
« Previous 1 … 4 5 6 7 8 … 56 Next »
Repairing the timeline of an MPEG

 
  • 0 Vote(s) - 0 Average
Repairing the timeline of an MPEG
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#31
2006-02-10, 09:34 PM
So...which is better.....retime or mencoder?
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
wtg
Offline

Posting Freak

Posts: 1,402
Threads: 120
Joined: Mar 2005
#32
2006-02-10, 09:48 PM
Both have their problems. I've occasionally had the mux/demuxers used in retime.bat abort on certain files with messed up timelines, and I've occasionally had mencoder produce a file with a 0:00 duration timeline, so neither are perfect.

However, mencoder is much, much faster and starts writing the output file immediately, so you can actually start viewing it in gbpvr while it converts. retime doesn't start outputting the new file until after it's demux the original, so there's no instant gratification.

I suggest keeping both in your arsenal. Try mencoder first, and if that doesn't work, try retime.bat.

P.S. In the cases where mencoder has produced a 0:00 timeline video, for some reason Nero's Showtime shows the duration correctly, while WMP, RealPlayer and ZoomPlayer show it as 0:00. It doesn't happen too often for me, but when it does I end up watching it in Nero's player.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#33
2006-02-10, 09:57 PM
wtg Wrote:Both have their problems. I've occasionally had the mux/demuxers used in retime.bat abort on certain files with messed up timelines, and I've occasionally had mencoder produce a file with a 0:00 duration timeline, so neither are perfect.

However, mencoder is much, much faster and starts writing the output file immediately, so you can actually start viewing it in gbpvr while it converts. retime doesn't start outputting the new file until after it's demux the original, so there's no instant gratification.

I suggest keeping both in your arsenal. Try mencoder first, and if that doesn't work, try retime.bat.

P.S. In the cases where mencoder has produced a 0:00 timeline video, for some reason Nero's Showtime shows the duration correctly, while WMP, RealPlayer and ZoomPlayer show it as 0:00. It doesn't happen too often for me, but when it does I end up watching it in Nero's player.

Is it more efficient to put this in the postprocessing.bat file when it only occurs periodically vs. just using the tool when you hit a recording with a bad timeline?

I am trying to decide if I want to run all my videos through this if only 10% are impacted by the problem.

How long does it take to redo a 1 hour show encoded in high level?
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
wtg
Offline

Posting Freak

Posts: 1,402
Threads: 120
Joined: Mar 2005
#34
2006-02-10, 10:10 PM
I never bothered with postprocessing because it was only happening about 25% of the time, and then switching to the 23035 drivers, the problem went away entirely.

When it was happening to me, I put the mencoder command in a batch file, would drag and drop the file onto it, and then start watching the output while it processed. On a 1.1 GHz celeron it seems like a 1 hr show took less than 10 minutes to finish. Retime takes significantly longer because it works differently.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#35
2006-02-10, 10:11 PM (This post was last modified: 2006-02-10, 10:38 PM by UncleJohnsBand.)
wtg Wrote:I never bothered with postprocessing because it was only happening about 25% of the time, and then switching to the 23035 drivers, the problem went away entirely.

When it was happening to me, I put the mencoder command in a batch file, would drag and drop the file onto it, and then start watching the output while it processed. On a 1.1 GHz celeron it seems like a 1 hr show took less than 10 minutes to finish. Retime takes significantly longer because it works differently.

Thanks.....where can I find mencoder? Update I found the file: ftp://ftp5.mplayerhq.hu/mplayer/releases/win32/

Can you post your batch file?
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
groover km
Offline

Senior Member

Posts: 731
Threads: 43
Joined: Mar 2005
#36
2006-02-10, 10:15 PM
I would be interested in seeing an example batch file too - if anyone can help me with the issue I outlined above (postprocessing.bat produced files are not showing up in recordings) I'd be really grateful - seems like I fix one thing and break another...

Sad
Celeron D 2.53GHz, 1024MB
120GB, 160GB int, 80GB, 250GB ext, 40GB lan HDDs
PVR-150 retail, 1 wired MVP, 1 wireless MVP, OFA URC-8910 Remote
Look for me on XBox Live!
wtg
Offline

Posting Freak

Posts: 1,402
Threads: 120
Joined: Mar 2005
#37
2006-02-10, 11:00 PM
This is the one I use:
Code:
:: retime_mencoder.bat
move %1 "%~dpn1_original.mpg"
start /low /wait c:\vid\mplayer\mencoder.exe -of mpeg -oac copy -ovc copy "%~dpn1_original.mpg" -o "%~dnp1.mpg"

Some might like it to delete the original at the end, but I personally have always preferred to do so after I confirmed all went well.
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#38
2006-02-10, 11:23 PM
wtg Wrote:This is the one I use:
Code:
:: retime_mencoder.bat
move %1 "%~dpn1_original.mpg"
start /low /wait c:\vid\mplayer\mencoder.exe -of mpeg -oac copy -ovc copy "%~dpn1_original.mpg" -o "%~dnp1.mpg"

Some might like it to delete the original at the end, but I personally have always preferred to do so after I confirmed all went well.

Thanks....I have one that was out of sync so I am checking it out.

You say you went back to drivers: 23035 and now you don't get the problem? When where they released?
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
UncleJohnsBand
Offline

Posting Freak

U.S.A.
Posts: 5,643
Threads: 258
Joined: Feb 2005
#39
2006-02-11, 02:06 AM
UncleJohnsBand Wrote:Thanks....I have one that was out of sync so I am checking it out.

You say you went back to drivers: 23035 and now you don't get the problem? When where they released?

Sweet....if fixed it no problem....and on my 3.2GHz it only took about 4 minutes to fix and run comskip on the fixed file. Big Grin
Intel Core i7 @ 4.00GHz Skylake 14nm
ASUSTeK COMPUTER INC. Z170-DELUXE
Windows 10 Pro x64
PVR Software: NPVR 5.1.1
SiliconDust HDHomeRun HDHR5-4US Connect Quatro 4 Channel Tuner
Roku Ultra
2 PCH A-100's
wtg
Offline

Posting Freak

Posts: 1,402
Threads: 120
Joined: Mar 2005
#40
2006-02-11, 03:14 AM
Glad it worked for you. mencoder is a real gem.

The 23035 drivers can be found over at shspvr.com. ftp://ftp.shspvr.com/download/wintv-pvr_150-500/inf/

I don't know when they were released but the time and date there shows Feb 8 2005. I've only had one problem with them. Just one channel has strange audio - voices sound kind of robotic. It's rare that I record from it though, and given I've never had a single timeline issue since I switched to these, the benefit far outweighs the annoyance.

Others have said that the 23025 drivers also work well, but I haven't tried them.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (5): « Previous 1 2 3 4 5 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  MPEG editor HtV 6 2,364 2007-10-09, 08:56 AM
Last Post: SuMo
  Comskip 0.79 build 31: ProjectX output and Timeline analysis erik 0 1,572 2006-04-03, 09:04 AM
Last Post: erik
  Commercial deletion with continues timeline erik 1 1,831 2005-10-23, 07:46 PM
Last Post: erik
  Comskip 0.77 has an integrated mpeg viewer erik 3 2,497 2005-09-27, 02:12 PM
Last Post: erik
  New plugin: Convert2wme 0.0.0 for MPEG-VCR erik 5 3,797 2005-06-10, 09:19 PM
Last Post: pwtenny

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

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

Linear Mode
Threaded Mode