Coder Social home page Coder Social logo

Comments (10)

CastagnaIT avatar CastagnaIT commented on August 12, 2024

What are you talking about?
of kodi standard skins mediaflag? other external skins mediaflag? output problem to receiver? film/series that in official app info differs from kodi addon netflix?
What are you saying?...

from plugin.video.netflix.

Essam315 avatar Essam315 commented on August 12, 2024

@CastagnaIT
I think he is talking about this problem.

asciidisco/plugin.video.netflix#519 (comment)

from plugin.video.netflix.

CastagnaIT avatar CastagnaIT commented on August 12, 2024

oh haha :D disgusting descriptions now i understand

from plugin.video.netflix.

Essam315 avatar Essam315 commented on August 12, 2024

@CastagnaIT
The add-on file here can not be installed, need to be extracted and to zip the folder with WinRAR.

asciidisco/plugin.video.netflix#519 (comment)

see here

asciidisco/plugin.video.netflix#519 (comment)

asciidisco/plugin.video.netflix#519 (comment)

from plugin.video.netflix.

CastagnaIT avatar CastagnaIT commented on August 12, 2024

replaced thanks

from plugin.video.netflix.

Essam315 avatar Essam315 commented on August 12, 2024

@CastagnaIT
I have found a fix for this problem, in "converter.py" i replaced

def _convert_audio_downloadable(downloadable, adaptation_set, init_length, channels_count): representation = ET.SubElement( parent=adaptation_set, tag='Representation', codecs='ec-3' if 'ddplus' in downloadable['content_profile'] else 'aac', bandwidth=str(downloadable['bitrate'] * 1024), mimeType='audio/mp4') ET.SubElement( parent=representation, tag='AudioChannelConfiguration', schemeIdUri='urn:mpeg:dash:23003:3:audio_channel_configuration:2011', value=str(channels_count)) _add_base_url(representation, downloadable['urls'][0]['url']) _add_segment_base(representation, init_length)

with

def _convert_audio_downloadable(downloadable, adaptation_set, init_length, channels_count): channels_count = {'1.0':'1', '2.0':'2', '5.1':'6', '7.1':'8'} representation = ET.SubElement( parent=adaptation_set, tag='Representation', codecs='ec-3' if 'ddplus' in downloadable['content_profile'] else 'aac', bandwidth=str(downloadable['bitrate'] * 1024), mimeType='audio/mp4') ET.SubElement( parent=representation, tag='AudioChannelConfiguration', schemeIdUri='urn:mpeg:dash:23003:3:audio_channel_configuration:2011', value=channels_count[downloadable['channels']]) _add_base_url(representation, downloadable['urls'][0]['url']) _add_segment_base(representation, init_length)

basically adding

channels_count = {'1.0':'1', '2.0':'2', '5.1':'6', '7.1':'8'}

and replacing

value=str(channels_count))

with

value=channels_count[downloadable['channels']])

You know that the channels number will be right when in "manifest.mpd"

schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"

and

schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="6"

and here is the latest master with the audio fixed.

plugin.video.netflix-0.14.0.Beta20.audio.Fixed.zip

from plugin.video.netflix.

CastagnaIT avatar CastagnaIT commented on August 12, 2024

I've tried, but the descriptions are always the same

image

I mean that you don't see an example "5.1" but always 6

from plugin.video.netflix.

CastagnaIT avatar CastagnaIT commented on August 12, 2024

is to fix the flags of some skins? becouse mediaflag are set elsewhere

from plugin.video.netflix.

Essam315 avatar Essam315 commented on August 12, 2024

@CastagnaIT
The problem is not in the description, the problem in the number of channels of the audio 5.1, without the fix you will get it as 5 channels, with the fix you will get the right number which is 6, see the photos here.

This is the right number of channels of 5.1 (6 channels).

https://user-images.githubusercontent.com/42877866/50053039-b2bb6c80-0136-11e9-8b0a-8f354ef30d72.png

and this is the wrong number of channels of 5.1 (5 channels).

https://user-images.githubusercontent.com/42877866/50053099-9b30b380-0137-11e9-879b-edb27fb1cdd9.png

The wrong number of channels seems to lead to problems as described in the first post.

from plugin.video.netflix.

CastagnaIT avatar CastagnaIT commented on August 12, 2024

Thank you for the clarification! I never really noticed!
Thank you so much for your help

from plugin.video.netflix.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.