Skip to content

Commit

Permalink
docs: Point help url to new docs sites
Browse files Browse the repository at this point in the history
  • Loading branch information
seakrueger committed Sep 7, 2024
1 parent 01868d5 commit 97c70b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions doc/utilities/ffmpeg.md → doc/help/ffmpeg.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
FFmpeg is required for thumbnail previews and playback features on audio and video files. FFmpeg is a free Open Source project dedicated to the handling of multimedia (video, audio, etc) files.

# Installation on Windows
---
## Prebuilt Binaries
Pre-built binaries from trusted sources are available on the [FFmpeg website](https://www.ffmpeg.org/download.html#build-windows).

Expand All @@ -22,14 +21,12 @@ FFmpeg is also available from:
3. Chocolatey (`choco install ffmpeg-full`)

# Installation on Mac
---
## Homebrew
FFmpeg is available via [Homebrew](https://brew.sh/) and can be installed via;

`brew install ffmpeg`

# Installation on Linux
---
## Package Managers
FFmpeg may be installed by default on some Linux distrobutions, but if not, it is available via your distro's package manager of choice

Expand All @@ -38,5 +35,4 @@ FFmpeg may be installed by default on some Linux distrobutions, but if not, it i
3. Arch (`sudo pacman -S ffmpeg`)

# Help
---
For additional help, please create an Issue on the [GitHub repository](https://github.com/TagStudioDev/TagStudio) or join the [Discord]()
4 changes: 2 additions & 2 deletions tagstudio/src/qt/modals/ffmpeg_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
class FfmpegChecker(QMessageBox):
"""A warning dialog for if FFmpeg is missing."""

help_url = "https://github.com/TagStudioDev/TagStudio/blob/Alpha-v9.4/doc/utilities/ffmpeg.md"
HELP_URL = "https://docs.tagstud.io/help/ffmpeg/"

def __init__(self):
super().__init__()
Expand Down Expand Up @@ -63,4 +63,4 @@ def show_warning(self):

# Selection will either be QMessageBox.Help or (QMessageBox.Ignore | QMessageBox.Cancel) which can be ignored
if selection == QMessageBox.Help:
QDesktopServices.openUrl(QUrl(self.help_url))
QDesktopServices.openUrl(QUrl(self.HELP_URL))

0 comments on commit 97c70b1

Please sign in to comment.