Skip to content

Commit

Permalink
Merge pull request #22 from vansante/fix-readme
Browse files Browse the repository at this point in the history
Fix readme a bit
  • Loading branch information
vansante authored Jun 21, 2020
2 parents 4b189b6 + 0ad8794 commit 11a2c48
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 11a2c48

Please sign in to comment.