ffmprb 0.10.0 → 0.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/ffmprb/process/input/looping.rb +2 -2
- data/lib/ffmprb/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47073fdaab1b6fda78751fd6842cd65c24370b96
|
|
4
|
+
data.tar.gz: 92580ab7a3d5e2f2e4651305a9570de9156a8e94
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 84df8ed0c2802b285c5f1a6ee0a6cbb7793d3d2cd239eca7e6aa9f6af649cf04540d8ca4a6698549324cc70b6f2ee7dac354aa3d3262b5d8916fd6dc1ebf0220
|
|
7
|
+
data.tar.gz: 63cbc00bad936538d74e1190b47766804f6d583ff4f7061cf48a348fc9e5b11509f8cc8659e6e90751776157f34ecc85655be24787fac038fc9bec08a84e2bab
|
|
@@ -50,13 +50,13 @@ module Ffmprb
|
|
|
50
50
|
# NOTE replace the raw input io with a copy io, getting original fifo/file
|
|
51
51
|
intermediate_extname = Process.intermediate_channel_extname(video: @raw.io.channel?(:video), audio: @raw.io.channel?(:audio))
|
|
52
52
|
src_io = @raw.temporise_io!(intermediate_extname)
|
|
53
|
-
if src_io.extname != intermediate_extname
|
|
53
|
+
if src_io.extname != intermediate_extname # NOTE kinda like src_io is not suitable for piping
|
|
54
54
|
meh_src_io, src_io = src_io, File.temp_fifo(intermediate_extname)
|
|
55
55
|
Util::Thread.new "source converter" do
|
|
56
56
|
Ffmprb.process do
|
|
57
57
|
|
|
58
58
|
inp = input(meh_src_io)
|
|
59
|
-
output(src_io) do
|
|
59
|
+
output(src_io, video: nil, audio: nil) do # XXX this is not properly tested, unfortunately
|
|
60
60
|
lay inp
|
|
61
61
|
end
|
|
62
62
|
|
data/lib/ffmprb/version.rb
CHANGED