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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: afd76dfa3efb28bdc494678ca4e04ff6eb02abb6
4
- data.tar.gz: ec23bc1bc45197f7850570317adbc040014120a5
3
+ metadata.gz: 47073fdaab1b6fda78751fd6842cd65c24370b96
4
+ data.tar.gz: 92580ab7a3d5e2f2e4651305a9570de9156a8e94
5
5
  SHA512:
6
- metadata.gz: 18639c467cfd887e03972453e6ce3ac3a6801101d4052a50bbdb8f739be15f0c9ebdc01e17ba0e6ff33288f2ce854a3ce32c45c87ef77599e8921498a8d536a6
7
- data.tar.gz: dfb7c6405791d6766a31773a3d5bf759f27a3aaeafb0feccc42889d41d60cdbce64c6305330004e9741eae4ee8000b6b7e1bdf89446db4cc59fe2210c597b650
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
 
@@ -1,5 +1,5 @@
1
1
  module Ffmprb
2
- VERSION = '0.10.0'
2
+ VERSION = '0.10.1'
3
3
 
4
4
 
5
5
  FIREBASE_AVAILABLE =
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffmprb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.10.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - showbox.com