Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: third_party/v4l2capture/setup.py

Issue 123743004: Add v4l2capture to support webcam-based speed index in telemetry (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add pauljensen to OWNERS Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/v4l2capture/README.chromium ('k') | third_party/v4l2capture/v4l2capture.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/v4l2capture/setup.py
diff --git a/third_party/v4l2capture/setup.py b/third_party/v4l2capture/setup.py
new file mode 100755
index 0000000000000000000000000000000000000000..54d426ee0936a6ff9539a43f9339e999052a4260
--- /dev/null
+++ b/third_party/v4l2capture/setup.py
@@ -0,0 +1,28 @@
+#!/usr/bin/python
+#
+# python-v4l2capture
+#
+# 2009, 2010, 2011 Fredrik Portstrom
+#
+# I, the copyright holder of this file, hereby release it into the
+# public domain. This applies worldwide. In case this is not legally
+# possible: I grant anyone the right to use this work for any
+# purpose, without any conditions, unless such conditions are
+# required by law.
+
+from distutils.core import Extension, setup
+setup(
+ name = "v4l2capture",
+ version = "1.4",
+ author = "Fredrik Portstrom",
+ author_email = "fredrik@jemla.se",
+ url = "http://fredrik.jemla.eu/v4l2capture",
+ description = "Capture video with video4linux2",
+ long_description = "python-v4l2capture is a slim and easy to use Python "
+ "extension for capturing video with video4linux2.",
+ license = "Public Domain",
+ classifiers = [
+ "License :: Public Domain",
+ "Programming Language :: C"],
+ ext_modules = [
+ Extension("v4l2capture", ["v4l2capture.c"])])
« no previous file with comments | « third_party/v4l2capture/README.chromium ('k') | third_party/v4l2capture/v4l2capture.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698