Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion android-ffmpeg/src/main/java/nl/bravobit/ffmpeg/Util.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ static String convertInputStreamToString(InputStream inputStream) {
String str;
StringBuilder sb = new StringBuilder();
while ((str = r.readLine()) != null) {
sb.append(str);
sb.append(str).append('\n');
}
return sb.toString();
} catch (IOException e) {
Expand Down