Skip to content

Commit 23cf714

Browse files
committed
fix: resolve byte sequence issues in progress reports
1 parent 5e0e00a commit 23cf714

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/ffmpeg/io.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def each(chomp: false, &block)
6565
block.call(buffer) unless buffer.empty?
6666
buffer = String.new
6767
else
68-
buffer << char
68+
buffer << FFMPEG::IO.encode!(char)
6969
end
7070
end
7171

0 commit comments

Comments
 (0)