|
SageTV Github Development Discussion related to SageTV Open Source Development. Use this forum for development topics about the Open Source versions of SageTV, hosted on Github. |
|
Thread Tools | Search this Thread | Display Modes |
#1
|
||||
|
||||
AC3Filter Taking Over
I have a new clean intstall of v9 using the Windows Installer latest RC (9.0.4.232) in Win10 64, and I'm using LAVFilters for all audio and video, EVR. Except I'm not. LAV Audio is specified in Sage, but AC3Filter always takes over and LAV isn't used. Any ideas why?
__________________
unRAID Server: Intel Core i5 7600K, 48GB DDR4, 2x512GB PCIe M.2 Cache Pool, 2x10TB SATA3 Parity Drive, 3x8TB SATA Array, 1x hdHomeRun DVB-T2 Quattro, IPTV via xTeVe, unRAID 6.8.3, tvHeadEnd for recording back end, Emby Clients: 3 Nvidia Shields, 3 FireTV, 3 Win10 Pro PC Clients |
#2
|
|||
|
|||
Quote:
Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Frey Technologies\Common\DSFilters\AudioDec] "AlwaysSwapForAC3Filter"=dword:00000001
__________________
Channels DVR UBUNTU Server 2 Primes 3 Connects TVE SageTV Docker with input from Channels DVR XMLTV and M3U VIA Opendct. |
#3
|
||||
|
||||
Thanks, that key wasn't there, when I added it, no effect. I guess I'm using AC3Filter!
__________________
unRAID Server: Intel Core i5 7600K, 48GB DDR4, 2x512GB PCIe M.2 Cache Pool, 2x10TB SATA3 Parity Drive, 3x8TB SATA Array, 1x hdHomeRun DVB-T2 Quattro, IPTV via xTeVe, unRAID 6.8.3, tvHeadEnd for recording back end, Emby Clients: 3 Nvidia Shields, 3 FireTV, 3 Win10 Pro PC Clients |
#4
|
|||
|
|||
Did you search for the Frey Tech key and drill down from there? On a 32 bit system the WOW part of the registry path wont be there.
__________________
If you wish to see what I am up to and support my efforts visit my Patreon page |
#5
|
||||
|
||||
Yes, it's a 64-bit system and I found the HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Frey Technologies\Common\DSFilters branch, just no AudioDec.
__________________
unRAID Server: Intel Core i5 7600K, 48GB DDR4, 2x512GB PCIe M.2 Cache Pool, 2x10TB SATA3 Parity Drive, 3x8TB SATA Array, 1x hdHomeRun DVB-T2 Quattro, IPTV via xTeVe, unRAID 6.8.3, tvHeadEnd for recording back end, Emby Clients: 3 Nvidia Shields, 3 FireTV, 3 Win10 Pro PC Clients |
#6
|
|||
|
|||
Quote:
k
__________________
If you wish to see what I am up to and support my efforts visit my Patreon page |
#7
|
||||
|
||||
Not here. Not a biggie, only found one video so far where AC3 was a problem.
__________________
unRAID Server: Intel Core i5 7600K, 48GB DDR4, 2x512GB PCIe M.2 Cache Pool, 2x10TB SATA3 Parity Drive, 3x8TB SATA Array, 1x hdHomeRun DVB-T2 Quattro, IPTV via xTeVe, unRAID 6.8.3, tvHeadEnd for recording back end, Emby Clients: 3 Nvidia Shields, 3 FireTV, 3 Win10 Pro PC Clients |
#8
|
|||
|
|||
Quote:
Try running sage as admin and see if it reads that setting. If so, then the permissions in the registry need changing so "everyone" has access to all the levels below and at Frey... k
__________________
If you wish to see what I am up to and support my efforts visit my Patreon page |
#9
|
||||
|
||||
Neither running as admin or setting registry to Everyone, Full Access made any difference.
__________________
unRAID Server: Intel Core i5 7600K, 48GB DDR4, 2x512GB PCIe M.2 Cache Pool, 2x10TB SATA3 Parity Drive, 3x8TB SATA Array, 1x hdHomeRun DVB-T2 Quattro, IPTV via xTeVe, unRAID 6.8.3, tvHeadEnd for recording back end, Emby Clients: 3 Nvidia Shields, 3 FireTV, 3 Win10 Pro PC Clients |
#10
|
||||
|
||||
That code is also written so that it only swaps out for AC3 Filter if you have either the "SageTV MPEG Audio Decoder" or the "SageTV MPEG-2 Audio Decoder" selected. So if the LAV filters are selected...it shouldn't be using AC3. Can you post your log file from when you reproduce the problem?
__________________
Jeffrey Kardatzke Founder of SageTV |
#11
|
||||
|
||||
Attached...
__________________
unRAID Server: Intel Core i5 7600K, 48GB DDR4, 2x512GB PCIe M.2 Cache Pool, 2x10TB SATA3 Parity Drive, 3x8TB SATA Array, 1x hdHomeRun DVB-T2 Quattro, IPTV via xTeVe, unRAID 6.8.3, tvHeadEnd for recording back end, Emby Clients: 3 Nvidia Shields, 3 FireTV, 3 Win10 Pro PC Clients |
#12
|
||||
|
||||
Try setting this in your properties file:
videoframe/dca_audio_decoder_filter=LAVF Audio Decoder For some reason we have the following behavior in the code...probably because it solved most people's problems with DTS (DCA) playback and because the audio decoder usually selected in the UI was only good for AC3 or MPEG audio. Code:
// Check for a format specific audio decoder if (sage.media.format.MediaFormat.AC3.equals(audType) || sage.media.format.MediaFormat.MP2.equals(audType)) audDec = Sage.get(prefs + AUDIO_DECODER_FILTER, "SageTV MPEG Audio Decoder"); else if (audType.length() > 0) audDec = Sage.get(prefs + audType.toLowerCase() + "_" + AUDIO_DECODER_FILTER, ""); if (audDec.length() > 0 && !"Default".equals(audDec) && !Sage.rez("Default").equals(audDec)) setAudioDecoderFilter0(pHandle, audDec, null); else if (sage.media.format.MediaFormat.DTS.equalsIgnoreCase(audType) || "DCA".equalsIgnoreCase(audType)) setAudioDecoderFilter0(pHandle, "AC3Filter", null);
__________________
Jeffrey Kardatzke Founder of SageTV |
#13
|
|||
|
|||
I actually just uninstalled the AC3 Filter and audio is now using LAV Audio decoder
|
#14
|
||||
|
||||
Quote:
__________________
unRAID Server: Intel Core i5 7600K, 48GB DDR4, 2x512GB PCIe M.2 Cache Pool, 2x10TB SATA3 Parity Drive, 3x8TB SATA Array, 1x hdHomeRun DVB-T2 Quattro, IPTV via xTeVe, unRAID 6.8.3, tvHeadEnd for recording back end, Emby Clients: 3 Nvidia Shields, 3 FireTV, 3 Win10 Pro PC Clients |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Why do I want AC3Filter? | rwc | SageTV Beta Test Software | 4 | 10-19-2005 09:11 AM |
Specifying AC3Filter | Blue | SageTV Software | 4 | 03-04-2005 10:40 PM |
AC3Filter 1.01a | soulprops77 | SageTV Software | 7 | 01-27-2005 03:48 PM |
Frustration is taking over | trevorst | SageTV Software | 20 | 12-28-2003 09:40 AM |