home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
Support
Codecs, External Players
Install a supported audio/video encoder for your software analog card
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="mm1352000" data-source="post: 891569" data-attributes="member: 82144"><p>Hello bruto</p><p> </p><p>I'll get straight to the point.</p><p> </p><p></p><p>They're not supported out of the box, but if you are willing to persist it may be possible to use them.</p><p> </p><p>Previously the list of supported encoders was hard-coded in the MP source code, which meant you had to be able to compile the code to add an encoder. As of MP 1.2.x that list was shifted to the database so the ability to use the KWorld Cyberlink encoders depends on your ability to define them in the database.</p><p> </p><p>The queries that you would need to run to do this would be:</p><p>[code]INSERT INTO SoftwareEncoder (idEncoder, priority, name, type, reusable) VALUES ((SELECT MAX(idEncoder) + 1 FROM SoftwareEncoder), (SELECT MAX(priority) + 1 FROM SoftwareEncoder WHERE type = 0), 'CyberLink MPEG Video Encoder(KWorld)', 0, 1);[/code]</p><p>[code]INSERT INTO SoftwareEncoder (idEncoder, priority, name, type, reusable) VALUES ((SELECT MAX(idEncoder) + 1 FROM SoftwareEncoder), (SELECT MAX(priority) + 1 FROM SoftwareEncoder WHERE type = 1), 'CyberLink Audio Encoder(KWorld)', 1, 1);[/code]</p><p> </p><p>To execute these queries from the command line:</p><p>1. Click "start", "run", enter "cmd" then click OK. You should now have a command line or terminal open.</p><p>2. Type cd "<path to MySQL install>\bin". For example <strong>cd "C:\Program Files\MySQL\bin"</strong>.</p><p>3. Execute the first query using the command: mysql -u root -p MpTvDb -e "<query text here>". For the first query:</p><p></p><p>You'll be propted for a password when you do this. The default password is <strong>MediaPortal</strong> (case sensitive).</p><p>4. Repeat step 3 for the second query.</p><p>5. Open TV Server configuration and go to the "software encoders" tab in the "general" section. If all has gone well, the KWorld encoder should now be included at the bottom of each list and the "installed" column should say "yes". If this is the situation then try to scan again and see if it works.</p><p> </p><p>Best regards,</p><p>mm</p><p><img src="data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" class="smilie smilie--sprite smilie--sprite1" alt=":)" title="Smile :)" loading="lazy" data-shortname=":)" /></p></blockquote><p></p>
[QUOTE="mm1352000, post: 891569, member: 82144"] Hello bruto I'll get straight to the point. They're not supported out of the box, but if you are willing to persist it may be possible to use them. Previously the list of supported encoders was hard-coded in the MP source code, which meant you had to be able to compile the code to add an encoder. As of MP 1.2.x that list was shifted to the database so the ability to use the KWorld Cyberlink encoders depends on your ability to define them in the database. The queries that you would need to run to do this would be: [code]INSERT INTO SoftwareEncoder (idEncoder, priority, name, type, reusable) VALUES ((SELECT MAX(idEncoder) + 1 FROM SoftwareEncoder), (SELECT MAX(priority) + 1 FROM SoftwareEncoder WHERE type = 0), 'CyberLink MPEG Video Encoder(KWorld)', 0, 1);[/code] [code]INSERT INTO SoftwareEncoder (idEncoder, priority, name, type, reusable) VALUES ((SELECT MAX(idEncoder) + 1 FROM SoftwareEncoder), (SELECT MAX(priority) + 1 FROM SoftwareEncoder WHERE type = 1), 'CyberLink Audio Encoder(KWorld)', 1, 1);[/code] To execute these queries from the command line: 1. Click "start", "run", enter "cmd" then click OK. You should now have a command line or terminal open. 2. Type cd "<path to MySQL install>\bin". For example [B]cd "C:\Program Files\MySQL\bin"[/B]. 3. Execute the first query using the command: mysql -u root -p MpTvDb -e "<query text here>". For the first query: You'll be propted for a password when you do this. The default password is [B]MediaPortal[/B] (case sensitive). 4. Repeat step 3 for the second query. 5. Open TV Server configuration and go to the "software encoders" tab in the "general" section. If all has gone well, the KWorld encoder should now be included at the bottom of each list and the "installed" column should say "yes". If this is the situation then try to scan again and see if it works. Best regards, mm :) [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
Support
Codecs, External Players
Install a supported audio/video encoder for your software analog card
Contact us
RSS
Top
Bottom