Skip to content

Commit ddc5f74

Browse files
Refactor .gitignore and README; remove commented-out sections and update feature list
1 parent 1650f45 commit ddc5f74

3 files changed

Lines changed: 0 additions & 20 deletions

File tree

.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,13 @@ coverage.*
1414
*.coverprofile
1515
profile.cov
1616

17-
# Dependency directories (remove the comment below to include it)
18-
# vendor/
19-
2017
# Go workspace file
2118
go.work
2219
go.work.sum
2320

2421
# env file
2522
.env
2623

27-
# Editor/IDE
28-
# .idea/
29-
# .vscode/
30-
3124
.DS_Store
3225

3326
temp/

README.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,5 @@ The service consumes background jobs from Redis, downloads uploaded videos, tran
2525
- API callback on successful processing
2626
- Temporary workspace management
2727
- Dockerized for deployment
28-
29-
## Next
30-
3128
- Parallel transcoding using goroutines
3229
- Configurable concurrency with semaphores

internal/ffmpeg/hls.go

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,6 @@ func (s *Service) GenerateVariant(
2020
return err
2121
}
2222

23-
// scale := fmt.Sprintf(
24-
// "scale=%d:%d",
25-
// rendition.Width,
26-
// rendition.Height,
27-
// )
28-
2923
scale := fmt.Sprintf(
3024
"scale=-2:%d",
3125
rendition.Height,
@@ -62,10 +56,6 @@ func (s *Service) GenerateVariant(
6256
args...,
6357
)
6458

65-
// cmd.Stdout = os.Stdout
66-
// cmd.Stderr = os.Stderr
67-
// return cmd.Run()
68-
6959
var stderr bytes.Buffer
7060

7161
cmd.Stderr = &stderr

0 commit comments

Comments
 (0)