Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 414cc92

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 09f93fa + e6d7766 commit 414cc92

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ Call YTExtractor inside your activity or fragment
5151
```kotlin
5252
//If your YouTube link is "https://www.youtube.com/watch?v=IDwytT0wFRM" so this videoId is "IDwytT0wFRM"
5353
var videoId = "IDwytT0wFRM"
54-
val yt = YTExtractor(context)
54+
val yt = YTExtractor(con = context, CACHING = true, LOGGING = true)
55+
// CACHING and LOGGING are 2 optional params. LOGGING is for showing Log and CACHING is for saving SignatureCipher to optimize extracting time (not recommend CACHING to extract multiple videos because it causes HTTP 403 Error)
5556
var ytFiles: SparseArray<YtFile>? = null
5657
var videoMeta: VideoMeta? = null
5758
GlobalScope.launch {

0 commit comments

Comments
 (0)