Compare commits

..

No commits in common. 'main' and 'v1' have entirely different histories.
main ... v1

  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 | Nikolay Kasyanov
Copyright (c) 2021 Unbewohnte
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

@ -1,10 +0,0 @@
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: 50,
MaxGOROUTINES: 200,
WIDTH: 210,
HEIGHT: 60,
ExtractionFPS: 30,

8
main.go

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

Loading…
Cancel
Save