Skip to content

Commit

Permalink
add ffmpeg stdin pipe
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanslack committed Apr 26, 2024
1 parent a9df1de commit 27ad3a4
Show file tree
Hide file tree
Showing 46 changed files with 1,120 additions and 670 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ License: GPL3
Change Log:

+------------------------------------+
Fri, 19 Apr 2024 V.5.0.12
Fri, 26 Apr 2024 V.5.0.12

* Improved description strings on menu bar.
* [Presets Manager] Improved profile settings dialog layout.
Expand Down Expand Up @@ -59,6 +59,10 @@ Fri, 19 Apr 2024 V.5.0.12
* Added the ability to change the encoding for files that contain metadata
with non-UTF-8 encoded characters. The function is found in the Preferences
dialog (Advanced tab).
* Improved closing of ffmpeg by clicking the stop button to close FFmpeg
gracefully programmatically by writing "q" to the subprocess's stdin pipe
simulating the user pressing the "q" key.
* Improved the pop-up dialog box for temporary messages.

+------------------------------------+
Sat, 30 Mar 2024 V.5.0.11
Expand Down
6 changes: 5 additions & 1 deletion debian/changelog
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,12 @@ videomass (5.0.12-1) UNRELEASED; urgency=medium
* Added the ability to change the encoding for files that contain metadata
with non-UTF-8 encoded characters. The function is found in the Preferences
dialog (Advanced tab).
* Improved closing of ffmpeg by clicking the stop button to close FFmpeg
gracefully programmatically by writing "q" to the subprocess's stdin pipe
simulating the user pressing the "q" key.
* Improved the pop-up dialog box for temporary messages.

-- Gianluca Pernigotto <[email protected]> Fri, 19 Apr 2024 02:00:00 +0200
-- Gianluca Pernigotto <[email protected]> Fri, 26 Apr 2024 13:00:00 +0200

videomass (5.0.11-1) UNRELEASED; urgency=medium

Expand Down
2 changes: 1 addition & 1 deletion videomass/gui_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def check_youtube_dl(self):
import yt_dlp
except ModuleNotFoundError as err:
wx.MessageBox(f"ERROR: {err}\n\n{msg}",
'Videomass - ERROR', wx.ICON_ERROR)
_('Videomass - Error!'), wx.ICON_ERROR)
return False
return None
# -------------------------------------------------------------------
Expand Down
Binary file modified videomass/locale/it_IT/LC_MESSAGES/videomass.mo
Binary file not shown.
Loading

0 comments on commit 27ad3a4

Please sign in to comment.