109 Commits

Author SHA1 Message Date
Karl Kroening
57abf6e86e Change selector syntax from [:a] to [a]; remove map operator (for now) 2018-03-11 21:27:26 -07:00
Karl Kroening
6169b89321 Minor improvements (formatting, etc) 2018-03-11 20:03:06 -07:00
Karl Kroening
809ab6cd17 Merge remote-tracking branch 'origin/master' into stream_selectors 2018-03-10 19:01:57 -08:00
Karl Kroening
a029d7aacc
Merge pull request #46 from Depaulicious/asplit_filter
Add `asplit` filter
2018-01-27 22:22:19 -08:00
Karl Kroening
6ebda44a63
Merge pull request #58 from 153957/patch-1
Cleanup graph source file after rendering graph to pdf
2018-01-27 22:21:27 -08:00
Davide Depau
f1e418be4c
Add filter_multi_output to __all__ so it's available in API 2018-01-26 14:38:57 +01:00
Arne de Laat
50c4a8985d
Cleanup graph source file after rendering graph to pdf 2018-01-16 22:10:41 +01:00
Davide Depau
ef9b102676
Merge branch 'master' into stream_selectors 2018-01-12 21:55:38 +01:00
Davide Depau
c87fd5cf56
Add tests for asplit filter 2018-01-10 10:38:42 +01:00
Davide Depau
e7fbb288d4
Fix name of asplit filter 2018-01-10 10:35:23 +01:00
Davide Depau
ea90d91dfe
Expand unclear one-line implicit conditional statement 2018-01-09 16:04:33 +01:00
Davide Depau
df9bd7316f
Replace past.builtins.basestring with a custom one to workaround bug in Ubuntu's Python3 2018-01-09 16:04:33 +01:00
Davide Depau
497105f929
Reimplement .map logic making Node immutable 2018-01-09 16:04:24 +01:00
Davide Depau
861980db0b
Simplify, expand and explain complicated loops in dag.py 2018-01-09 15:47:09 +01:00
Davide Depau
783bdbdb37
Remove unused imports 2018-01-09 15:47:09 +01:00
Davide Depau
1a46471553
Remove useless _get_stream_name function 2018-01-09 15:47:09 +01:00
Davide Depau
1070b3e51b
Remove commented code 2018-01-09 15:47:09 +01:00
Davide Depau
03762a5cc5
Expand complicated format + list comprehension into its own function 2018-01-09 15:47:09 +01:00
Davide Depau
b4503a183c
Allow output to be created without mapped streams 2018-01-09 15:47:09 +01:00
Davide Depau
db83137f53
Add tests for stream selection and mapping 2018-01-09 15:47:08 +01:00
Davide Depau
90652306ea
Explicitly include -map [0] when output has multiple mapped streams 2018-01-09 15:47:08 +01:00
Davide Depau
0d95d9b58d
Implement .map() operator, allow multiple streams in .output() 2018-01-09 15:47:08 +01:00
Davide Depau
aa0b0bbd03
Generate multiple -map for outputs with multiple incoming edges 2018-01-09 15:47:08 +01:00
Davide Depau
44091f8a4a
Allow outputs to be created empty; streams can be mapped later 2018-01-09 15:47:08 +01:00
Davide Depau
c2c6a864d2
Make sure item is instance of slice in __getitem__ 2018-01-09 15:47:08 +01:00
Davide Depau
3f671218a6
Take into account upstream selectors in topological sort, get_args() and view() 2018-01-09 15:47:08 +01:00
Davide Depau
f6d014540a
Add __getitem__ to Stream too, simplify selector syntax
* No need to have a split node in between, you can just do stream[:"a"]
* Split nodes are still needed to do actual splitting.
2018-01-09 15:47:08 +01:00
Davide Depau
646a0dcae8
Implement selectors in Stream and Node
* Selectors are used just like 'split', i.e. `stream.split()[0:"audio"]`
2018-01-09 15:47:08 +01:00
Davide Depau
273cf8f205
Allow extra, unhashed objects to be added to the incoming_edge_map 2018-01-09 15:47:07 +01:00
Noah Stier
fabd401e96
Add 'crop' filter 2018-01-09 15:47:06 +01:00
Karl Kroening
338a1286f7 Fix issue with start_time=0 2018-01-07 23:26:53 -08:00
Karl Kroening
f818cffc55 Add compile operator 2018-01-07 02:28:13 -08:00
Karl Kroening
1c09e1c39f Fix drawtext documentation 2018-01-06 11:35:20 -08:00
Davide Depau
755fb843de
Also provide the number of splits to asplit filter 2017-12-22 17:11:23 +01:00
Davide Depau
7bc77ff714
Add asplit filter 2017-12-22 16:22:41 +01:00
Noah Stier
00fb91a4c5 Add 'crop' filter 2017-10-05 23:50:38 -07:00
Karl Kroening
0d60de3fe9 Merge branch 'feature/17' into feature/18 2017-07-12 02:10:51 -06:00
Karl Kroening
4640adabe0 Futurize 2017-07-12 02:10:44 -06:00
Karl Kroening
35cd113da0 Merge branch 'feature/17' into feature/18 2017-07-12 02:09:24 -06:00
Karl Kroening
7b2d8b63fc Merge remote-tracking branch 'origin/master' into feature/17
Conflicts:
	ffmpeg/_filters.py
	ffmpeg/_utils.py
	ffmpeg/nodes.py
	ffmpeg/tests/test_ffmpeg.py
2017-07-12 02:08:19 -06:00
Karl Kroening
fbf01f24ab Remove extra sample data 2017-07-12 01:19:28 -06:00
Karl Kroening
c19dcaca30 Fix drawbox=>drawtext 2017-07-12 01:18:48 -06:00
Karl Kroening
5f4bfd1fb3 Robustly handle string escaping 2017-07-12 00:33:43 -06:00
Karl Kroening
cf1b7bfd4b #17: auto-generate split output count 2017-07-10 23:38:30 -06:00
Davide Depau
efc0104ae4 escape "[]=;:," characters in filter arguments to avoid early termination 2017-07-10 22:15:52 +02:00
Karl Kroening
2d6b0d4730 #18: use get_stream_spec_nodes in view 2017-07-09 16:00:41 -06:00
Karl Kroening
4af484feee Merge branch 'feature/17' into feature/18 2017-07-09 15:52:41 -06:00
Karl Kroening
5d78a2595d #17: fix merge_outputs; allow stream_spec in get_args+run 2017-07-09 15:50:51 -06:00
Karl Kroening
13d9e2c3fa Merge branch 'feature/17' into feature/18 2017-07-06 03:42:09 -06:00
Karl Kroening
c6e2f05e5b #17: add short_repr for input and output nodes 2017-07-06 03:42:03 -06:00