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 27ad3a4 commit 2999846
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 216 deletions.
16 changes: 6 additions & 10 deletions videomass/vdms_dialogs/widget_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,22 +52,18 @@ def __init__(self, parent, style, message, backgrdcol, foregrdcol):
def notification_area(title, message, flag, timeout=5):
"""
Show the user a message on system tray (Notification Area)
Various options can be set after the message is created if desired.
notify.SetFlags(wx.ICON_INFORMATION/wx.ICON_WARNING/wx.ICON_ERROR)
notify.SetTitle("Wooot")
notify.SetMessage("It's a message!")
notify.SetParent(self)
"""
notify = wx.adv.NotificationMessage(title=title,
message=message,
parent=None,
flags=flag
)

# Various options can be set after the message is created if desired.
# notify.SetFlags(# wx.ICON_INFORMATION
# wx.ICON_WARNING
# # wx.ICON_ERROR
# )
# notify.SetTitle("Wooot")
# notify.SetMessage("It's a message!")
# notify.SetParent(self)

notify.Show(timeout=timeout) # 1 for short timeout, 100 for long timeout
# notify.Close() # Hides the notification.

Expand Down
206 changes: 0 additions & 206 deletions videomass/vdms_ytdlp/downloader.py

This file was deleted.

0 comments on commit 2999846

Please sign in to comment.