Skip to content

Commit 3e47650

Browse files
authored
Merge pull request #114 from SarmadSA/patch-1
Fix example in Readme.md
2 parents 6af9c20 + 9afceb9 commit 3e47650

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,11 +128,12 @@ There exists a jave-all-deps project, which includes core and all windows und li
128128

129129
#### Converting any audio to mp3
130130
``` JAVA
131+
boolean succeeded;
131132
try {
132133
File source = new File("file path");
133-
File target = new File("file path);
134+
File target = new File("file path");
134135

135-
//Audio Attributes
136+
//Audio Attributes
136137
AudioAttributes audio = new AudioAttributes();
137138
audio.setCodec("libmp3lame");
138139
audio.setBitRate(128000);

0 commit comments

Comments
 (0)