You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A blazing fast, feature complete and production ready Go library for parsing and analysing of Counter-Strike: Global Offensive (CS:GO) demos (aka replays).
3
+
A blazing fast, feature complete and production ready Go library for parsing and analysing of Counter-Strike 2 and Counter-Strike: Global Offensive (CS:GO) demos (aka replays).
4
4
5
5
Counter-Strike 2 support is experimental.
6
6
@@ -23,12 +23,10 @@ For business inquiries please use the contact information found on the [GitHub p
23
23
24
24
## Go Get
25
25
26
-
### CS2 - ⚠️ Experimental
26
+
### Counter-Strike 2
27
27
28
28
go get -u github.com/markus-wa/demoinfocs-golang/v4/pkg/demoinfocs
29
29
30
-
⚠️ The CS2 / v4 API may change in backwards incompatible ways without warning.
31
-
32
30
### CS:GO
33
31
34
32
go get -u github.com/markus-wa/demoinfocs-golang/v3/pkg/demoinfocs
@@ -67,11 +65,7 @@ You can download the latest version of Go [here](https://golang.org/).
67
65
```terminal
68
66
mkdir my-project
69
67
cd my-project
70
-
71
-
go mod init github.com/<YOUR_GITHUB_USER>/my-project
72
-
# the module name (github.com/<YOUR_GITHUB_USER>/my-project) can always be changed later
73
-
# you can also put example.com/my-project or anything else if you don't plan to publish your project
74
-
68
+
go mod init my-project
75
69
go get -u github.com/markus-wa/demoinfocs-golang/v4/pkg/demoinfocs
Copy file name to clipboardExpand all lines: examples/voice-capture/README.md
+6Lines changed: 6 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,11 @@
1
1
# Capturing Voice Data
2
2
3
+
## CS2
4
+
5
+
See https://github.com/DandrewsDev/CS2VoiceData
6
+
7
+
## CS:GO
8
+
3
9
This example shows how to use the library to capture voice audio from demos.
4
10
5
11
Since the build process is somewhat different from the library itself (due to usage of CGO), the example has it's own repository which you can find here:
0 commit comments