youtubedl-android icon indicating copy to clipboard operation
youtubedl-android copied to clipboard

Error To Get VideoInfo

Open AllrounderBapu opened this issue 1 year ago • 1 comments

 Disposable disposable = Observable.fromCallable(() -> YoutubeDL.getInstance().getInfo(url))
            .subscribeOn(Schedulers.newThread())
            .observeOn(AndroidSchedulers.mainThread())
            .subscribe(streamInfo -> {
              
                Toast.makeText(youtubeDown.this, streamInfo.getTitle(), Toast.LENGTH_LONG).show();
                
            }, e -> {
                Toast.makeText(youtubeDown.this, " failed", Toast.LENGTH_LONG).show();
                
            });
    compositeDisposable.add(disposable);

AllrounderBapu avatar Oct 15 '23 11:10 AllrounderBapu

same : im getting this log startDownload: com.yausername.youtubedl_android.mapper.VideoInfo@8de0d1a instead of the video information

tomleejumah avatar Mar 25 '24 21:03 tomleejumah