Voice Pack Extractor
A tool for extracting voice files from DOKAPON! Sword of Fury’s .pck
format to Opus audio format.
Table of contents
- Overview
- Requirements
- Installation
- Usage
- Output Format
- Troubleshooting
- Technical Details
- Contributing
- License
Overview
The Voice Pack Extractor is a Python script that allows you to:
- Extract voice files from the game’s proprietary
.pck
format - Extract the original Opus audio streams
- Analyze the voice data structure for modding purposes
Requirements
- Python 3.6 or higher
- DOKAPON! Sword of Fury (PC Version) installed
- Basic knowledge of using command line tools
- VLC, Firefox, or FFmpeg for playing/converting Opus files
Installation
- Download the
voice_pck_extractor.py
script - Place it in the same directory as your
Voice-en.pck
file (usually in the game’s installation directory)
Usage
- Open a terminal/command prompt
- Navigate to the directory containing both files
- Run the script:
python voice_pck_extractor.py
The script will:
- Analyze the PCK file structure
- Create an
extracted_voices
directory - Extract all voice files in their original Opus format
Output Format
The extracted files will be saved with the following specifications:
- Format: Opus audio (.opus)
- Container: Ogg
- Original quality preserved
- Original audio parameters maintained
The extracted .opus files can be played with VLC media player, Firefox browser, or converted to other formats using FFmpeg.
Troubleshooting
Common Issues
- File Not Found Error
Error: Could not find file at [path]/Voice-en.pck
- Make sure the script is in the same directory as
Voice-en.pck
- Verify the PCK file name matches exactly
- Make sure the script is in the same directory as
- Invalid Format Error
Invalid file format - missing 'Filename' header
- Ensure you’re using the correct PCK file from the game
- Verify the file isn’t corrupted
Playing Opus Files
If you need to convert the Opus files to another format:
- Using FFmpeg:
ffmpeg -i input.opus output.mp3
- Using VLC:
- Open VLC
- Media -> Convert/Save
- Select Opus file and desired output format
Technical Details
PCK File Structure
The .pck
file format is a proprietary container format used by DOKAPON! Sword of Fury to store voice audio data. Here’s the detailed breakdown:
Header Section (0x000 - 0x013)
Filename X
- First 8 bytes: ASCII string “Filename”
- Next 12 bytes: Padding (spaces)
- Byte 20: ASCII character ‘X’ (marker)
Offset Table (0x014 - varies)
- Series of 4-byte little-endian integers
- Each integer represents the absolute offset to a voice file
- First offset typically starts at 0x5B0
Filename Table (varies - 0x5AF)
- Null-terminated ASCII strings
- Format: “V_XXXX.voice\0” where XXXX is a zero-padded number
- Special cases include split files like “V_0044_1.voice”
Pack Marker
- ASCII string “Pack”
- Located just before voice data starts
- Used as a separator between headers and data
Voice Data Section (0x5B0 - EOF)
- Opus audio streams in Ogg containers
- Each stream starts with “OggS” marker
- Each block starts at its corresponding offset
- Size determined by next file’s offset or EOF
Extraction Process
- Header Validation
header = file.read(16) if not header.startswith(b'Filename'): raise ValueError("Invalid file format")
- Filename Reading
filenames = [] while True: char = file.read(1).decode('ascii', errors='ignore') # Process filename characters
- Opus Stream Extraction
opus_start = find_opus_header(voice_data) if opus_start >= 0: # Extract Opus stream until next "OggS" marker
Opus Audio Format
The voice data is stored as Opus audio with these characteristics:
- Container: Ogg
- Codec: Opus
- Headers: Standard Opus headers present
- Quality: Original game quality preserved
Memory Considerations
- Files are processed in chunks (32KB for initial read, 4KB for streaming)
- Opus streams are extracted directly without transcoding
- Efficient handling of large files through streaming
Error Handling
The tool includes comprehensive error checking for:
- Invalid file formats
- Missing Opus streams
- File access issues
- Memory constraints
Contributing
Found a bug or want to improve the tool?
- Report issues on our GitHub repository
- Submit pull requests with improvements
- Share your findings on our Discord
License
This tool is licensed under The Unlicense. You can:
- ✅ Use freely for any purpose
- ✅ Modify and distribute without restrictions
- ✅ No attribution required
- ✅ Dedicated to public domain
- ✅ No warranty provided
See the LICENSE file for full details.