aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/ffmpeg/__init__.py
Commit message (Collapse)AuthorAge
* Remove magic-doc-links from code.Gravatar Mark Daoust2018-08-16
| | | | | | | | | | This change contains no code changes. Only doc-strings. We can't use relative links in code files, so we don't have much choice but to link to tensorflow.org/ The deleted links were to docs that no longer exist. PiperOrigin-RevId: 209019572
* Remove duplicate importsGravatar Yong Tang2018-06-02
| | | | | | | | | | Inside ffmpeg/__init__.py the last import line: ``` from tensorflow.contrib.ffmpeg.ffmpeg_ops import decode_video ``` is a duplicate of the previous import. This fix removes the duplicate. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Fix merge conflictsGravatar Sourabh Bajaj2017-11-30
|\
| * Merge changes from github.Gravatar Sourabh Bajaj2017-11-30
| | | | | | | | PiperOrigin-RevId: 177526301
* | Add op `tf.contrib.ffmpeg.decode_video` (#13242)Gravatar Yong Tang2017-11-13
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add `tf.contrib.ffmpeg.decode_video` This fix tries to address the request raised in 6265 where it was not possible to decode video like the existing op of `decode_audio`. This fix adds the support of `tf.contrib.ffmpeg.decode_video` by invoking ffmpeg the same fashion as `tf.contrib.ffmpeg.decode_audo` so that video could be stored in the tensor `[frames, height, width, channel]`. At the moment, the output format is `RGB24`. This fix fixes 6265. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add python wrapper for `tf.contrib.ffmpeg.decode_video` This fix adds python wrapper for `tf.contrib.ffmpeg.decode_video` Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add test cases for `tf.contrib.ffmpeg.decode_video` This fix adds test cases for `tf.contrib.ffmpeg.decode_video`. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Address review feedback. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Move GetTempFilename to tensorflow/core/lib/io/path.h Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Disable GetTempFilename on Windows and Android for now. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Remove `.` from tmp file template if no extension And sanitize with clang-format Signed-off-by: Yong Tang <yong.tang.github@outlook.com> * Add missing header files. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
* Update module docstrings to (consistently) link to the guide in theGravatar A. Unique TensorFlower2017-02-24
| | | | | | body instead of the title (consistently). Also fix some malformed @{$...} references and titles starting with "##". Change: 148476930
* Seal ffmpeg interface and fix document generator to use ffmpeg build target.Gravatar Andrew Selle2017-02-13
| | | | Change: 147420392
* Documentation changes to adhere to new doc generatorGravatar Brennan Saeta2017-02-13
| | | | Change: 147402290
* Update copyright for 3p/tf.Gravatar A. Unique TensorFlower2016-06-02
| | | | Change: 123901292
* Updating FFmpeg docs and exposing them to gen_docs.sh.Gravatar A. Unique TensorFlower2016-05-18
| | | | Change: 122631114
* Adding an encode_audio op to the tensorflow/contrib/ffmpeg directory.Gravatar A. Unique TensorFlower2016-05-05
| | | | Change: 121584222
* Reenable check_futures_testGravatar Geoffrey Irving2016-04-29
| | | | | | Also fix a bunch of files that ended up without future imports while it was off. Change: 121161570
* Creates a new op: ffmpeg.decode_audio. This relies an an installed ffmpeg ↵Gravatar A. Unique TensorFlower2016-04-29
| | | | | | | binary and does not support google3 sandboxing. That will happen in a later CL. This is a second attempt at the same functionality. Since the first attempt, I've pulled the auto-initialization code out of the contrib/__init__.py directory, so nothing will be loaded by default. This may be appropriate for ops that don't work unless you've installed another app. Change: 121126709
* Internal only change.Gravatar A. Unique TensorFlower2016-04-28
| | | | Change: 121041673
* Creating a tf.contrib.ffmpeg.decode_audio_file op. So far, it supports mp3, ↵Gravatar A. Unique TensorFlower2016-04-28
wav, and ogg files. Change: 121026079