Skip to content

Commit

Permalink
Fix readme a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
vansante committed Jun 21, 2020
1 parent 4b189b6 commit 0ad8794
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if err != nil {
}
```

To get a quick the quick data on a video file that is accessible via HTTP, you can use the same
To get the ffprobe data for a video file that is accessible via HTTP, you can use the same
command, but with an HTTP URL.

To get the data of a file you have an `io.Reader` for, use:
Expand All @@ -40,7 +40,7 @@ defer cancelFn()

fileReader, err := os.Open("/path/to/file.mp4")
if err != nil {
t.Errorf("Error opening test file: %v", err)
log.Panicf("Error opening test file: %v", err)
}

data, err := ffprobe.ProbeReader(ctx, fileReader)
Expand Down

0 comments on commit 0ad8794

Please sign in to comment.