We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ddc80b commit 3f7b1e5Copy full SHA for 3f7b1e5
1 file changed
vcodec.go
@@ -1,3 +1,4 @@
1
+// vcodec by Squeeze69
2
package main
3
4
import (
@@ -14,6 +15,10 @@ import (
14
15
var exitValue = 0
16
17
func main() {
18
+ if len(os.Args) < 3 {
19
+ fmt.Print("Usage: vcodec riff_file codec1 codec2 ...\ncodec name case DO matter\n")
20
+ os.Exit(2)
21
+ }
22
main2()
23
fmt.Printf("Exitvalue: %d\n", exitValue)
24
os.Exit(exitValue)
0 commit comments