Troubleshooting
Table of Contents
- “Command not found” or “Missing dependency” errors
- Conversion fails with “Invalid format” error
- LibreOffice conversions fail silently
- Batch conversion stops after one file
- Low quality output
- Slow conversion speed
- Getting Help
“Command not found” or “Missing dependency” errors
Problem: The required conversion tool is not installed.
Solution: Install the missing tool using your package manager:
# For image conversions
sudo apt install imagemagick
# For audio/video conversions
sudo apt install ffmpeg
# For document conversions
sudo apt install libreoffice pandoc calibre poppler-utils
# For archive conversions
sudo apt install p7zip-full rar genisoimage rpm2cpio cpio lzop xz-utils
See Dependencies for the full list.
Conversion fails with “Invalid format” error
Problem: The source or target format is not recognized.
Solutions:
- Ensure the file has the correct extension
- Check that the format is listed in Supported Formats
- Try a different target format from the same group
- Check
conversion_exclusionsin settings — the conversion pair may be explicitly excluded
LibreOffice conversions fail silently
Problem: LibreOffice returns success even when conversion fails, causing misleading errors.
Solution: This is automatically handled by the file validation system. If you see errors like “File validation failed: /tmp/file.odt”, check the previous command’s output shown in the error dialog for the actual LibreOffice error.
Batch conversion stops after one file
Problem: An error occurred and wasn’t handled properly.
Solutions:
- Check the error dialog for specific information
- Try converting files individually to identify the problematic one
- Ensure all selected files are valid and not corrupted
Low quality output
Problem: Default quality settings may not meet your needs.
Solutions:
- Edit
user_settings.jsonto increase quality parameters (see Format Templates) - For JPEG: Increase
-qualityvalue (85—100) - For MP3: Increase bitrate
-b:a(256k or 320k) - For video: Decrease
-crfvalue (18—23 for high quality)
Slow conversion speed
Problem: Complex conversions or large files take time.
Solutions:
- For video: Use faster presets (
-preset fastor-preset ultrafast) - Enable hardware acceleration in FFmpeg (if supported)
- Process fewer files at once
- Close other resource-intensive applications
See also Performance Tips.
Getting Help
If you encounter issues not covered here:
- Check the error message — it often contains specific information about what went wrong
- Enable debug mode — create
~/.config/simplyconvertfile/DEBUGfor detailed logs (see Debug Mode) - Verify dependencies — run the conversion command manually in terminal to test
- Report bugs — open an issue on GitHub with:
- Operating system and version
- Installed tool versions (
convert --version,ffmpeg -version, etc.) - Error message and steps to reproduce