removed codec setting, now handled automatically
This commit is contained in:
parent
76935c61ae
commit
02a77aa2e2
@ -1,48 +1,44 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
#config.sh
|
#config.sh
|
||||||
|
|
||||||
#Zymp3 Configuration File
|
# Zymp3 Configuration File
|
||||||
|
|
||||||
#FILE PATHS
|
# FILE PATHS
|
||||||
|
|
||||||
#choose your own install path
|
# choose your own install path
|
||||||
INSTALLPATH="/opt/zymp3"
|
INSTALLPATH="/opt/zymp3"
|
||||||
|
|
||||||
#You can change this but icon may not appear
|
# You can change this but icon may not appear
|
||||||
IMGDIR="/usr/share/pixmaps"
|
IMGDIR="/usr/share/pixmaps"
|
||||||
|
|
||||||
#Desktop icon directory ( default recommended)
|
# Desktop icon directory ( default recommended)
|
||||||
DESKTOPFILEDIR="/usr/share/applications"
|
DESKTOPFILEDIR="/usr/share/applications"
|
||||||
|
|
||||||
#Default gui - switch between zenity or yad
|
# Default gui - switch between zenity or yad
|
||||||
SET_GUI_BIN="zenity"
|
SET_GUI_BIN="zenity"
|
||||||
|
|
||||||
#choose file extension - (does not change format)
|
# ogg, mp3, flac
|
||||||
#change this if you change CODEC
|
EXTENSION="ogg"
|
||||||
EXTENSION="ogg"
|
|
||||||
|
|
||||||
|
|
||||||
#Desired bitrate of audio in kilobytes
|
# 96 - 320 (kilobytes)
|
||||||
BITRATE="192"
|
BITRATE="192"
|
||||||
|
|
||||||
#Codec format of audio file
|
|
||||||
#libmp3lame (mp3), libvorbis (ogg), flac (flac)
|
|
||||||
CODEC="libvorbis"
|
|
||||||
|
|
||||||
#Output directory for audio files
|
# Output directory for audio files
|
||||||
#must have a trailing slash /
|
# must have a trailing slash /
|
||||||
MUSICDIR="/home/$USER/Music/"
|
MUSICDIR="/home/$USER/Music/"
|
||||||
|
|
||||||
#VIDEO TMP DIRECTORY
|
# VIDEO TMP DIRECTORY
|
||||||
#You shouldn't need to change this but you can
|
# You shouldn't need to change this but you can
|
||||||
VIDEOFILE=/tmp/youtube-dl-$RANDOM-$RANDOM.flv
|
VIDEOFILE=/tmp/youtube-dl-$RANDOM-$RANDOM.flv
|
||||||
CONVERTED=/tmp
|
CONVERTED=/tmp
|
||||||
|
|
||||||
#USE FILEBROWSER TO NAME AND SAVE MP3
|
# USE FILEBROWSER TO NAME AND SAVE MP3
|
||||||
USE_FILE_BROWSER="no" #options- yes, no
|
USE_FILE_BROWSER="no" #options- yes, no
|
||||||
|
|
||||||
#GUI SETTINGS
|
# GUI SETTINGS
|
||||||
|
# Change dimensions of the URL and filename dialogs
|
||||||
URL_BOX_HEIGHT="64"
|
URL_BOX_HEIGHT="64"
|
||||||
|
|
||||||
URL_BOX_WIDTH="512"
|
URL_BOX_WIDTH="512"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user