11 lines
247 B
Go
11 lines
247 B
Go
package downloaders
|
|
|
|
import "sync"
|
|
|
|
//const OUTPUT_DIR = "C:/Users/Administrator/ytdlpVideos"
|
|
const OUTPUT_DIR = "."
|
|
|
|
var ongoingDownloads = make(map[string]struct{})
|
|
var ongoingDownloadsMutex = &sync.Mutex{}
|
|
|
|
const DOWNLOAD_WORKERS = 12 |