Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.io.video
Commits
d612b601
Commit
d612b601
authored
May 26, 2014
by
André Anjos
💬
Browse files
xbob -> bob
parent
115d16be
Changes
40
Hide whitespace changes
Inline
Side-by-side
.travis.yml
View file @
d612b601
...
...
@@ -26,8 +26,8 @@ install:
-
"
python
bootstrap.py"
-
"
CFLAGS=-coverage
./bin/buildout"
script
:
-
"
./bin/python
-c
'from
x
bob.io.video
import
get_config;
print(get_config())'"
-
"
./bin/coverage
run
--source=
x
bob.io.video
./bin/nosetests
-sv"
-
"
./bin/python
-c
'from
bob.io.video
import
get_config;
print(get_config())'"
-
"
./bin/coverage
run
--source=bob.io.video
./bin/nosetests
-sv"
-
"
./bin/sphinx-build
-b
doctest
doc
sphinx"
-
"
./bin/sphinx-build
-b
html
doc
sphinx"
after_success
:
...
...
MANIFEST.in
View file @
d612b601
include LICENSE README.rst bootstrap.py buildout.cfg
recursive-include doc conf.py *.rst
recursive-include
x
bob *.cpp *.h
recursive-include
x
bob/io/video/data *.*
recursive-include
x
bob/io/video/fonts *.txt *.ttf
recursive-include bob *.cpp *.h
recursive-include bob/io/video/data *.*
recursive-include bob/io/video/fonts *.txt *.ttf
README.rst
View file @
d612b601
...
...
@@ -2,16 +2,16 @@
.. Andre Anjos <andre.anjos@idiap.ch>
.. Thu 29 Aug 2013 16:07:57 CEST
.. image:: https://travis-ci.org/bioidiap/
x
bob.io.video.svg?branch=master
:target: https://travis-ci.org/bioidiap/
x
bob.io.video
.. image:: https://coveralls.io/repos/bioidiap/
x
bob.io.video/badge.png
:target: https://coveralls.io/r/bioidiap/
x
bob.io.video
.. image:: http://img.shields.io/github/tag/bioidiap/
x
bob.io.video.png
:target: https://github.com/bioidiap/
x
bob.io.video
.. image:: http://img.shields.io/pypi/v/
x
bob.io.video.png
:target: https://pypi.python.org/pypi/
x
bob.io.video
.. image:: http://img.shields.io/pypi/dm/
x
bob.io.video.png
:target: https://pypi.python.org/pypi/
x
bob.io.video
.. image:: https://travis-ci.org/bioidiap/bob.io.video.svg?branch=master
:target: https://travis-ci.org/bioidiap/bob.io.video
.. image:: https://coveralls.io/repos/bioidiap/bob.io.video/badge.png
:target: https://coveralls.io/r/bioidiap/bob.io.video
.. image:: http://img.shields.io/github/tag/bioidiap/bob.io.video.png
:target: https://github.com/bioidiap/bob.io.video
.. image:: http://img.shields.io/pypi/v/bob.io.video.png
:target: https://pypi.python.org/pypi/bob.io.video
.. image:: http://img.shields.io/pypi/dm/bob.io.video.png
:target: https://pypi.python.org/pypi/bob.io.video
==================================
Support for Video I/O in bob::io
...
...
@@ -82,18 +82,18 @@ Usage
In order to enable support for video file reading and writing in your
application, make sure to import this module, before calling
:py:func:`
x
bob.io.base.open` or similar::
:py:func:`bob.io.base.open` or similar::
>>> import
x
bob.io.base
>>> import
x
bob.io.video
>>>
x
bob.io.base.open('myfile.avi', 'r')
>>> import bob.io.base
>>> import bob.io.video
>>> bob.io.base.open('myfile.avi', 'r')
Testing
-------
You can run a set of tests using the nose test runner::
$ nosetests -sv
x
bob.io.video
$ nosetests -sv bob.io.video
.. warning::
...
...
@@ -110,7 +110,7 @@ You can run our documentation tests using sphinx itself::
You can test overall test coverage with::
$ nosetests --with-coverage --cover-package=
x
bob.io.video
$ nosetests --with-coverage --cover-package=bob.io.video
The ``coverage`` egg must be installed for this to work properly.
...
...
x
bob/__init__.py
→
bob/__init__.py
View file @
d612b601
File moved
x
bob/io/__init__.py
→
bob/io/__init__.py
View file @
d612b601
File moved
x
bob/io/video/__init__.py
→
bob/io/video/__init__.py
View file @
d612b601
File moved
x
bob/io/video/bobskin.cpp
→
bob/io/video/bobskin.cpp
View file @
d612b601
File moved
x
bob/io/video/bobskin.h
→
bob/io/video/bobskin.h
View file @
d612b601
...
...
@@ -14,7 +14,7 @@
#include
<bob/core/array.h>
extern
"C"
{
#include
<
x
bob.blitz/capi.h>
#include
<bob.blitz/capi.h>
}
...
...
x
bob/io/video/cpp/reader.cpp
→
bob/io/video/cpp/reader.cpp
View file @
d612b601
File moved
x
bob/io/video/cpp/reader.h
→
bob/io/video/cpp/reader.h
View file @
d612b601
File moved
x
bob/io/video/cpp/utils.cpp
→
bob/io/video/cpp/utils.cpp
View file @
d612b601
File moved
x
bob/io/video/cpp/utils.h
→
bob/io/video/cpp/utils.h
View file @
d612b601
File moved
x
bob/io/video/cpp/writer.cpp
→
bob/io/video/cpp/writer.cpp
View file @
d612b601
File moved
x
bob/io/video/cpp/writer.h
→
bob/io/video/cpp/writer.h
View file @
d612b601
File moved
x
bob/io/video/data/test.mov
→
bob/io/video/data/test.mov
View file @
d612b601
File moved
x
bob/io/video/data/test_h264.mov
→
bob/io/video/data/test_h264.mov
View file @
d612b601
File moved
x
bob/io/video/file.cpp
→
bob/io/video/file.cpp
View file @
d612b601
File moved
x
bob/io/video/file.h
→
bob/io/video/file.h
View file @
d612b601
File moved
x
bob/io/video/fonts/bold.ttf
→
bob/io/video/fonts/bold.ttf
View file @
d612b601
File moved
x
bob/io/video/fonts/bold_italic.ttf
→
bob/io/video/fonts/bold_italic.ttf
View file @
d612b601
File moved
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment