Skip to content

Commit

Permalink
Update languages on readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrews54757 committed Jul 29, 2024
1 parent ae5aedd commit 7404f27
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
web-ext-artifacts
node_modules
built
built
output/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Tired of having to wait while videos buffer? Frustrated by a website's lack of a
2. Advanced subtitling features include: customizable subtitle appearance, built-in OpenSubtitles support to find subtitles on the internet, and an intuitive subtitle syncing tool to adjust subtitle timings on the fly.
3. Adjustable audio dynamics (equalizer, compressor, mixer, volume booster), and video settings (brightness, contrast, hue, LMS daltonization for color blindness) for your unique audiovisual preferences.
4. 20+ remappable keybinds and accessible tool buttons for easy control of the player.
5. Available in multiple languages! Translated into Spanish and Japanese by the FastStream community. Support for more languages is coming soon!
5. Available in multiple languages! Translated into Spanish, Japanese, Russian, and Malay by the FastStream community. Support for more languages is coming soon!

The player currently supports:
- MP4 videos (.mp4)
Expand Down
7 changes: 6 additions & 1 deletion fsaunpack/unpack.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,12 @@ for (let i = 0; i < header.number_of_entries; i++) {
fs.writeFileSync(`${outputDir}/${i}.bin`, data);
}

console.log(`Entry ${i}: Size: ${dataSize}, URL: ${entryHeader.url}`);
let urlTrun = entryHeader.url;
if (urlTrun.length > 30) {
urlTrun = urlTrun.substring(0, 30) + '...';
}

console.log(`Entry ${i}: Size: ${dataSize}, URL: ${urlTrun}`);
}

// read entries
Expand Down

0 comments on commit 7404f27

Please sign in to comment.