ptr727/PlexCleaner
Fork: 11 Star: 215 (更新于 1970-01-01 00:00:00)
license: MIT
Language: C# .
Utility to optimize media files for Direct Play in Plex, Emby, Jellyfin
最后发布版本: 3.4.32-g30d2f8c573 ( 2023-11-15 14:17:18)
PlexCleaner
Utility to optimize media files for Direct Play in Plex, Emby, Jellyfin.
License
Licensed under the MIT License
Build
Code and Pipeline is on GitHub.
Binary releases are published on GitHub Releases.
Docker images are published on Docker Hub.
Status
Releases
Release Notes
- Version 3.3:
- Download Windows FfMpeg builds from GyanD FfMpeg GitHub mirror, may help with issue #214.
- Install Alpine media tools from
latest-stable
to match the v3.18 base image version, resolves MediaInfo segfault. - Add "legacy"
osx.13-arm64
build. - Make Rider 2023.2.1 happy with current C# linter rules.
- Version 3.2:
- Added
Ctrl-Q
andCtrl-Z
as additional break commands,Ctrl+C
may terminate the shell command vs. cleanly exiting the process.
- Added
- Version 3.1:
- Added
--preprocess
option to themonitor
command, that will pre-process all monitored folders.
- Added
- Version 3.0:
- Docker builds expanded to include support for
linux/amd64
,linux/arm64
, andlinux/arm/v7
, on Ubuntu, Debian, Alpine, and Arch.- See the Docker README for image and tag usage details.
- The Ubuntu x64 build now utilizes Rob Savoury's private PPA for up to date FFmpeg and HandBrake builds.
- Switched from .NET 6 to .NET 7.
- Utilizing some new capabilities, e.g.
GeneratedRegex
andLibraryImport
.
- Utilizing some new capabilities, e.g.
- Added additional architectures to the published releases, including
win-x64
,linux-x64
,linux-musl-x64
,linux-arm
,linux-arm64
, andosx-x64
. - Added support for custom FFmpeg and HandBrake command line arguments.
- See the Custom FFmpeg and HandBrake CLI Parameters section for usage details.
- Custom options allows for e.g. AV1 video codec, Intel QuickSync encoding, NVidia NVENC encoding, custom profiles, etc.
- Removed the
ConvertOptions:EnableH265Encoder
,ConvertOptions:VideoEncodeQuality
andConvertOptions:AudioEncodeCodec
options. - Replaced with
ConvertOptions:FfMpegOptions
andConvertOptions:HandBrakeOptions
options. - On v3 schema upgrade old
ConvertOptions
settings will be upgrade to equivalent settings.
- Added support for IETF / RFC 5646 / BCP 47 language tag formats.
- See the Language Matching section usage for details.
- IETF language tags allows for greater flexibility in Matroska player language matching.
- E.g.
pt-BR
for Brazilian Portuguese vs.por
for Portuguese. - E.g.
zh-Hans
for simplified Chinese vs.chi
for Chinese.
- E.g.
- Update
ProcessOptions:DefaultLanguage
andProcessOptions:KeepLanguages
from ISO 639-2B to RFC 5646 format, e.g.eng
toen
.- On v3 schema upgrade old ISO 639-2B 3 letter tags will be replaced with generic RFC 5646 tags.
- Added
ProcessOptions.SetIetfLanguageTags
to conditionally remux files using MkvMerge to apply IETF language tags when not set.- When enabled all files without IETF tags will be remuxed in order to set IETF language tags, this could be time consuming on large collections of older media that lack the now common IETF tags.
-
FFmpeg and HandBrake removes IETF language tags.
- Files are remuxed using MkvMerge, and IETF tags are restored using MkvPropEdit, after any FFmpeg or HandBrake operation.
- If you care and can, please do communicate the need for IETF language support to the FFmpeg and HandBrake development teams.
- Added warnings and attempt to repair when the Language and LanguageIetf are set and are invalid or do not match.
-
MkvMerge --identify
added the--normalize-language-ietf extlang
option to report e.g.zh-cmn-Hant
vs.cmn-Hant
.- Existing sidecar metadata can be updated using the
updatesidecar
command.
- Existing sidecar metadata can be updated using the
- Added
ProcessOptions:KeepOriginalLanguage
to keep tracks marked as original language. - Added
ProcessOptions:RemoveClosedCaptions
to conditionally vs. always remove closed captions. - Added
ProcessOptions:SetTrackFlags
to set track flags based on track title keywords, e.g.SDH
->HearingImpaired
. - Added
createschema
command to create the settings JSON schema file, no longer need to useSandbox
project to create the schema file. - Added warnings when multiple tracks of the same kind have a Default flag set.
- Added
--logwarning
commandline option to filter log file output to warnings and errors, console still gets all output. - Added
updatesidecar
commandline option to update sidecar files using current media tool information. - Added
getversioninfo
commandline option to print app, runtime, and media tool versions. - Added settings file correctness verification to detect missing but required values.
- Fixed bitrate calculation packet filter logic to exclude negative timestamps leading to out of bounds exceptions, see FFmpeg
avoid_negative_ts
. - Fixed sidecar media file hash calculation logic to open media file read only and share read, avoiding file access or sharing violations.
- Updated cover art detection and removal logic to not be dependent on
RemoveTags
setting. - Updated
DeleteInvalidFiles
logic to delete any file that fails processing, not just files that fail verification. - Updated
RemoveDuplicateLanguages
logic to use MkvMerge IETF language tags. - Updated
RemoveDuplicateTracks
logic to account for Matroska track flags. - Refactored JSON schema versioning logic to use
record
instead ofclass
allowing for derived classes to inherited attributes vs. needing to duplicate all attributes. - Refactored track selection logic to simplify containment and use with lambda filters.
- Refactored verify and repair logic, became too complicated.
- Removed forced file flush and waiting for IO to flush logic, unnecessarily slows down processing and is ineffective.
- Removed
VerifyOptions:VerifyDuration
,VerifyOptions:IdetDuration
,VerifyOptions:MinimumDuration
, andVerifyOptions:MinimumFileAge
configuration options. - Removed docker image publishing to GHCR,
broken pipe
errors too frequently break the build. - Changed the process exit code to return
1
vs.-1
in case of error, more conformant with standard exit codes,0
remains success. - Settings JSON schema updated from v2 to v3 to account for new and modified settings.
- Older settings schemas will automatically be upgraded with compatible settings to v3 on first run.
-
Breaking Change Removed the
reprocess
commandline option, logic was very complex with limited value, usereverify
instead. -
Breaking Change Refactored commandline arguments to only add relevant options to commands that use them vs. adding global options to all commands.
- Maintaining commandline backwards compatibility was complicated, and the change is unfortunately a breaking change.
- The following global options have been removed and added to their respective commands:
-
--settingsfile
used by several commands. -
--parallel
used by theprocess
command. -
--threadcount
used by theprocess
command.
-
- Move the option from the global options to follow the specific command, e.g.:
- From:
PlexCleaner --settingsfile PlexCleaner.json defaultsettings ...
- To:
PlexCleaner defaultsettings --settingsfile PlexCleaner.json ...
- From:
PlexCleaner --settingsfile PlexCleaner.json --parallel --threadcount 2 process ...
- To:
PlexCleaner process --settingsfile PlexCleaner.json --parallel --threadcount 2 ...
- From:
- Docker builds expanded to include support for
- See Release History for older Release Notes.
Questions or Issues
- Use the Discussions forum for general questions.
- Refer to the Issues tracker for known problems.
- Report bugs in the Issues tracker.
Use Cases
The objective of PlexCleaner is to modify media content such that it will always Direct Play in Plex, Emby, Jellyfin.
Below are examples of issues that can be resolved using the primary process
command:
- Container file formats other than MKV are not supported by all platforms, re-multiplex to MKV.
- Licensing for some codecs like MPEG-2 prevents hardware decoding, re-encode to H.264.
- Some video codecs like MPEG-4 or VC-1 cause playback issues, re-encode to H.264.
- Some H.264 video profiles like
Constrained Baseline@30
cause playback issues, re-encode to H.264High@40
. - On some displays interlaced video cause playback issues, deinterlace using HandBrake and the
--comb-detect --decomb
options. - Some audio codecs like Vorbis or WMAPro are not supported by the client platform, re-encode to AC3.
- Some subtitle tracks like VOBsub cause hangs when the
MuxingMode
attribute is not set, re-multiplex to set the correctMuxingMode
. - Automatic audio and subtitle track selection requires the track language to be set, set the language for unknown tracks.
- Duplicate audio or subtitle tracks of the same language cause issues with player track selection, delete duplicate tracks, and keep the best quality audio tracks.
- Corrupt media streams cause playback issues, verify stream integrity, and try to automatically repair by re-encoding.
- Some WiFi or 100Mbps Ethernet connected devices with small read buffers hang when playing high bitrate content, warn when media bitrate exceeds the network bitrate.
- Dolby Vision is only supported on DV capable displays, warn when the HDR profile is
Dolby Vision
(profile 5) vs.Dolby Vision / SMPTE ST 2086
(profile 7) that supports DV and HDR10/HDR10+ displays. - EIA-608 Closed Captions embedded in video streams can't be disabled or managed from the player, remove embedded closed captions from video streams.
- See the
process
command for more details.
Performance Considerations
- To improve processing performance of large media collections, the media file attributes and processing state is cached in sidecar files. (
filename.mkv
->filename.PlexCleaner
) - Sidecar files allow re-processing of the same files to be very fast as the state will be read from the sidecar vs. re-computed from the media file.
- The sidecar maintains a hash of small parts of the media file (timestamps are unreliable), and the media file will be reprocessed when a change in the media file is detected.
- Re-multiplexing is an IO intensive operation and re-encoding is a CPU intensive operation.
- Parallel processing, using the
--parallel
option, is useful when a single instance of FFmpeg or HandBrake does not saturate all the available CPU resources. - When parallel processing is enabled, the default thread count is half the number of system cores, and can be changed using the
--threadcount
option. - Processing can be interrupted using
Ctrl-C
, if using sidecar files restarting will skip previously verified files. - Processing very large media collections on docker may result in a very large docker log file, set appropriate docker logging options.
Installation
Docker builds are the easiest and most up to date way to run, and can be used on any platform that supports linux/amd64
, linux/arm64
, or linux/arm/v7
architectures.
Alternatively, install directly on Windows, Linux, or MacOS following the provided instructions.
Docker
- Builds are published on Docker Hub.
- See the Docker README for image and tag details.
- Images are updated weekly with the latest upstream updates.
- The container has all the prerequisite 3rd party tools pre-installed.
- Map your host volumes, and make sure the user has permission to access and modify media files.
- The container is intended to be used in interactive mode, for long running operations run in a
screen
session. - See examples below for instructions on getting started.
Example, run in an interactive shell:
# The host "/data/media" directory is mapped to the container "/media" directory
# Replace the volume mappings to suit your needs
# Run the bash shell in an interactive session
docker run \
-it \
--rm \
--pull always \
--name PlexCleaner \
--volume /data/media:/media:rw \
docker.io/ptr727/plexcleaner \
/bin/bash
# Create default settings file
# Edit the settings file to suit your needs
/PlexCleaner/PlexCleaner \
defaultsettings \
--settingsfile /media/PlexCleaner/PlexCleaner.json
# Process media files
/PlexCleaner/PlexCleaner \
--logfile /media/PlexCleaner/PlexCleaner.log \
process \
--settingsfile /media/PlexCleaner/PlexCleaner.json \
--mediafiles /media/Movies \
--mediafiles /media/Series
# Exit the interactive session
exit
Example, run in a screen session:
# Start a new screen session
screen
# Or attach to an existing screen session
screen -r
# Make sure the media file permissions allow writing
sudo chown -R nobody:users /data/media
sudo chmod -R u=rwx,g=rwx+s,o=rx /data/media
# Run the process command in an interactive session
docker run \
-it \
--rm \
--pull always \
--log-driver json-file --log-opt max-size=10m \
--name PlexCleaner \
--user nobody:users \
--env TZ=America/Los_Angeles \
--volume /data/media:/media:rw \
docker.io/ptr727/plexcleaner \
/PlexCleaner/PlexCleaner \
--logfile /media/PlexCleaner/PlexCleaner.log \
--logwarning \
process \
--settingsfile /media/PlexCleaner/PlexCleaner.json \
--parallel \
--mediafiles /media/Movies \
--mediafiles /media/Series
Windows
- Install the .NET Runtime.
- Download PlexCleaner and extract the pre-compiled binaries.
- Or compile from code using Visual Studio or VSCode or the .NET SDK.
- Create a default JSON settings file using the
defaultsettings
command:-
PlexCleaner defaultsettings --settingsfile PlexCleaner.json
- Modify the settings to suit your needs.
-
- Download the required 3rd party tools using the
checkfornewtools
command:-
PlexCleaner checkfornewtools --settingsfile PlexCleaner.json
- The default
Tools
folder will be created in the same folder as thePlexCleaner
binary file. - The tool version information will be stored in
Tools\Tools.json
. - Keep the 3rd party tools updated by periodically running the
checkfornewtools
command, or update tools on every run by settingToolsOptions:AutoUpdate
totrue
.
-
- If required, e.g. no internet connectivity, the tools can be manually downloaded and extracted:
-
FfMpeg Full, e.g.
ffmpeg-6.0-full.7z
:\Tools\FfMpeg
-
HandBrake CLI x64, e.g.
HandBrakeCLI-1.6.1-win-x86_64.zip
:\Tools\HandBrake
-
MediaInfo CLI x64, e.g.
MediaInfo_CLI_23.07_Windows_x64.zip
:\Tools\MediaInfo
-
MkvToolNix Portable x64, e.g.
mkvtoolnix-64-bit-79.0.7z
:\Tools\MkvToolNix
-
7-Zip Extra, e.g.
7z2301-extra.7z
:\Tools\SevenZip
- Disable automatic tool updates by setting
ToolsOptions:AutoUpdate
tofalse
.
-
FfMpeg Full, e.g.
Linux
- Automatic downloading of Linux 3rd party tools are not supported, consider using the Docker build instead.
- Manually install the 3rd party tools, e.g. following steps similar to the Docker file commands.
- Download PlexCleaner and extract the pre-compiled binaries matching your platform.
- Or compile from code using the .NET SDK.
- Create a default JSON settings file using the
defaultsettings
command:-
./PlexCleaner defaultsettings --settingsfile PlexCleaner.json
- Modify the settings to suit your needs.
-
macOS
- macOS x64 and Arm64 binaries are built as part of Releases, but are untested.
Configuration
Create a default JSON configuration file by running:
PlexCleaner defaultsettings --settingsfile PlexCleaner.json
Refer to the commented default JSON settings file for usage.
Custom FFmpeg and HandBrake CLI Parameters
The ConvertOptions:FfMpegOptions
and ConvertOptions:HandBrakeOptions
settings allows for custom CLI parameters to be used during processing.
Note that hardware assisted encoding options are operating system, hardware, and tool version specific.
Refer to the Jellyfin hardware acceleration docs for hints on usage.
The example configurations are from documentation and minimal testing with Intel QuickSync on Windows only, please discuss and post working configurations in Discussions.
FFmpeg Options
See the FFmpeg documentation for complete commandline option details.
The typical FFmpeg commandline is ffmpeg [global_options] {[input_file_options] -i input_url} ... {[output_file_options] output_url}
.
E.g. ffmpeg "-analyzeduration 2147483647 -probesize 2147483647 -i "/media/foo.mkv" -max_muxing_queue_size 1024 -abort_on empty_output -hide_banner -nostats -map 0 -c:v libx265 -crf 26 -preset medium -c:a ac3 -c:s copy -f matroska "/media/bar.mkv"
Settings allows for custom configuration of:
-
FfMpegOptions:Global
: Global options, e.g.-analyzeduration 2147483647 -probesize 2147483647
-
FfMpegOptions:Output
: Output options, e.g.-max_muxing_queue_size 1024 -abort_on empty_output
-
FfMpegOptions:Video
: Video encoder options following the-c:v
parameter, e.g.libx264 -crf 22 -preset medium
-
FfMpegOptions:Audio
: Audio encoder options following the-c:a
parameter, e.g.ac3
Get encoder options:
- List all supported encoders:
ffmpeg -encoders
- List options supported by an encoder:
ffmpeg -h encoder=libsvtav1
Example video encoder options:
-
H.264:
libx264 -crf 22 -preset medium
-
H.265:
libx265 -crf 26 -preset medium
-
AV1:
libsvtav1 -crf 30 -preset 5
Example hardware assisted video encoding options:
- NVidia NVENC:
- Intel QuickSync:
- See FFmpeg documentation.
- View QuickSync encoder options:
ffmpeg -h encoder=h264_qsv
-
FfMpegOptions:Global
:-analyzeduration 2147483647 -probesize 2147483647 -hwaccel qsv -hwaccel_output_format qsv
-
FfMpegOptions:Video
:h264_qsv -crf 22 -preset medium
HandBrake Options
See the HandBrake documentation for complete commandline option details.
The typical HandBrake commandline is HandBrakeCLI [options] -i <source> -o <destination>
.
E.g. HandBrakeCLI --input "/media/foo.mkv" --output "/media/bar.mkv" --format av_mkv --encoder x265 --quality 26 --encoder-preset medium --comb-detect --decomb --all-audio --aencoder copy --audio-fallback ac3
Settings allows for custom configuration of:
-
HandBrakeOptions:Video
: Video encoder options following the--encode
parameter, e.g.x264 --quality 22 --encoder-preset medium
-
HandBrakeOptions:Audio
: Audio encoder options following the--aencode
parameter, e.g.copy --audio-fallback ac3
Get encoder options:
- List all supported encoders:
HandBrakeCLI.exe --help
- List presets supported by an encoder:
HandBrakeCLI --encoder-preset-list svt_av1
Example video encoder options:
- H.264:
x264 --quality 22 --encoder-preset medium
- H.265:
x265 --quality 26 --encoder-preset medium
- AV1:
svt_av1 --quality 30 --encoder-preset 5
Example hardware assisted video encoding options:
- NVidia NVENC:
- See HandBrake documentation.
-
HandBrakeOptions:Video
:nvenc_h264 --quality 22 --encoder-preset medium
- Intel QuickSync:
- See HandBrake documentation.
-
HandBrakeOptions:Video
:qsv_h264 --quality 22 --encoder-preset medium
Note that HandBrake is primarily used for video deinterlacing, and only as backup encoder when FFmpeg fails.
The default HandBrakeOptions:Audio
configuration is set to copy --audio-fallback ac3
that will copy all supported audio tracks as is, and only encode to ac3
if the audio codec is not natively supported.
Language Matching
Language tag matching supports IETF / RFC 5646 / BCP 47 tag formats as implemented by MkvMerge.
During processing the absence of IETF language tags will treated as a track warning, and an RFC 5646 IETF language will be temporarily assigned based on the ISO639-2B tag.
If ProcessOptions.SetIetfLanguageTags
is enabled MkvMerge will be used to remux the file using the --normalize-language-ietf extlang
option, see the MkvMerge docs for more details.
Tags are in the form of language-extlang-script-region-variant-extension-privateuse
, and matching happens left to right.
E.g. pt
will match pt
Portuguese, or pt-BR
Brazilian Portuguese, or pt-BR
Portugal Portuguese.
E.g. pt-BR
will only match only pt-BR
Brazilian Portuguese.
E.g. zh
will match zh
Chinese, or zh-Hans
simplified Chinese, or zh-Hant
for traditional Chinese, and other variants.
E.g. zh-Hans
will only match zh-Hans
simplified Chinese.
Normalized tags will be expanded for matching.
E.g. cmn-Hant
will be expanded to zh-cmn-Hant
allowing matching with zh
.
See the W3C Language tags in HTML and XML and BCP47 language subtag lookup for more details.
Usage
Use the PlexCleaner --help
commandline option to get a list of commands and options.
To get help for a specific command run PlexCleaner <command> --help
.
> ./PlexCleaner --help
Description:
Utility to optimize media files for Direct Play in Plex, Emby, Jellyfin
Usage:
PlexCleaner [command] [options]
Options:
--logfile <logfile> Path to log file
--logappend Append to existing log file
--logwarning Log warnings and errors only
--debug Wait for debugger to attach
--version Show version information
-?, -h, --help Show help and usage information
Commands:
defaultsettings Write default values to settings file
checkfornewtools Check for new tool versions and download if newer
process Process media files
monitor Monitor for file changes and process changed media files
remux Re-Multiplex media files
reencode Re-Encode media files
deinterlace De-Interlace media files
removesubtitles Remove subtitles from media files
createsidecar Create new sidecar files
updatesidecar Update existing sidecar files
getversioninfo Print application and tools version information
getsidecarinfo Print sidecar file information
gettagmap Print media information tag-map
getmediainfo Print media information using sidecar files
gettoolinfo Print media information using media tools
createschema Write settings schema to file
Global Options
Global options apply to all commands.
-
--logfile
:- Path to the log file.
-
--logappend
:- Append to the existing log file, default will overwrite the log file.
-
--logwarning
:- Only log errors and warnings to the log file, default will log all information.
-
--debug
:- Launch and wait for a debugger to attach.
Process Command
> ./PlexCleaner process --help
Description:
Process media files
Usage:
PlexCleaner process [options]
Options:
--settingsfile <settingsfile> (REQUIRED) Path to settings file
--mediafiles <mediafiles> (REQUIRED) Path to media file or folder
--parallel Enable parallel processing
--threadcount <threadcount> Number of threads to use for parallel processing
--testsnippets Create short media clips
--testnomodify Do not make any file modifications
--reverify Re-verify and repair media files in the VerifyFailed state
--logfile <logfile> Path to log file
--logappend Append to existing log file
--logwarning Log warnings and errors only
--debug Wait for debugger to attach
-?, -h, --help Show help and usage information
The process
command will process the media content using options as defined in the settings file and the optional commandline arguments:
- Delete files with extensions not in the
KeepExtensions
list. - Re-multiplex containers in the
ReMuxExtensions
list to MKV container format. - Remove all tags, titles, thumbnails, cover art, and attachments from the media file.
- Set IETF language tags and Matroska track flags if missing.
- Set the language to
DefaultLanguage
for any track with an undefined language. - If multiple audio tracks of the same language but different encoding formats are present, set the default track based on
PreferredAudioFormats
. - Remove tracks with languages not in the
KeepLanguages
list. - Remove duplicate tracks, where duplicates are tracks of the same type and language.
- Re-multiplex the media file if required.
- Deinterlace the video track if interlaced.
- Remove EIA-608 Closed Captions from video streams.
- Re-encode video if video format matches
ReEncodeVideo
. - Re-encode audio if audio matches the
ReEncodeAudioFormats
list. - Verify the media container and stream integrity, if corrupt try to automatically repair, else conditionally delete the file.
Options:
-
--settingsfile
: (required)- Path to the settings file.
-
--mediafiles
: (required)- Path to file or folder containing files to process.
- Paths with spaces should be double quoted.
- Repeat the option to include multiple files or directories, e.g.
--mediafiles path1 --mediafiles "path with space" --mediafiles file1 --mediafiles file2
.
-
--reverify
:- Re-verify and repair media files that are in the
VerifyFailed
state. - By default files would be skipped due to processing optimization logic when using sidecar files.
- Re-verify and repair media files that are in the
-
--parallel
:- Process multiple files concurrently.
- When parallel processing is enabled, the default thread count is half the number of system cores.
-
--threadcount
:- Override the thread count when the
--parallel
option is enabled.
- Override the thread count when the
-
--testsnippets
:- Create short media clips that limit the processing time required, useful during testing.
-
--testnomodify
:- Process files but do not make any file modifications, useful during testing.
Example:
./PlexCleaner \
--logfile PlexCleaner.log \
process \
--settingsfile PlexCleaner.json \
--parallel \
--mediafiles "C:\Foo With Space\Test.mkv" \
--mediafiles D:\Media
Re-Multiplex, Re-Encode, De-Interlace, Remove Subtitles Commands
These commands have no conditional logic and will process all specified media files.
-
remux
:- Re-multiplex the media files using MkvMerge.
- Useful to update the file with the latest multiplexer.
-
reencode
:- Re-encode the media files using FFmpeg.
-
deinterlace
:- De-interlace interlaced media files using HandBrake.
-
removesubtitles
:- Remove all subtitle tracks from the media files.
- Useful when subtitles are forced and contains offensive language or advertising.
Monitor
-
monitor
:- Watch the specified folders for file changes, and periodically run the
process
command on the changed folders. - The
monitor
command honors theprocess
options. - Note that the FileSystemWatcher used to monitor for changes may not always work as expected when changes are made via virtual or network filesystem, e.g. NFS or SMB backed volumes may not detect changes made directly to the underlying ZFS filesystem.
- Watch the specified folders for file changes, and periodically run the
Create and Update Sidecar Files
-
createsidecar
:- Create or overwrite and re-create sidecar files.
- All existing state attributes will be deleted.
-
updatesidecar
:- Update the existing sidecar with current media tool information.
- Existing state attributes will be retained unless the media file had been modified.
Get Information
-
gettagmap
:- Calculate and print media file attribute mappings between between different media tools.
-
getmediainfo
:- Print media attribute information using the Sidecar file if present.
- If sidecar is not present or out of date media tools will be used.
-
gettoolinfo
:- Print media attribute information using the current media tools.
-
getsidecarinfo
:- Print sidecar file attribute information.
-
getversioninfo
:- Print application version, runtime version, and media tools version information.
3rd Party Tools
- 7-Zip
- MediaInfo
- HandBrake
- MKVToolNix
- FFmpeg
- ISO 639-2 language tags
- ISO 639-3 language tags
- RFC 5646 language tags
- Xml2CSharp
- quicktype
- regex101.com
- Newtonsoft.Json
- System.CommandLine
- Serilog
- Nerdbank.GitVersioning
- Bring Your Own Badge
- Docker Hub Description
- Git Auto Commit
- Docker Run Action
- Microsoft .NET Linux Docker Images
- Rob Savoury's PPA
- Arch Linux
Sample Media Files
最近版本更新:(数据更新于 1970-01-01 00:00:00)
2023-11-15 14:17:18 3.4.32-g30d2f8c573
2023-11-15 07:43:35 3.4.30-g58c081e507
2023-11-14 13:29:29 3.4.29-g9fe302a32b
2023-11-14 02:45:10 3.4.27-g65d85e7990
2023-11-14 02:37:14 3.4.24-g5c814d6a3c
2023-10-18 17:23:34 3.3.20
2023-10-18 17:21:52 3.4.21-g5d220f1e93
2023-10-18 00:23:35 3.4.19-g3a5062df8e
2023-10-18 00:23:16 3.3.18
2023-10-16 22:10:23 3.4.17-g9797582beb
主题(topics):
7zip, csharp, dotnet, emby, ffmpeg, handbrake, jellyfin, mediainfo, mkvtoolnix, plex, video
ptr727/PlexCleaner同语言 C#最近更新仓库
2024-11-04 20:01:02 Pik-4/HsMod
2024-11-03 23:57:50 jellyfin/jellyfin
2024-10-31 10:00:36 metatube-community/jellyfin-plugin-metatube
2024-10-30 03:58:07 AlchlcDvl/TownOfUsReworked
2024-10-26 07:18:02 Azure/azure-sdk-for-net
2024-10-23 06:18:57 PowerShell/PowerShell