Compare commits

...

4 Commits
v1 ... main

Author SHA1 Message Date
Unbewohnte 85abc24772
Fixed imports 4 years ago
Unbewohnte f648e24353
Update jsonData.go 4 years ago
Unbewohnte cf1491961f
Added go.mod file 4 years ago
Unbewohnte bcb625fd2a
Update LICENSE 4 years ago
  1. 2
      LICENSE
  2. 10
      go.mod
  3. 2
      jsonData/jsonData.go
  4. 8
      main.go

2
LICENSE

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2021 Unbewohnte
Copyright (c) 2021 Unbewohnte | Nikolay Kasyanov
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

10
go.mod

@ -0,0 +1,10 @@
module github.com/unbewohnte/VideoToAscii
go 1.16
require (
github.com/faiface/beep v1.0.2
github.com/lijo-jose/gffmpeg v0.0.0-20190627063000-d2d4ff70c736
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
github.com/nsf/termbox-go v1.1.0
)

2
jsonData/jsonData.go

@ -28,7 +28,7 @@ const (
var (
defaults = Data{
MaxGOROUTINES: 200,
MaxGOROUTINES: 50,
WIDTH: 210,
HEIGHT: 60,
ExtractionFPS: 30,

8
main.go

@ -12,10 +12,10 @@ import (
"github.com/nsf/termbox-go"
"./audio"
"./extractor"
"./jsonData"
"./processor"
"github.com/unbewohnte/VideoToAscii/audio"
"github.com/unbewohnte/VideoToAscii/extractor"
"github.com/unbewohnte/VideoToAscii/jsonData"
"github.com/unbewohnte/VideoToAscii/processor"
)
var (

Loading…
Cancel
Save