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

[Feature] full scan using ffmpeg #97

Open
jakepog opened this issue May 29, 2024 · 3 comments
Open

[Feature] full scan using ffmpeg #97

jakepog opened this issue May 29, 2024 · 3 comments
Labels
enhancement New feature or request
Milestone

Comments

@jakepog
Copy link

jakepog commented May 29, 2024

Is your feature request related to a problem? Please describe.
The problem I encountered is that video files were not completely transferred and so not playing fully (sometimes containing gaps of 5-10 minutes), yet ffprobe marked these files as having no issues.

Describe the solution you'd like
Full analysis of files using ffmpeg.

Describe alternatives you've considered
Manually running ffmpeg on newly copied files which was able to identify the issue.

Additional context
Use the same database of a quick or full check.

@jakepog jakepog added the enhancement New feature or request label May 29, 2024
@aetaric aetaric added this to the 3.4.0 milestone May 30, 2024
@aetaric
Copy link
Owner

aetaric commented Oct 9, 2024

@jakepog do you happen to have details on what command you ran to id these and problem files and what the output was in ffmpeg? I'd like to get this into the 3.4.0 release

@aetaric aetaric modified the milestones: 3.4.0, 3.5.0 Oct 9, 2024
@jakepog
Copy link
Author

jakepog commented Oct 12, 2024

The code I now run manually, after navigating into the appropriate folder:

find . -name "*.mkv" -exec sh -c "echo '{}' >> ../../../root/errors.log; ffmpeg -v error -i '{}' -map 0:1 -f null - 2>> ../../../root/errors.log" \;

I cannot recall the error sorry, and no longer have any files that have errors to replicate.

By trial and error I made code from this stack overflow post.

@aetaric
Copy link
Owner

aetaric commented Oct 13, 2024

I should be able to get something going based on that, thanks! Currently planning to have this land in 3.5.0 if there's no issue with the implementation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants