reverted spaces to testing version

This commit is contained in:
silvernode 2013-07-30 15:47:03 -05:00
commit bfae1feed1
4 changed files with 16 additions and 1 deletions

View File

@ -1,4 +1,5 @@
#Mandy
#Mandy - current version: 0.4
##About

13
changelog.txt Normal file
View File

@ -0,0 +1,13 @@
***CHANGELOG***
Version 0.4 (7-27-13)
+ fixed media player error when opening finished file
+ fixed .mp3 validation
+ cancel button now works properly in url entry box
* added progress bar for conversion process
* added push notifications
* files now open with default media player not vlc

0
main.lua Executable file → Normal file
View File

View File

@ -67,6 +67,7 @@ function ytDl(x)
end
function ffmpeg(tmpPath, dirD)
local subSpaces = string.gsub(dirD, " ", "\\ ")
local mp3 = "ffmpeg -i "..tmpPath.." -acodec libmp3lame -ac 2 -ab 192k -vn -y "..subSpaces
local flag = convert_mp3.go(mp3)