Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

videoData.getStreamingData() giving null values. #73

Open
captain-nemo1 opened this issue Jul 19, 2021 · 3 comments
Open

videoData.getStreamingData() giving null values. #73

captain-nemo1 opened this issue Jul 19, 2021 · 3 comments

Comments

@captain-nemo1
Copy link

captain-nemo1 commented Jul 19, 2021

Getting null values in videoData.getStreamingData().getAdaptiveAudioStreams(), videoData.getStreamingData().getAdaptiveVideoStreams(); for all links.
On the latest 0.3.4 version.

image

@antonyhaman
Copy link
Owner

antonyhaman commented Jul 19, 2021 via email

@antonyhaman
Copy link
Owner

@captain-nemo1 can't reproduce on my side, could you please describe how to reproduce it?

@captain-nemo1
Copy link
Author

captain-nemo1 commented Jul 21, 2021

`youtubeLink = "https://www.youtube.com/watch?v=-957c92Z08s";

YoutubeJExtractor youtubeJExtractor = new YoutubeJExtractor();
youtubeJExtractor.extract(youtubeLink, new JExtractorCallback() {
@Override
public void onSuccess(VideoPlayerConfig videoData) {
    Log.d("Streaming Data", String.valueOf(videoData.getStreamingData())); //giving null values
    List<AdaptiveAudioStream> audioStreams = videoData.getStreamingData().getAdaptiveAudioStreams(); //gives empty list
}
@Override
public void onNetworkException(YoutubeRequestException e) {
}
@Override
public void onError(Exception exception) {
}
});

`

I have been running the following code in my app, and it just returns null value in the streaming data.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants