-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmain.go
588 lines (508 loc) · 15.9 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
package main
import (
"bufio"
"bytes"
"errors"
"fmt"
"io"
"io/ioutil"
"log"
"net/http"
"net/url"
"os"
"os/exec"
"path"
"path/filepath"
"regexp"
"strconv"
"strings"
"sync"
"github.com/grafov/m3u8"
"github.com/manifoldco/promptui"
"github.com/schollz/progressbar/v3"
)
const (
OPTION_DOWNLOAD = "Download video and segments"
OPTION_LIST_RESOLUTIONS = "List available resolutions"
OPTION_COUNT_SEGMENTS = "Count number of segments"
OPTION_UPLOAD_FILEPATH = "Upload video from local file"
OPTION_OUTPUT_MANIFEST_URL = "Output m3u8 manifest URL for a specific resolution"
OPTION_CHANGE_MANIFEST_URL = "Update manifest URL"
OPTION_EXIT = "🚫 Exit"
)
type Video struct {
BaseURL string
MasterManifestURL string
VideoUID string
RenditionManifests map[string]string
MasterPlaylist m3u8.MasterPlaylist
}
func main() {
manifestURLPointer := flag.String("manifestUrl", "", "URL to download video. (-- needs to be prepended)")
absoluteOutputPathPointer := flag.String("outputPath", "", "path to output the audio and video segments along with the combined file. (-- needs to be prepended)")
flag.Parse()
manifestURL := *manifestURLPointer
absoluteOutputPath := *absoluteOutputPathPointer
if absoluteOutputPath != "" {
if !fileExists(absoluteOutputPath) {
log.Fatalf("Absolute path %s does not exist", absoluteOutputPath)
}
}
if manifestURL == "" {
fmt.Println("⚠️ WARNING: No HLS manifest was specified, so you will only be able to upload a video or add a manifest")
}
options := []string{
OPTION_UPLOAD_FILEPATH,
OPTION_CHANGE_MANIFEST_URL,
}
var prompt promptui.Select
for {
if manifestURL != "" {
options = append(options, []string{
OPTION_DOWNLOAD,
OPTION_OUTPUT_MANIFEST_URL,
OPTION_LIST_RESOLUTIONS,
OPTION_COUNT_SEGMENTS,
OPTION_EXIT,
}...)
}
prompt = promptui.Select{
Label: "Cloudflare Stream Downloader",
Items: options,
}
_, result, err := prompt.Run()
if err != nil {
log.Fatal("Unable to process selection")
}
switch result {
case OPTION_DOWNLOAD:
initializeVideoDownloadProcess(manifestURL, absoluteOutputPath)
case OPTION_OUTPUT_MANIFEST_URL:
outputManifestURL(manifestURL)
case OPTION_UPLOAD_FILEPATH:
reader := bufio.NewReader(os.Stdin)
fmt.Print("Enter absolute video file path: ")
filename, err := reader.ReadString('\n')
if err != nil {
log.Fatal(err)
}
filename = filename[:len(filename)-1]
initUpload(filename)
case OPTION_LIST_RESOLUTIONS:
listAvailableResolutions(manifestURL)
case OPTION_COUNT_SEGMENTS:
countTotalSegments(manifestURL, absoluteOutputPath)
case OPTION_CHANGE_MANIFEST_URL:
fmt.Print("Enter new m3u8 manifest URL: ")
var userInput string
fmt.Scanln(&userInput)
manifestURL = userInput
case OPTION_EXIT:
fmt.Println("👋 Exiting Stream downloader")
os.Exit(1)
default:
fmt.Println("Option not available")
}
}
}
// outputManifestURL will output the m3u8 manifest URL for a specific video resolution
func outputManifestURL(manifestURL string) {
baseURL, UID, err := extractUIDAndPrefixURL(manifestURL)
if err != nil {
log.Fatalf("there was a problem parsing the base url: %v", err)
}
video := Video{
MasterManifestURL: manifestURL,
BaseURL: baseURL,
VideoUID: UID,
}
masterPlaylist, err := video.retrieveMasterPlaylist(manifestURL)
if err != nil {
log.Fatalf("there was a problem retrieving master playlist: %v", err)
}
video.MasterPlaylist = *masterPlaylist
chosenManifest, _, err := video.printResolutionDownloadMenu()
if err != nil {
log.Fatalf("there was a problem selecting a download option: %v", err)
}
fmt.Println(chosenManifest)
}
// countTotalSegments will output the number of segments on a particular manifest
func countTotalSegments(manifestURL string, absoluteOutputPath string) {
baseURL, UID, err := extractUIDAndPrefixURL(manifestURL)
if err != nil {
log.Fatalf("there was a problem parsing the base url: %v", err)
}
video := Video{
MasterManifestURL: manifestURL,
BaseURL: baseURL,
VideoUID: UID,
}
masterPlaylist, err := video.retrieveMasterPlaylist(manifestURL)
if err != nil {
log.Fatalf("there was a problem retrieving master playlist: %v", err)
}
video.MasterPlaylist = *masterPlaylist
chosenManifest, chosenResolution, err := video.printResolutionDownloadMenu()
if err != nil {
log.Fatalf("there was a problem selecting a download option: %v", err)
}
segmentPaths, err := video.downloadSegmentsFromManifest(chosenManifest, chosenResolution, true, false, absoluteOutputPath)
if err != nil {
log.Fatalf("there was a problem downloading the segments: %v", err)
}
fmt.Printf("There are a total of %d segments on the %s manifest\n",
len(segmentPaths),
chosenResolution,
)
}
// listAvailableResolutions outputs all available resolutions from a manifest
func listAvailableResolutions(manifestURL string) {
baseURL, UID, err := extractUIDAndPrefixURL(manifestURL)
if err != nil {
log.Fatalf("there was a problem parsing the base url: %v", err)
}
video := Video{
MasterManifestURL: manifestURL,
BaseURL: baseURL,
VideoUID: UID,
}
masterPlaylist, err := video.retrieveMasterPlaylist(manifestURL)
if err != nil {
log.Fatalf("there was a problem retrieving master playlist: %v", err)
}
video.MasterPlaylist = *masterPlaylist
_, _, err = video.printResolutionDownloadMenu()
if err != nil {
log.Fatalf("there was a problem selecting a download option: %v", err)
}
}
// initializeVideoDownloadProcess will invoke the download job to pull
// all segments and final mp4 video onto disk
func initializeVideoDownloadProcess(manifestURL string, absoluteOutputPath string) {
baseURL, UID, err := extractUIDAndPrefixURL(manifestURL)
if err != nil {
log.Fatalf("there was a problem parsing the base url: %v", err)
}
video := Video{
MasterManifestURL: manifestURL,
BaseURL: baseURL,
VideoUID: UID,
}
masterPlaylist, err := video.retrieveMasterPlaylist(manifestURL)
if err != nil {
log.Fatalf("there was a problem retrieving master playlist: %v", err)
}
video.MasterPlaylist = *masterPlaylist
chosenManifest, chosenResolution, err := video.printResolutionDownloadMenu()
if err != nil {
log.Fatalf("there was a problem selecting a download option: %v", err)
}
var storedPaths []string
for _, media := range video.MasterPlaylist.Variants[0].Alternatives {
if media.Type == "AUDIO" {
manifestForResolution := fmt.Sprintf("%s/%s/manifest/%s", video.BaseURL, video.VideoUID, media.URI)
segmentPaths, err := video.downloadSegmentsFromManifest(manifestForResolution, chosenResolution, false, true, absoluteOutputPath)
if err != nil {
log.Fatalf("there was a problem downloading the segments: %v", err)
}
storedPath, err := video.concatenateTSFiles(segmentPaths, chosenResolution, true)
if err != nil {
log.Fatalf("there was a problem concatenating the segments: %v", err)
}
storedPaths = append(storedPaths, storedPath)
}
}
segmentPaths, err := video.downloadSegmentsFromManifest(chosenManifest, chosenResolution, false, false, absoluteOutputPath)
if err != nil {
log.Fatalf("there was a problem downloading the segments: %v", err)
}
storedPath, err := video.concatenateTSFiles(segmentPaths, chosenResolution, false)
if err != nil {
log.Fatalf("there was a problem concatenating the segments: %v", err)
}
storedPaths = append(storedPaths, storedPath)
// merge potential audio and video files together with ffmpeg
if len(storedPaths) >= 2 {
fmt.Printf("🌱 audio and video are being merged...")
video.mergeMP4FilesInDir(storedPaths)
}
video.renderOutputPaths(chosenResolution)
}
// downloadSegmentsFromManifest will download a complete video and individual segments
// from a particular manifest and returns the list of relative segment paths
func (v *Video) downloadSegmentsFromManifest(manifestURL, resolution string, skipDownload, isAudio bool, absoluteOutputPath string) ([]string, error) {
if isAudio {
fmt.Printf("🌱 Beginning audio download for [%s]\n", resolution)
} else {
fmt.Printf("🌱 Beginning video download for [%s]\n", resolution)
}
resp, err := http.Get(manifestURL)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
dataBuf := bytes.NewBuffer(body)
playlist, listType, err := m3u8.Decode(*dataBuf, false)
if err != nil {
return nil, err
}
concurrencyLimit := 5
sem := make(chan struct{}, concurrencyLimit)
var wg sync.WaitGroup
errChan := make(chan error, 1)
localSegmentPaths := []string{}
if listType == m3u8.MEDIA {
mediaPlaylist := playlist.(*m3u8.MediaPlaylist)
if mediaPlaylist.Map != nil {
segmentURL := mediaPlaylist.Map.URI
for strings.HasPrefix(segmentURL, "../") {
segmentURL = strings.TrimPrefix(segmentURL, "../")
}
completeSegmentURL := fmt.Sprintf("%s/%s", v.BaseURL, segmentURL)
segmentName, err := getSegmentName(completeSegmentURL)
if err != nil {
return nil, err
}
var localSegmentPath string
if isAudio {
localSegmentPath = fmt.Sprintf("%s/%s/segments/audio_%s", absoluteOutputPath, resolution, segmentName)
} else {
localSegmentPath = fmt.Sprintf("%s/%s/segments/video_%s", absoluteOutputPath, resolution, segmentName)
}
localSegmentPaths = append(localSegmentPaths, localSegmentPath)
if !skipDownload {
err = downloadFile(completeSegmentURL, localSegmentPath)
if err != nil {
return nil, err
}
}
}
bar := progressbar.Default(int64(len(mediaPlaylist.Segments)))
for _, segment := range mediaPlaylist.Segments {
if segment != nil {
segmentURL := segment.URI
for strings.HasPrefix(segmentURL, "../") {
segmentURL = strings.TrimPrefix(segmentURL, "../")
}
completeSegmentURL := fmt.Sprintf("%s/%s", v.BaseURL, segmentURL)
segmentName, err := getSegmentName(completeSegmentURL)
if err != nil {
return nil, err
}
var localSegmentPath string
if isAudio {
localSegmentPath = fmt.Sprintf("%s/segments/audio_%s", resolution, segmentName)
} else {
localSegmentPath = fmt.Sprintf("%s/segments/video_%s", resolution, segmentName)
}
localSegmentPaths = append(localSegmentPaths, localSegmentPath)
// parallelization for segment downloads
if !skipDownload {
sem <- struct{}{}
wg.Add(1)
go func() {
defer func() {
<-sem
wg.Done()
}()
err := downloadFile(completeSegmentURL, localSegmentPath)
if err != nil {
select {
case errChan <- err:
default:
}
}
}()
bar.Add(1)
}
} else {
bar.Add(1)
}
}
}
wg.Wait()
close(errChan)
if err := <-errChan; err != nil {
panic(err)
}
return localSegmentPaths, nil
}
// extractUIDAndPrefixURL will parse out the base URI for the customer as well
// as the UID for the video
func extractUIDAndPrefixURL(url string) (baseURL, uid string, err error) {
regex := regexp.MustCompile(`^(.+)/(.+)/manifest/video.m3u8$`)
matches := regex.FindStringSubmatch(url)
if len(matches) == 3 {
baseURI := matches[1]
uid := matches[2]
return baseURI, uid, nil
}
return "", "", errors.New("invalid input")
}
// retrieveMasterPlaylist gets the master m3u8
func (v *Video) retrieveMasterPlaylist(url string) (*m3u8.MasterPlaylist, error) {
resp, err := http.Get(url)
if err != nil {
return nil, err
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return nil, err
}
dataBuf := bytes.NewBuffer(body)
playlist, _, err := m3u8.Decode(*dataBuf, false)
if err != nil {
return nil, err
}
masterPlaylist := playlist.(*m3u8.MasterPlaylist)
return masterPlaylist, nil
}
// downloadFile will take a URL and download it to a predfined location
func downloadFile(url, relativePath string) error {
resp, err := http.Get(url)
if err != nil {
return err
}
defer resp.Body.Close()
targetDir := filepath.Dir(relativePath)
err = os.MkdirAll(targetDir, 0755)
if err != nil {
return err
}
out, err := os.Create(relativePath)
if err != nil {
return err
}
defer out.Close()
_, err = io.Copy(out, resp.Body)
return err
}
// getSegmentName will strip out the unique segment name from a segment
// request URL
func getSegmentName(urlStr string) (string, error) {
parsedURL, err := url.Parse(urlStr)
if err != nil {
return "", err
}
base := path.Base(parsedURL.Path)
segmentPattern := regexp.MustCompile(`(^seg_\d+|init)\.(ts|mp4)$`)
if segmentPattern.MatchString(base) {
return base, nil
}
return "", fmt.Errorf("segment name not found")
}
// concatenateTSFiles take all downloaded segments and concat into single, playable
// mp4 using ffmpeg
func (v *Video) concatenateTSFiles(filePaths []string, chosenResolution string, isAudio bool) (string, error) {
var outputFilename string
outputDir := chosenResolution
outputFilename = "video.mp4"
if isAudio {
outputFilename = "audio.mp4"
}
currentDirectory, err := os.Getwd()
if err != nil {
return "", err
}
for idx, file := range filePaths {
updatedPath := path.Join(currentDirectory, file)
filePaths[idx] = updatedPath
}
outputPath := path.Join(currentDirectory, outputDir, outputFilename)
outputFile, err := os.Create(outputPath)
if err != nil {
log.Fatal(err)
}
defer outputFile.Close()
for _, filePath := range filePaths {
inputFile, err := os.Open(filePath)
if err != nil {
log.Fatal(err)
}
cmd := exec.Command("cat")
cmd.Stdin = inputFile
cmd.Stdout = outputFile
err = cmd.Run()
if err != nil {
log.Fatal(err)
}
inputFile.Close()
}
return outputPath, nil
}
// printResolutionDownloadMenu lists available options to pull segments
// from an available resolution
func (v *Video) printResolutionDownloadMenu() (string, string, error) {
var userOption int
var manifestURLIdx []string
var resolutionIdx []string
reader := bufio.NewReader(os.Stdin)
resolutionURLs := make(map[string]string)
fmt.Printf("📋 Listing all available resolutions for video UID: %s\n\n", v.VideoUID)
for idx, variant := range v.MasterPlaylist.Variants {
manifestForResolution := fmt.Sprintf("%s/%s/manifest/%s", v.BaseURL, v.VideoUID, variant.URI)
resolutionURLs[variant.Resolution] = manifestForResolution
manifestURLIdx = append(manifestURLIdx, manifestForResolution)
resolutionIdx = append(resolutionIdx, variant.Resolution)
fmt.Printf("%d) %s\n", idx, variant.Resolution)
}
fmt.Printf("%d) 🚫 Exit\n", len(manifestURLIdx))
fmt.Print("\n📼 Select resolution: ")
input, err := reader.ReadString('\n')
if err != nil {
fmt.Println("Error reading input:", err)
return "", "", err
}
userOption, err = strconv.Atoi(strings.TrimSpace(input[:len(input)-1]))
if err != nil {
fmt.Println("Error converting input to integer:", err)
return "", "", err
}
if userOption == len(manifestURLIdx) {
fmt.Println("👋 Exiting Stream downloader")
os.Exit(1)
}
chosenResolution := resolutionIdx[userOption]
return resolutionURLs[chosenResolution], chosenResolution, nil
}
func (v *Video) renderOutputPaths(resolution string) {
fmt.Println("Complete!")
fmt.Println("---------------------------------------------")
fmt.Printf("Video output:\n./%s/\n\n", resolution)
fmt.Println("---------------------------------------------")
}
func (v *Video) mergeMP4FilesInDir(filePaths []string) error {
if len(filePaths) != 2 {
return fmt.Errorf("expected 2 MP4 files, found %d", len(filePaths))
}
file, err := os.Open(filePaths[0])
if err != nil {
return err
}
defer file.Close()
dirPath := filepath.Dir(file.Name())
cmd := exec.Command("ffmpeg", "-i", filePaths[0], "-i", filePaths[1], "-c:v", "copy", "-c:a", "copy", fmt.Sprintf("%s/merged.mp4", dirPath))
err = cmd.Run()
if err != nil {
return err
}
err = os.RemoveAll(filePaths[0])
if err != nil {
return err
}
err = os.RemoveAll(filePaths[1])
if err != nil {
return err
}
return nil
}
func fileExists(filePath string) bool {
_, err := os.Stat(filePath)
return !errors.Is(err, os.ErrNotExist)
}