mirror of
https://github.com/cooperhammond/irs.git
synced 2024-12-22 17:35:28 +00:00
tagger edits
This commit is contained in:
parent
219cc4bc53
commit
cce8e2aeaf
|
@ -1,9 +1,5 @@
|
|||
version: 1.0
|
||||
shards:
|
||||
cr-taglib:
|
||||
github: teknomunk/cr-taglib
|
||||
commit: 5bfca75aaac31c0e4eee4c6e0d72c624af773c09
|
||||
|
||||
ydl_binaries:
|
||||
github: cooperhammond/ydl-binaries
|
||||
commit: 8a622bf9d2c0b848db8d8db2f46f09334a1f03f8
|
||||
|
|
|
@ -32,7 +32,7 @@ module Ripper
|
|||
options.keys.each do |option|
|
||||
command += " #{option} #{options[option]}"
|
||||
end
|
||||
|
||||
|
||||
system(command)
|
||||
end
|
||||
|
||||
|
|
|
@ -34,9 +34,12 @@ class Tags
|
|||
end
|
||||
|
||||
def save
|
||||
@query_args.push(%("#{@filename}"))
|
||||
@query_args.push(%("_#{@filename}"))
|
||||
command = @BIN_LOC.to_s + "/ffmpeg " + @query_args.join(" ")
|
||||
puts command
|
||||
system command
|
||||
|
||||
File.delete(@filename)
|
||||
File.rename("_" + @filename, @filename)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue