This website works better with JavaScript.
Home
Explore
Help
Sign In
Seanland
/
flac-to-mp3
Archived
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
added quotations around full paths in convert
master
Sean Clarke
1 year ago
parent
b8fddab5f5
commit
150ca78958
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
flac-to-ogg.php
+ 1
- 1
flac-to-ogg.php
View File
@ -12,6 +12,6 @@
# Generating the list
file_put_contents
(
$playlist
,
$ogg
.
PHP_EOL
,
FILE_APPEND
|
LOCK_EX
);
# The conversion command
shell_exec
(
'ffmpeg -i '
.
$flac
.
' '
.
$ogg
);
shell_exec
(
'ffmpeg -i
"
'
.
$flac
.
'
"
"
'
.
$ogg
.
'"'
);
}
?>