Only audio and black screen #823
Replies: 5 comments 11 replies
-
|
I am also having the same issue |
Beta Was this translation helpful? Give feedback.
-
|
Same issue here. |
Beta Was this translation helpful? Give feedback.
-
1. Codec Compatibility IssuesThe most common cause is codec incompatibility between the input video and the output container format. Solution:# Specify a compatible video codec explicitly
auto-editor input.mp4 --video-codec h264
# Or use libx264 for better compatibility
auto-editor input.mp4 --video-codec libx2642. FFmpeg Version or Installation IssuesAuto-editor relies on FFmpeg for video processing. Outdated or improperly installed FFmpeg can cause rendering problems. Solution:# Check FFmpeg version
ffmpeg -version
# Ensure you have a recent version (4.4+ recommended)
# On Ubuntu/Debian:
sudo apt update && sudo apt install ffmpeg
# On macOS (using Homebrew):
brew install ffmpeg
# On Windows:
# Download from https://ffmpeg.org/download.html3. Hardware Acceleration ConflictsHardware-accelerated encoding can sometimes cause black screen issues on certain systems. Solution:# Disable hardware acceleration
auto-editor input.mp4 --video-codec libx264 --preset medium
# Force software encoding
auto-editor input.mp4 --no-hwaccel4. Container Format IssuesSome video formats may not preserve all streams correctly during editing. Solution:# Try a different output format
auto-editor input.mp4 --output-format mkv
# Or explicitly set the output file extension
auto-editor input.mp4 -o output.mkv5. Pixel Format ProblemsIncorrect pixel format can cause playback issues in some media players. Solution:# Specify pixel format explicitly
auto-editor input.mp4 --video-codec libx264 --extra-args "-pix_fmt yuv420p"Diagnostic StepsStep 1: Test with Minimal Processing# Test without any editing to isolate the issue
auto-editor input.mp4 --edit none -o test_output.mp4Step 2: Check the Input File# Verify input file integrity
ffprobe input.mp4
# Check for multiple video streams
ffmpeg -i input.mp4Step 3: Enable Verbose Output# Run with debug information
auto-editor input.mp4 --debug
# Or with FFmpeg verbose output
auto-editor input.mp4 --show-ffmpeg-commandsStep 4: Try Different Export Options# Export to an editor timeline instead of rendering
auto-editor input.mp4 --export premiere
# This can help identify if the issue is with cutting logic or rendering |
Beta Was this translation helpful? Give feedback.
-
|
I'm having the same issue with some files, like some do fine, some have this issue, and notice that the ones with the issue have a way smaller size, for example, original file is 2gb, but then the "corrupted" one is 200mb. I tried the solutions/troubleshooting steps shared by @Cfomodz but that didn't help. The only thing that works is the tip shared by @masinag of exporting to kdenlive. It's just so weird, I don't understand, like I said, it doesn't happen with every file, which btw are all .mp4, but only randomly with some files. The last couple of weeks I had it happened twice from around 10 files, meaning 8 did fine, but 2 did not. |
Beta Was this translation helpful? Give feedback.
-
|
I'm using 30.1.2 version and it's still not working for me |
Beta Was this translation helpful? Give feedback.

Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I used auto-editor to delete silent sections.
However, after rendering, I only get the audio and no visibility.
I briefly see the video for less than a second and it goes black.
I do see the video again in the middle but less for a second.
I tried changing the bitrate, margin, video length.
Also, I installed brew, ffmpeg and asked ChatGPT but nothing.
It doesn't seem that there is a problem with auto-editor or my laptop.
Just looks like I have to change a setting.
current python version: Python 3.13.7
I would appreciate it if you could help me.
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions