module DeeplSrt
Main module of DeeplSrt
Constants
- VERSION
Public Class Methods
deepl_srt(api_key, target_lang, input_path, result_path, from_line)
click to toggle source
# File lib/deepl_srt.rb, line 10 def self.deepl_srt(api_key, target_lang, input_path, result_path, from_line) srt_translate = SrtTranslate.new(api_key, target_lang, input_path, result_path) srt_translate.parse(from_line) end