upper2lower
This commit is contained in:
@@ -228,6 +228,7 @@
|
||||
"Klockan_är_tre.mp3",
|
||||
"Klockan_är_två.mp3",
|
||||
"tack_så_mycket.mp3",
|
||||
"klockan.mp3",
|
||||
"ursäkta.mp3"
|
||||
],
|
||||
"name": "Schwedisch Goetheverlag",
|
||||
@@ -976,7 +977,7 @@
|
||||
"fields": [
|
||||
"er und sie",
|
||||
"han och hon",
|
||||
""
|
||||
"[sound:han_och_hon.mp3]"
|
||||
],
|
||||
"guid": "u%eHiV^[V%",
|
||||
"note_model_uuid": "f011d784-38a9-11f0-9151-4b5995eea597",
|
||||
@@ -2021,7 +2022,7 @@
|
||||
"fields": [
|
||||
"Ich schreibe einen Brief.",
|
||||
"Jag skriver ett brev.",
|
||||
""
|
||||
"[sound:dottern.mp3]"
|
||||
],
|
||||
"guid": "Q4z1eli^pa",
|
||||
"note_model_uuid": "f011d784-38a9-11f0-9151-4b5995eea597",
|
||||
@@ -2285,7 +2286,7 @@
|
||||
"fields": [
|
||||
"Danke vielmals.",
|
||||
"Tack så mycket.",
|
||||
""
|
||||
"[sound:tack_så_mycket.mp3]"
|
||||
],
|
||||
"guid": "jZ43L$vx.P",
|
||||
"note_model_uuid": "f011d784-38a9-11f0-9151-4b5995eea597",
|
||||
@@ -2373,7 +2374,7 @@
|
||||
"fields": [
|
||||
"Es ist acht Uhr.",
|
||||
"Klockan är åtta.",
|
||||
""
|
||||
"[sound:Klockan_är_åtta.mp3]"
|
||||
],
|
||||
"guid": "l?6~gOdg]$",
|
||||
"note_model_uuid": "f011d784-38a9-11f0-9151-4b5995eea597",
|
||||
@@ -13945,7 +13946,7 @@
|
||||
"fields": [
|
||||
"die Uhr",
|
||||
"klockan",
|
||||
""
|
||||
"[sound:klockan.mp3]"
|
||||
],
|
||||
"guid": "lyOES=&SPG",
|
||||
"note_model_uuid": "f011d784-38a9-11f0-9151-4b5995eea597",
|
||||
@@ -21446,7 +21447,7 @@
|
||||
"__type__": "Note",
|
||||
"fields": [
|
||||
"Tack så mycket.",
|
||||
"",
|
||||
"[sound:tack_så_mycket.mp3]",
|
||||
"Danke vielmals."
|
||||
],
|
||||
"guid": "NWXsKB@fSq",
|
||||
@@ -21578,7 +21579,7 @@
|
||||
"__type__": "Note",
|
||||
"fields": [
|
||||
"Klockan är tolv.",
|
||||
"",
|
||||
"[sound:Klockan_är_tolv.mp3]",
|
||||
"Es ist zwölf Uhr."
|
||||
],
|
||||
"guid": "NIWsSu+>ga",
|
||||
@@ -33029,7 +33030,7 @@
|
||||
"__type__": "Note",
|
||||
"fields": [
|
||||
"klockan",
|
||||
"",
|
||||
"[sound:klockan.mp3]",
|
||||
"die Uhr"
|
||||
],
|
||||
"guid": "F@}r>rSu_F",
|
||||
|
||||
BIN
Crowdanki/Schwedisch_Goetheverlag/media/klockan.mp3
Normal file
BIN
Crowdanki/Schwedisch_Goetheverlag/media/klockan.mp3
Normal file
Binary file not shown.
BIN
Crowdanki/Schwedisch_Goetheverlag/media/är_ni_semester_här.mp3
Normal file
BIN
Crowdanki/Schwedisch_Goetheverlag/media/är_ni_semester_här.mp3
Normal file
Binary file not shown.
6
GoetheVerlag/mp3/002/upper2lower.sh
Executable file
6
GoetheVerlag/mp3/002/upper2lower.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
for f in *; do
|
||||
new=$(echo "$f" | tr '[:upper:]' '[:lower:]')
|
||||
mv "$f" "$new"
|
||||
done
|
||||
6
GoetheVerlag/mp3/011/rename.sh
Executable file
6
GoetheVerlag/mp3/011/rename.sh
Executable file
@@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
for i in *
|
||||
do
|
||||
mv "$i" "${i// /_}"
|
||||
done
|
||||
21
GoetheVerlag/mp3/045/convert.py
Executable file
21
GoetheVerlag/mp3/045/convert.py
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/python3
|
||||
# coding=utf-8
|
||||
from pydub import AudioSegment
|
||||
import sys,os
|
||||
|
||||
def convert(wav):
|
||||
# Lade die WAV-Datei
|
||||
audio = AudioSegment.from_wav(wav)
|
||||
|
||||
print(wav)
|
||||
|
||||
output = os.path.splitext(wav)[0]
|
||||
outputname = output+".mp3"
|
||||
# print(outputname)
|
||||
|
||||
# Speichere sie als MP3 (z.B. mit einer Bitrate von 192 kbps)
|
||||
audio.export(outputname, format="mp3", bitrate="192k")
|
||||
|
||||
print("Konvertierung abgeschlossen!")
|
||||
|
||||
convert(sys.argv[1])
|
||||
9
GoetheVerlag/mp3/045/convert.sh
Executable file
9
GoetheVerlag/mp3/045/convert.sh
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
|
||||
for i in $(ls *.wav)
|
||||
do
|
||||
python3 convert.py $i
|
||||
echo $i
|
||||
rm -f $i
|
||||
done
|
||||
|
||||
3
mov2mp3.sh
Normal file
3
mov2mp3.sh
Normal file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
ffmpeg -i $1 -q:a 0 -map a $2
|
||||
Reference in New Issue
Block a user