Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added FFMPEG as a possible tool to detect corrupt video files. #10132

Merged
merged 23 commits into from
Jan 6, 2022
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
710ffe1
Added FFMPEG as a possible tool to detect corrupt video files.
p0psicles Nov 27, 2021
8c2d151
Fix false positives
p0psicles Nov 28, 2021
a2097dc
Fix failed download handling for Scheduled PP and Manual Pp.
p0psicles Nov 28, 2021
ba6dcef
Run process_failed() only if processing single resource.
p0psicles Nov 28, 2021
dee6639
Add video and audio stream check.
p0psicles Dec 2, 2021
ecc809b
Merge remote-tracking branch 'origin/develop' into feature/pp-check-c…
p0psicles Jan 5, 2022
a762faf
Remove check for corruption.
p0psicles Jan 5, 2022
ff2f811
yarn dev
p0psicles Jan 5, 2022
aa80b64
Removed ffmpegVersion in favor of ffprobeVersion.
p0psicles Jan 5, 2022
2eb2c88
yarn dev
p0psicles Jan 5, 2022
d7a5984
remove unused exceptions
p0psicles Jan 5, 2022
09c27b3
Merge branch 'feature/pp-check-corruption' of https://github.com/pyme…
p0psicles Jan 5, 2022
d6a69db
Update changelog
p0psicles Jan 5, 2022
5bec3a9
Fix test
p0psicles Jan 5, 2022
bbd0d3a
rm blank line at end of file
medariox Jan 5, 2022
dc9277e
Fix import statements are in the wrong order
medariox Jan 5, 2022
23cded0
update snapshot
p0psicles Jan 5, 2022
934b860
Merge branch 'feature/pp-check-corruption' of https://github.com/pyme…
p0psicles Jan 5, 2022
061a093
Update test
p0psicles Jan 5, 2022
0d84998
Merge remote-tracking branch 'origin/develop' into feature/pp-check-c…
p0psicles Jan 5, 2022
73d0006
yarn dev
p0psicles Jan 5, 2022
5f4590d
update snapshot
p0psicles Jan 6, 2022
867dcd5
Merge branch 'feature/pp-check-corruption' of https://github.com/pyme…
p0psicles Jan 6, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
remove unused exceptions
  • Loading branch information
p0psicles committed Jan 5, 2022
commit d7a59847ef4e8c08f5ef5dd01805f1c3a98efb21
2 changes: 1 addition & 1 deletion medusa/post_processor.py
Original file line number Diff line number Diff line change
@@ -58,7 +58,7 @@
)
from medusa.helpers import is_subtitle, verify_freespace
from medusa.helpers.anidb import set_up_anidb_connection
from medusa.helpers.ffmpeg import FfMpeg, FfmpegBinaryException, FfprobeBinaryException
from medusa.helpers.ffmpeg import FfMpeg, FfprobeBinaryException
from medusa.helpers.utils import generate
from medusa.name_parser.parser import (
InvalidNameException,
2 changes: 1 addition & 1 deletion medusa/server/api/v2/config.py
Original file line number Diff line number Diff line change
@@ -22,7 +22,7 @@
from medusa.app import app
from medusa.common import IGNORED, Quality, SKIPPED, WANTED, cpu_presets
from medusa.helpers.utils import int_default, to_camel_case
from medusa.helpers.ffmpeg import FfMpeg, FfmpegBinaryException, FfprobeBinaryException
from medusa.helpers.ffmpeg import FfMpeg, FfprobeBinaryException
from medusa.indexers.config import INDEXER_TVDBV2, get_indexer_config
from medusa.logger.adapters.style import BraceAdapter
from medusa.network_timezones import app_timezone