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
Copy file name to clipboardExpand all lines: README.md
+14-3Lines changed: 14 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,6 @@ Inspired by [mariiaan/CmdPlay](https://github.com/mariiaan/CmdPlay) with some si
8
8
- allows you to go back and skip forward video
9
9
10
10
Plans for future:
11
-
- version for Linux
12
11
- better audio/video sync (maybe I'll switch from libao to PortAudio)
13
12
- more options
14
13
@@ -65,9 +64,21 @@ To get colors add "-c" option. Also when playing with colors use Windows Termina
65
64
```
66
65
67
66
# Compiling
68
-
To compile it you need Visual Studio. First you need to install vcpkg and integrate it with Visual Studio. Here is how to do it: https://vcpkg.io/en/getting-started.html. Then you need to install libav (ffmpeg's library) and libao.
67
+
68
+
## Windows
69
+
To compile it on Windows you need Visual Studio. First, install vcpkg and integrate it with Visual Studio. Here is how to do it: https://vcpkg.io/en/getting-started.html. Then you need to install libav (ffmpeg's library) and libao.
69
70
```
70
71
vcpkg install ffmpeg:x64-windows
71
72
vcpkg install libao:x64-windows
72
73
```
73
-
Now you can just open .sln file and everything should work (at least theoretically).
74
+
Now you can just open .sln file and everything should work (at least theoretically).\
75
+
76
+
## Linux
77
+
To compile it on Linux you need GCC. You also need the ffmpeg (libav) and libao libraries. If you're using apt package manager, you can install them with these commands:
0 commit comments