annotate whisper.xml @ 0:2706ea308f94 draft

planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
author bgruening
date Wed, 24 Apr 2024 22:10:03 +0000
parents
children 02fa7b2245e6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
1 <tool id="whisper" name="Speach to Text" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="20.01" license="MIT">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
2 <description>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
3 Transcribe audio or video files to text using the OpenAI Whisper
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
4 </description>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
5 <macros>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
6 <token name="@TOOL_VERSION@">20231117</token>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
7 <token name="@VERSION_SUFFIX@">0</token>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
8 </macros>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
9 <requirements>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
10 <container type="docker">quay.io/galaxy/whisper:20231117</container>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
11 </requirements>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
12 <command detect_errors="exit_code"><![CDATA[
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
13 mkdir -p ./outs ./models &&
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
14 ln -s '$infile' ./input.${infile.ext} &&
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
15 whisper ./input.${infile.ext}
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
16 --model $model
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
17 --output_dir ./outs
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
18 --threads \${GALAXY_SLOTS:-2}
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
19 --task transcribe
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
20 --output_format all
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
21 --verbose False
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
22 --model_dir \${OPENAI_WHISPER_MODEL_DIR:-./models}
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
23 #if str($language).strip():
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
24 --language '$language'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
25 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
26 #if $advanced.temperature:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
27 --temperature '$temperature'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
28 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
29 #if $advanced.best_of:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
30 --best_of '$advanced.best_of'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
31 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
32 #if $advanced.beam_size:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
33 --beam_size '$advanced.beam_size'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
34 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
35 #if $advanced.patience:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
36 --patience '$advanced.patience'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
37 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
38 #if $advanced.length_penalty:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
39 --length_penalty '$advanced.length_penalty'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
40 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
41 #if $advanced.suppress_tokens:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
42 --suppress_tokens '$advanced.suppress_tokens'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
43 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
44 #if str($advanced.initial_prompt).strip():
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
45 --initial_prompt '$advanced.initial_prompt'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
46 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
47 #if $advanced.condition_on_previous_text:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
48 --condition_on_previous_text '$advanced.condition_on_previous_text'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
49 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
50 #if $advanced.temperature_increment_on_fallback:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
51 --temperature_increment_on_fallback '$advanced.temperature_increment_on_fallback'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
52 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
53 #if $advanced.compression_ratio_threshold:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
54 --compression_ratio_threshold '$advanced.compression_ratio_threshold'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
55 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
56 #if $advanced.logprob_threshold:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
57 --logprob_threshold '$advanced.logprob_threshold'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
58 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
59 #if $advanced.no_speech_threshold:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
60 --no_speech_threshold '$advanced.no_speech_threshold'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
61 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
62 #if $advanced.word_timestamps.word_timestamps == "True":
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
63 --word_timestamps '$advanced.word_timestamps.word_timestamps'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
64 #if $advanced.word_timestamps.highlight_words:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
65 --highlight_words '$advanced.word_timestamps.highlight_words'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
66 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
67 #if $advanced.word_timestamps.max_line_width:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
68 --max_line_width '$advanced.word_timestamps.max_line_width'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
69 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
70 #if $advanced.word_timestamps.max_line_count:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
71 --max_line_count '$advanced.word_timestamps.max_line_count'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
72 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
73 #if $advanced.word_timestamps.max_words_per_line:
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
74 --max_words_per_line '$advanced.word_timestamps.max_words_per_line'
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
75 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
76 #end if
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
77 ]]>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
78 </command>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
79 <environment_variables>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
80 <!-- we will disable the progress bar which is printed to stderr -->
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
81 <environment_variable name="TQDM_DISABLE">1</environment_variable>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
82 </environment_variables>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
83 <inputs>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
84 <param name="infile" type="data" format="wav,mp3,mkv,flv,mpg,ogg,wma,mp4" label="Select audio or video file" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
85 <param argument="--model" type="select" label="Speech to Text Model">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
86 <option value="tiny">Tiny (~32x faster than the large model)</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
87 <option value="base">Base (~16x faster than the large model)</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
88 <option value="small" selected="true">Small (~6x faster than the large model)</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
89 <option value="medium">Medium (~2x faster than the large model)</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
90 <option value="large">Large</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
91 </param>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
92 <param argument="--language" type="select" label="Language">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
93 <option value="">Auto (detect language)</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
94 <option value="Afrikaans">Afrikaans</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
95 <option value="Albanian">Albanian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
96 <option value="Amharic">Amharic</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
97 <option value="Arabic">Arabic</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
98 <option value="Armenian">Armenian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
99 <option value="Assamese">Assamese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
100 <option value="Azerbaijani">Azerbaijani</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
101 <option value="Bashkir">Bashkir</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
102 <option value="Basque">Basque</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
103 <option value="Belarusian">Belarusian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
104 <option value="Bengali">Bengali</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
105 <option value="Bosnian">Bosnian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
106 <option value="Breton">Breton</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
107 <option value="Bulgarian">Bulgarian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
108 <option value="Burmese">Burmese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
109 <option value="Cantonese">Cantonese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
110 <option value="Castilian">Castilian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
111 <option value="Catalan">Catalan</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
112 <option value="Chinese">Chinese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
113 <option value="Croatian">Croatian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
114 <option value="Czech">Czech</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
115 <option value="Danish">Danish</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
116 <option value="Dutch">Dutch</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
117 <option value="English">English</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
118 <option value="Estonian">Estonian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
119 <option value="Faroese">Faroese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
120 <option value="Finnish">Finnish</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
121 <option value="Flemish">Flemish</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
122 <option value="French">French</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
123 <option value="Galician">Galician</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
124 <option value="Georgian">Georgian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
125 <option value="German">German</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
126 <option value="Greek">Greek</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
127 <option value="Gujarati">Gujarati</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
128 <option value="Haitian">Haitian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
129 <option value="Haitian Creole">Haitian Creole</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
130 <option value="Hausa">Hausa</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
131 <option value="Hawaiian">Hawaiian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
132 <option value="Hebrew">Hebrew</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
133 <option value="Hindi">Hindi</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
134 <option value="Hungarian">Hungarian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
135 <option value="Icelandic">Icelandic</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
136 <option value="Indonesian">Indonesian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
137 <option value="Italian">Italian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
138 <option value="Japanese">Japanese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
139 <option value="Javanese">Javanese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
140 <option value="Kannada">Kannada</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
141 <option value="Kazakh">Kazakh</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
142 <option value="Khmer">Khmer</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
143 <option value="Korean">Korean</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
144 <option value="Lao">Lao</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
145 <option value="Latin">Latin</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
146 <option value="Latvian">Latvian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
147 <option value="Letzeburgesch">Letzeburgesch</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
148 <option value="Lingala">Lingala</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
149 <option value="Lithuanian">Lithuanian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
150 <option value="Luxembourgish">Luxembourgish</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
151 <option value="Macedonian">Macedonian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
152 <option value="Malagasy">Malagasy</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
153 <option value="Malay">Malay</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
154 <option value="Malayalam">Malayalam</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
155 <option value="Maltese">Maltese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
156 <option value="Mandarin">Mandarin</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
157 <option value="Maori">Maori</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
158 <option value="Marathi">Marathi</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
159 <option value="Moldavian">Moldavian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
160 <option value="Moldovan">Moldovan</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
161 <option value="Mongolian">Mongolian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
162 <option value="Myanmar">Myanmar</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
163 <option value="Nepali">Nepali</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
164 <option value="Norwegian">Norwegian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
165 <option value="Nynorsk">Nynorsk</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
166 <option value="Occitan">Occitan</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
167 <option value="Panjabi">Panjabi</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
168 <option value="Pashto">Pashto</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
169 <option value="Persian">Persian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
170 <option value="Polish">Polish</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
171 <option value="Portuguese">Portuguese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
172 <option value="Punjabi">Punjabi</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
173 <option value="Pushto">Pushto</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
174 <option value="Romanian">Romanian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
175 <option value="Russian">Russian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
176 <option value="Sanskrit">Sanskrit</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
177 <option value="Serbian">Serbian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
178 <option value="Shona">Shona</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
179 <option value="Sindhi">Sindhi</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
180 <option value="Sinhala">Sinhala</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
181 <option value="Sinhalese">Sinhalese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
182 <option value="Slovak">Slovak</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
183 <option value="Slovenian">Slovenian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
184 <option value="Somali">Somali</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
185 <option value="Spanish">Spanish</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
186 <option value="Sundanese">Sundanese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
187 <option value="Swahili">Swahili</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
188 <option value="Swedish">Swedish</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
189 <option value="Tagalog">Tagalog</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
190 <option value="Tajik">Tajik</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
191 <option value="Tamil">Tamil</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
192 <option value="Tatar">Tatar</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
193 <option value="Telugu">Telugu</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
194 <option value="Thai">Thai</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
195 <option value="Tibetan">Tibetan</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
196 <option value="Turkish">Turkish</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
197 <option value="Turkmen">Turkmen</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
198 <option value="Ukrainian">Ukrainian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
199 <option value="Urdu">Urdu</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
200 <option value="Uzbek">Uzbek</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
201 <option value="Valencian">Valencian</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
202 <option value="Vietnamese">Vietnamese</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
203 <option value="Welsh">Welsh</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
204 <option value="Yiddish">Yiddish</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
205 <option value="Yoruba">Yoruba</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
206 </param>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
207 <param argument="--output_format" type="select" label="Output Format" multiple="true">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
208 <option value="txt" selected="true">Text</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
209 <option value="json">JSON</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
210 <option value="srt">SubRip</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
211 <option value="vtt">WebVTT</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
212 <option value="tsv">Tab-separated values</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
213 </param>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
214 <section name="advanced" title="Advanced Options">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
215 <param argument="--temperature" type="integer" value="0" optional="true" label="Temperature" help="Temperature to use for sampling" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
216 <param argument="--best_of" type="integer" value="5" optional="true" label="Best of" help="Number of candidates when sampling with non-zero temperature" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
217 <param argument="--beam_size" type="integer" value="5" optional="true" label="Beam size" help="Number of beams in beam search, only applicable when temperature is zero" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
218 <param argument="--patience" type="float" value="" optional="true" label="Optional patience value to use in beam decoding" help="As in https://arxiv.org/abs/2204.05424, the default (1.0) is equivalent to conventional beam search" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
219 <param argument="--length_penalty" type="float" value="" optional="true" label="Optional token length penalty coefficient (alpha)" help="As in https://arxiv.org/abs/1609.08144, uses simple length normalization by default" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
220 <param argument="--suppress_tokens" type="integer" value="-1" optional="true" label="Suppress tokens" help="Comma-separated list of token ids to suppress during sampling; -1 will suppress most special characters except common punctuations" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
221 <param argument="--initial_prompt" type="text" value="" optional="true" label="Initial prompt" help="Optional text to provide as a prompt for the first window" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
222 <param argument="--condition_on_previous_text" type="boolean" truevalue="True" falsevalue="False" checked="true" optional="true" label="Condition on previous text" help="If True, provide the previous output of the model as a prompt for the next window; disabling may make the text inconsistent across windows, but the model becomes less prone to getting stuck in a failure loop" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
223 <param argument="--temperature_increment_on_fallback" type="float" value="0.2" optional="true" label="Temperature increment on fallback" help="Temperature to increase when falling back when the decoding fails to meet either of the thresholds below" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
224 <param argument="--compression_ratio_threshold" type="float" value="2.4" optional="true" label="Compression ratio threshold" help="If the gzip compression ratio is higher than this value, treat the decoding as failed" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
225 <param argument="--logprob_threshold" type="float" value="-1.0" optional="true" label="Logprob threshold" help="If the average log probability is lower than this value, treat the decoding as failed" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
226 <param argument="--no_speech_threshold" type="float" value="0.6" optional="true" label="No speech threshold" help="If the probability of the |nospeech| token is higher than this value AND the decoding has failed due to `logprob_threshold`, consider the segment as silence" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
227 <conditional name="word_timestamps">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
228 <param argument="--word_timestamps" type="select" label="Extract word timestamps?" help="(experimental) Extract word-level timestamps and refine the results based on them">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
229 <option value="False">False</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
230 <option value="True">True</option>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
231 </param>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
232 <when value="True">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
233 <param argument="--highlight_words" type="boolean" truevalue="True" falsevalue="False" value="False" optional="true" label="Highlight words" help="Underline each word as it is spoken in srt and vtt" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
234 <param argument="--max_line_width" type="integer" value="" optional="true" label="Max line width" help="The maximum number of characters in a line before breaking the line" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
235 <param argument="--max_line_count" type="integer" value="" optional="true" label="Max line count" help="The maximum number of lines in a segment" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
236 <param argument="--max_words_per_line" type="integer" value="" optional="true" label="Max words per line" help="No effect with --max_line_width. the maximum number of words in a segment" />
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
237 </when>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
238 <when value="False">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
239 </when>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
240 </conditional>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
241 </section>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
242 </inputs>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
243 <outputs>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
244 <data name="output_txt" format="txt" from_work_dir="./outs/input.txt" label="${tool.name} on ${on_string}.txt">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
245 <filter>'txt' in output_format</filter>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
246 </data>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
247 <data name="output_json" format="json" from_work_dir="./outs/input.json" label="${tool.name} on ${on_string}.json">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
248 <filter>'json' in output_format</filter>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
249 </data>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
250 <data name="output_srt" format="txt" from_work_dir="./outs/input.srt" label="${tool.name} on ${on_string}.srt">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
251 <filter>'srt' in output_format</filter>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
252 </data>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
253 <data name="output_vtt" format="txt" from_work_dir="./outs/input.vtt" label="${tool.name} on ${on_string}.vtt">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
254 <filter>'vtt' in output_format</filter>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
255 </data>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
256 <data name="output_tsv" format="tabular" from_work_dir="./outs/input.tsv" label="${tool.name} on ${on_string}.tsv">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
257 <filter>'tsv' in output_format</filter>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
258 </data>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
259 </outputs>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
260 <tests>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
261 <test expect_num_outputs="1">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
262 <param name="infile" value="english.wav" ftype="wav"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
263 <param name="model" value="tiny"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
264 <param name="language" value="English"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
265 <param name="output_format" value="txt"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
266 <output name="output_txt" file="transcribe.txt"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
267 </test>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
268 <test expect_num_outputs="3">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
269 <param name="infile" value="english.wav" ftype="wav"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
270 <param name="model" value="tiny"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
271 <param name="language" value="English"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
272 <param name="output_format" value="srt,tsv,json"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
273 <output name="output_srt" file="transcribe_english.srt"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
274 <output name="output_tsv" file="transcribe_english.tsv"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
275 <output name="output_json">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
276 <assert_contents>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
277 <has_text text="21-year-old Jesus joined Manchester City last year in January 2017 from"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
278 <has_text text="temperature"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
279 <has_text text="no_speech_prob"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
280 <has_text text="English"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
281 <has_n_lines n="1"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
282 </assert_contents>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
283 </output>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
284 </test>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
285 <test expect_num_outputs="1">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
286 <param name="infile" value="german.wav" ftype="wav"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
287 <param name="model" value="small"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
288 <param name="language" value="German"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
289 <param name="output_format" value="txt"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
290 <output name="output_txt" file="transcribe_german.txt"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
291 </test>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
292 <test expect_num_outputs="1">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
293 <param name="infile" value="german_english.mp3" ftype="mp3"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
294 <param name="model" value="medium"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
295 <param name="output_format" value="txt"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
296 <output name="output_txt" file="transcribe_german_english.txt"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
297 </test>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
298 <test expect_num_outputs="2">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
299 <param name="infile" value="persian.wav" ftype="wav"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
300 <param name="model" value="medium"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
301 <param name="language" value="Persian"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
302 <param name="output_format" value="srt,json"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
303 <section name="advanced">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
304 <param name="condition_on_previous_text" value="False"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
305 <conditional name="word_timestamps">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
306 <param name="word_timestamps" value="True"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
307 <param name="max_words_per_line" value="5"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
308 </conditional>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
309 </section>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
310 <output name="output_srt">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
311 <assert_contents>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
312 <has_n_lines n="32"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
313 </assert_contents>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
314 </output>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
315 <output name="output_json">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
316 <assert_contents>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
317 <has_text text="\u0628\u0631\u062e\u06cc \u0627\u0632 \u0627\u06cc\u0646"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
318 <has_text text="temperature"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
319 <has_text text="no_speech_prob"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
320 <has_text text="Persian"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
321 <has_n_lines n="1"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
322 </assert_contents>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
323 </output>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
324 </test>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
325 </tests>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
326 <help><![CDATA[
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
327
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
328 .. class:: infomark
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
329
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
330 **What it does**
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
331
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
332 Transcribe audio or video files to text using the `Whisper from OpenAI <https://github.com/openai/whisper>`_.
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
333
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
334 Usage
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
335 .....
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
336
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
337
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
338 **Input**
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
339 Audio or video file to transcribe in one of wav, mp3, mkv, flv, mpg, ogg, wma, or mp4.
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
340
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
341
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
342 **Output**
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
343 Transcribed text in the selected format. The output can be in text, JSON, SubRip, WebVTT, or tab-separated values (tabular) format.
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
344 ]]></help>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
345 <creator>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
346 <person givenName="Alireza" familyName="Heidari" url="http://github.com/itisalirh"/>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
347 </creator>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
348 <citations>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
349 <citation type="bibtex">
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
350 @misc{openai2022whisper,
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
351 title={Whisper},
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
352 author={OpenAI},
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
353 year={2022},
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
354 url={https://github.com/openai/whisper}
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
355 }
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
356 </citation>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
357 </citations>
2706ea308f94 planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/whisper commit 65bc65452f0cb44220555d6295106ea525038c70
bgruening
parents:
diff changeset
358 </tool>