Skip to content

Commit 4b33265

Browse files
committed
update README
1 parent e7ccbdd commit 4b33265

File tree

1 file changed

+16
-10
lines changed

1 file changed

+16
-10
lines changed

README.md

+16-10
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
1-
ffprobe python module
1+
ffprobe-python module
22
=====================
33

44
A wrapper around the ffprobe command to extract metadata from media files.
55

66
Usage::
77

8-
#!/usr/bin/env python
8+
```python
9+
#!/usr/bin/env python
910

10-
from ffprobe3 import FFProbe
11+
from ffprobe import FFProbe
1112

12-
metadata=FFProbe('test-media-file.mov')
13+
metadata=FFProbe('test-media-file.mov')
1314

14-
for stream in metadata.streams:
15-
if stream.is_video():
16-
print('Stream contains {} frames.'.format(stream.frames()))
15+
for stream in metadata.streams:
16+
if stream.is_video():
17+
print('Stream contains {} frames.'.format(stream.frames()))
1718

19+
```
20+
21+
This software is now maintained by Mark Ma <[email protected]>.
22+
23+
---
1824

1925
(The MIT License)
2026

21-
Copyright 2013 Simon Hargreaves <[email protected]>
22-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
27+
Copyright 2013 Simon Hargreaves <[email protected]>
28+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the Software), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
2329

2430
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2531

26-
THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32+
THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)