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) Old Stuff (Legacy) GB-PVR Support (legacy) v
« Previous 1 … 720 721 722 723 724 … 1231 Next »
new transcode exe= option doesn't work?!

 
  • 0 Vote(s) - 0 Average
new transcode exe= option doesn't work?!
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#11
2006-09-15, 10:14 AM (This post was last modified: 2006-09-15, 10:18 AM by pBS.)
no reason they can't be compatible...

actually i have a replacement ffmpeg that should also work with yours as well..Smile
it just runs the command-line as-is if a certain keyword isn't there...Big Grin
so if your command was
ffmpeg.exe cmd="{SOURCE_FILE} {DEST_FILE} etc.."
then with mine it would be the same, but change to
ffmpeg.exe cmd=" Zprocess.exe {SOURCE_FILE} {DEST_FILE} etc.."
so my ffmpeg would pass the rest of the cmd line to zprocess.exe as is..
basically, first parameter is commmand you wish to run, and the rest of the line gets passed to that executable as-is..

i tried to make it as universal as possible..
it also waits for that PID to exit,then exits normally, or if 'stop'ed from gbpvr, will terminate that PID... [ProgramID]
[it also kills any other ffmpeg or mencoder or vlc processes running just in case]
all self contained in one executable..Smile
let me know if there are any other things you require to work..
so maybe we can have a 'universal fake ffmpeg' that won't break eachother's stuff..
[we just have to use same calling syntax]

let me know what you think..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
alibert
Offline

Posting Freak

Posts: 974
Threads: 83
Joined: Apr 2005
#12
2006-09-15, 01:01 PM
Hi,
sub Wrote:"should work" might be a bit strong - as I said above it wasnt supposed to be an offically included in the release, and isnt something I've even tested. "might work" would probably be more appropriate.

Code:
<Conversion name="XviD" exe="ZProcess.exe" cmd="-y -i {SOURCE_FILE} -f avi -ab 224 -ac 2 -acodec mp3 -vcodec mpeg4 -b 1000 -vtag XVID {DEST_FILE}" targetExtension=".avi" />
Yeah, that one. With the executable placed in "C:\Program Files\devnz\gbpvr\Third Party\"

I've tried it out, and it worked with no problems. I placed mencoder.exe into the "Third Party" directory, and added the following line in config.xml in the "CustomFFmpegConversions" section:

Code:
<Conversion name="Add letterbox" exe="mencoder.exe" cmd="-of mpeg -sws 9 -ofps 25 -vf hqdn3d=1:1:3,scale=720:432,expand=-0:-144:0:72, -ovc lavc -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vfdct=6:keyint=15:vmax_b_frames=2:ibias=96:pbias=-64:vrc_override=0,0,250:vlelim=-4:vcelim=-7:trell:mbd=0:aspect=4/3:vratetol=1835:vbitrate=2000:vrc_maxrate=7900:vqmin=2:vb_qfactor=1.25:vi_qfactor=0.833333:vqblur=0.2 -oac copy {SOURCE_FILE} -o {DEST_FILE}" targetExtension=".letterbox.mpg" />

-alibert
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#13
2006-09-15, 01:49 PM
i just tried your line and still no go...what does your log say?
[on verbose it'll have the whole line as executed]
i couldn't even get the real ffmpeg to run with exe="ffmpeg.exe"
tho it did some interesting things when i tried just "ffmpeg"
mostly just sat there...but didn't exit..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
alibert
Offline

Posting Freak

Posts: 974
Threads: 83
Joined: Apr 2005
#14
2006-09-15, 02:59 PM
Hi,
pBS Wrote:i just tried your line and still no go...what does your log say?
[on verbose it'll have the whole line as executed]

Code:
14.09.2006 07:32:01.484    VERBOSE    [1]    C:\Programme\devnz\gbpvr\Third Party\mencoder.exe -of mpeg -sws 9 -ofps 25 -vf hqdn3d=1:1:3,scale=720:432,expand=-0:-144:0:72, -ovc lavc -lavcopts vcodec=mpeg2video:vrc_buf_size=1835:vfdct=6:keyint=15:vmax_b_frames=2:ibias=96:pbias=-64:vrc_override=0,0,250:vlelim=-4:vcelim=-7:trell:mbd=0:aspect=4/3:vratetol=1835:vbitrate=2000:vrc_maxrate=7900:vqmin=2:vb_qfactor=1.25:vi_qfactor=0.833333:vqblur=0.2 -oac copy "E:\Aufnahmen\Tatort\Tatort_20060827_22002330.mpg" -o "E:\Aufnahmen\Tatort\Tatort_20060827_22002330.letterbox.mpg"

-alibert
sub
Offline

Administrator

NextPVR HQ, New Zealand
Posts: 106,707
Threads: 767
Joined: Nov 2003
#15
2006-09-15, 05:17 PM
I have to agree with alibert. I've just tried it here with mencoder.exe and it worked fine for me.
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#16
2006-09-16, 01:16 AM
ahhh, after reading another post, Ton pointed out that it's looking in \third Party\ not \Third Party\FFMPEG\
so i did that and it works! weee!
excellent! Big Grin
now off to rearrange my profiles....lol
thanx!!
[i just assumed it meant the ffmpeg subdir...silly me! I knew I was a goof when Sub said it was working for him too, so i kept looking]
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
zehd
Offline

Posting Freak

Posts: 5,119
Threads: 249
Joined: Feb 2006
#17
2006-09-16, 11:58 AM
pBS Wrote:ahhh, after reading another post, Ton pointed out that it's looking in \third Party\ not \Third Party\FFMPEG\
so i did that and it works! weee!
excellent! Big Grin
now off to rearrange my profiles....lol
thanx!!
[i just assumed it meant the ffmpeg subdir...silly me! I knew I was a goof when Sub said it was working for him too, so i kept looking]


I think I made the same mistake...
Frank Z
[COLOR="Gray"]
I used to ask 'why?' Now I just reinstall...
[SIZE="1"]______________________________________________
Author: ZTools: ZProcess, MVPServerChecker; UltraXMLTV Enhancer, Renamer, Manager; [/SIZE]
[/COLOR]
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (2): « Previous 1 2


Possibly Related Threads…
Thread Author Replies Views Last Post
  USB-UIRT InterCodeDelay - does it work? blader_se 19 9,320 2019-03-09, 11:50 AM
Last Post: jksmurf
  GBPVR Webserver does not work - Windows 7 Pro, 64 Bit Ijaja 6 4,444 2011-10-19, 07:21 PM
Last Post: Basher52
  Will A Hauppauge Colossus work in 1.4.7? hondophred 5 3,726 2011-06-29, 09:12 PM
Last Post: sub
  Unable to get Sony MPeg2 card to work... AssarGabrielson 43 17,453 2011-03-17, 11:09 PM
Last Post: Snooze
  Transcode Problem axeman91 7 3,300 2010-11-22, 09:02 AM
Last Post: goelectric
  IR Blaster doesn't change to channel missing show details Kid_Ego5150 3 2,057 2010-11-13, 02:11 AM
Last Post: sub
  "Remove unreferenced channels" does not work at all Ijaja 4 2,516 2010-10-28, 11:41 AM
Last Post: Ijaja
  Forward key malfunctions, and sometimes no keys work at all BobAtTorrey 0 1,275 2010-06-30, 01:03 AM
Last Post: BobAtTorrey
  Selecting a different decoder doesn't seem to make it use the selected decoder? jksmurf 6 2,224 2010-06-01, 10:58 PM
Last Post: pBS
  HVR-4400, DVB-T works, DVB-S does not work agerdin 5 2,745 2010-05-30, 07:01 PM
Last Post: agerdin

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

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

Linear Mode
Threaded Mode