ytdl 0.0.1 → 0.2.0
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/youtube_dl/output_parser.rb +7 -3
- data/lib/youtube_dl/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3169f52a4e14a6c0d1dbd0f750662bf5314b200c4c59608b4ee7b91e6d080b4
|
|
4
|
+
data.tar.gz: 665016380da167e6e0b04a863ae9ca0f63adb7c685f3be583b86ca1a6e27979a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc039c959c5c25e0dc542f4114bb3cd28895621c2c94adadd91d40b0aacdaad775901617d99ffa295b3626c3a53179d16530184d68d18b0572d5bef056a6e13f
|
|
7
|
+
data.tar.gz: 710aae16935afdea7804d468df869b3e005b207e06bc1b3b37004549d63f03f9c38ac9b43d24fcedd1f16a2d7cda4161e10a8d98f8e8daa6c8933be51adfe8e0
|
|
@@ -90,15 +90,19 @@ module YoutubeDL
|
|
|
90
90
|
|
|
91
91
|
def info_json_regex
|
|
92
92
|
%r{
|
|
93
|
-
\[info\] \s Writing \s video
|
|
93
|
+
\[info\] \s Writing \s video .*? \s metadata \s as \s JSON \s to: \s
|
|
94
94
|
(?<info_json>.*)
|
|
95
95
|
}x
|
|
96
96
|
end
|
|
97
97
|
|
|
98
98
|
def error_regex
|
|
99
99
|
%r{
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
(
|
|
101
|
+
ERROR: \s
|
|
102
|
+
(?<error>.*)
|
|
103
|
+
) | (?<error>
|
|
104
|
+
.*: \s not \s found
|
|
105
|
+
)
|
|
102
106
|
}x
|
|
103
107
|
end
|
|
104
108
|
|
data/lib/youtube_dl/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ytdl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Max Hollmann
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-03-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: dry-configurable
|
|
@@ -76,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
77
|
version: '0'
|
|
78
78
|
requirements: []
|
|
79
|
-
rubygems_version: 3.
|
|
79
|
+
rubygems_version: 3.4.6
|
|
80
80
|
signing_key:
|
|
81
81
|
specification_version: 4
|
|
82
82
|
summary: A wrapper for youtube-dl with progress callbacks
|