NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Add-ons (3rd party plugins, utilities and skins) v
« Previous 1 2 3 4 5 … 20 Next »
MCE Buddy

 
  • 0 Vote(s) - 0 Average
MCE Buddy
Ddodge13
Offline

Member

Posts: 79
Threads: 10
Joined: Jul 2017
#1
2018-07-19, 02:16 AM
I am trying to use MCE with NextPVR and having no success. When it converts the recording to MP4, it works but NextPVR won't see it and load it back into "Whats New" or "Ready Recordings" sections. I tell it to leave the file where it was after converting and to archive the original, but when its all finished I have no recording to watch in either of the recordings sections. Does anyone know how to get MCE Buddy and NextPVR to play nice together?
mvallevand
Online

Posting Freak

Ontario Canada
Posts: 52,771
Threads: 954
Joined: May 2006
#2
2018-07-19, 02:32 AM
There are lots of posts on MCE buddy if you search. The key would be leaving the filename the same only changing ts to mp4 after conversion. Note that mp4 files will only play in the NextPVR host client so if Kodi or other clients are required you will be out of luck.

Martin
Ddodge13
Offline

Member

Posts: 79
Threads: 10
Joined: Jul 2017
#3
2018-07-19, 12:12 PM
Thank you. I must be doing something wrong. I’m only on the host. Not changing the file name. But it’s still not working. I’ll do some more searching. Thank you Martin.
Graham
Offline

Posting Freak

UK
Posts: 4,058
Threads: 102
Joined: Dec 2005
#4
2018-07-19, 12:45 PM
NextPVR deletes entries for recordings from its database if the recording file disappears from the recording folder … http://www.nextpvr.com/nwiki/pmwiki.php?...nced#toc91

It might be this that is tripping you up. Make sure that the NextPVR front end is not running throughout the conversion and rename.
Ddodge13
Offline

Member

Posts: 79
Threads: 10
Joined: Jul 2017
#5
2018-07-19, 10:38 PM
Ok. Thank you. I’ll try and see if I can get it to work by making sure those settings are set. And NextPVR isn’t running on the front end.
cogengr
Offline

Junior Member

Posts: 4
Threads: 0
Joined: Sep 2018
#6
2018-09-03, 02:20 PM
Sorry to jump on an old thread... but I was having the same problems. I have MCEBuddy monitoring my recording directory, doing a comskip and convert to mp4, and delete the original file. NextPVR was deleting the entries from the database because the original file had moved.

I solved it with two lines at the end of my profile - the file on my machine is:
C:\Program Files\MCEBuddy2x\config\profiles.conf

At the end of my profile, I appended these two lines:

PostCustomCommandPath=C:\Program Files (x86)\NPVR\NScriptHelper.exe
PostCustomCommandParameters=-rename "%sourcefile%" "%convertedfile%"

And now everything gets renamed and stays right where it should. Nothing else required. My full profile (almost exactly stock):

[MP4 Normal]
Description=Main profile, good quality 1 pass MP4 (H.264/AAC) conversion. Good for most conversions, produces good results and is faster than the two pass conversion.
order=ffmpeg,handbrake,mencoder
mencoder-general=-ss 0 -vf pullup,softskip,yadif=0:-1,hqdn3d,harddup
mencoder-video=-ovc x264 -x264encopts bitrate=1400:me=hex:trellis=1:subq=8:partitions=all:8x8dct:ref=3:rc_lookahead=50:keyint=25:keyint_min=20:bframes=1:weight_b:level_idc=40:b_pyramid=normal:direct_pred=auto:mixed_refs:deblock=-1,-1:nofast_pskip:nodct_decimate:b_adapt=0:threads=auto
mencoder-audio=-oac faac -faacopts br=160:mpeg=4:tns:object=2
mencoder-audioac3=-oac faac -faacopts br=256:mpeg=4:tns:object=2
mencoder-ext=.avi
mencoder-remuxto=.mp4
mencoder-audiodelay=skip
ffmpeg-general=-threads 0
ffmpeg-video=-ss 0 -vf yadif=0:-1:1,hqdn3d -vcodec libx264 -b 1400k -x264opts me=hex:trellis=1:subq=8:partitions=all:8x8dct=1:ref=3:rc-lookahead=50:keyint=25:min-keyint=20:bframes=1:weightb=1:level=4.0:b-pyramid=normal:direct=auto:mixed-refs=1:deblock=-1,-1:no-fast-pskip=1:no-dct-decimate=1:b-adapt=0:threads=auto -map 0:v -sn
ffmpeg-audio=-acodec libfdk_aac -ab 160k -cutoff 18000 -map 0:a
ffmpeg-audioac3=-acodec libfdk_aac -ab 256k -cutoff 18000 -map 0:a
ffmpeg-ext=.mp4
ffmpeg-audiodelay=skip
handbrake-general=--decomb --loose-anamorphic --verbose=2 -f mp4 -O
handbrake-video=--start-at duration:0 -e x264 -b 1400 -x me=hex:trellis=1:subq=8:partitions=all:8x8dct:ref=3:rc-lookahead=50:keyint=25:keyint-min=20:bframes=1:weight-b:level-idc=40:b-pyramid=normal:direct-pred=auto:mixed-refs:deblock=-1,-1:nofast-pskip:nodct-decimate:b-adapt=0:threads=auto
handbrake-audio=-E faac -R auto -B 160 -D 0 -a 1,2,3,4,5
handbrake-audioac3=-E faac -R auto -B 256 -D 0 -a 1,2,3,4,5
handbrake-ext=.mp4
handbrake-audiodelay=skip
PreConversionCommercialRemover=true
PostCustomCommandPath=C:\Program Files (x86)\NPVR\NScriptHelper.exe
PostCustomCommandParameters=-rename "%sourcefile%" "%convertedfile%"
Ddodge13
Offline

Member

Posts: 79
Threads: 10
Joined: Jul 2017
#7
2018-09-03, 03:30 PM
cogengr Wrote:Sorry to jump on an old thread... but I was having the same problems. I have MCEBuddy monitoring my recording directory, doing a comskip and convert to mp4, and delete the original file. NextPVR was deleting the entries from the database because the original file had moved.

I solved it with two lines at the end of my profile - the file on my machine is:
C:\Program Files\MCEBuddy2x\config\profiles.conf

At the end of my profile, I appended these two lines:

PostCustomCommandPath=C:\Program Files (x86)\NPVR\NScriptHelper.exe
PostCustomCommandParameters=-rename "%sourcefile%" "%convertedfile%"

And now everything gets renamed and stays right where it should. Nothing else required. My full profile (almost exactly stock

What program do you use to open the .conf file?
gEd
Offline

Posting Freak

London
Posts: 3,512
Threads: 100
Joined: Jan 2005
#8
2018-09-03, 10:09 PM
Ddodge13 Wrote:What program do you use to open the .conf file?

Notepad. Always Notepad for ascii files such as this (don't use wordpad else you might cause problems and introduce non-ascii characters and corrupt the file).
“If this is the way Queen Victoria treats her prisoners, she doesn't deserve to have any.”
Ddodge13
Offline

Member

Posts: 79
Threads: 10
Joined: Jul 2017
#9
2018-09-04, 01:16 AM
gEd Wrote:Notepad. Always Notepad for ascii files such as this

Before your reply I googled it and used notepad++. However I’m not sure if it worked. Do you think notepad++ is ok?
Graham
Offline

Posting Freak

UK
Posts: 4,058
Threads: 102
Joined: Dec 2005
#10
2018-09-04, 09:44 AM
Ddodge13 Wrote:Do you think notepad++ is ok?

It's a good editor … I use it all the time … It's fine for jobs like this … If you are having trouble it's not because of Notepad++.
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): 1 2 Next »


Possibly Related Threads…
Thread Author Replies Views Last Post
  EPG-Buddy an EPG Tool with easy usage Lehmden 4 6,643 2020-09-04, 05:15 PM
Last Post: Mel

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

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

Linear Mode
Threaded Mode