Audio Player

FFmpeg-based audio player that supports a wide range of audio codecs

Τι είναι το Audio Player;

Το Audio Player είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον chandler.stimson, και η κύρια λειτουργία του είναι "FFmpeg-based audio player that supports a wide range of audio codecs".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Audio Player

Λήψη αρχείων επέκτασης Audio Player σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Features:
Volume Boost: It can boost the audio level up to twice its original value, similar to VLC Player.
Format Support: It plays a wide range of audio formats and can handle audio streams from video containers.
Media Key Support: Supports media keys for Play, Pause, Resume, Next, and Previous tracks.
Sequential Playback: Plays multiple audio files sequentially, emulating the behavior of a desktop media player.
Offline Usage: Works offline, meaning it doesn't require an internet connection once installed.
JavaScript-based: The extension is written purely in JavaScript, making it a cross-platform solution.
Shuffle and Repeat: It offers options to shuffle the playlist and repeat a single track or all tracks.
Keyboard Shortcuts: Supports keyboard shortcuts for various functions.
Playlist Support: Allows users to create and manage playlists within the player.
Native Integration: Integrates natively with ChromeOS and Chrome OS Flex, enabling media file handling through the right-click context menu.
Use Cases:
OS Limitations: It's useful for users on operating systems that do not allow the installation of native media players or on Chromium OS.
Audio Stream Playback: It is handy when you only want to listen to the audio from a media file, like a concert recording.
How to Use:
To use the extension, download an audio file that your browser can't play due to unsupported codecs and drop it into the audio player. You can obtain sample AVI or FLV files for testing using a specific website (https://webbrowsertools.com/test-download-with/).

Technical Notes:
The extension uses the decoder section of the FFmpeg library, enabling it to decode various audio codecs.
It uses Emscripten to compile FFmpeg into WebAssembly (WASM), making it compatible with web browsers.

This extension is a handy solution for users looking to play a wide range of audio formats directly within their web browser, even when their operating system restricts the installation of native media players. It provides extensive format support, advanced features, and native integration for an enhanced user experience.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Audio Player Audio Player
ID kidaobgibidickkdbapmeekkaejkacma
Επίσημο URL https://chromewebstore.google.com/detail/audio-player/kidaobgibidickkdbapmeekkaejkacma
Περιγραφή FFmpeg-based audio player that supports a wide range of audio codecs
Μέγεθος Αρχείου 3.64 MB
Αριθμός Εγκαταστάσεων 10,000
Τρέχουσα Έκδοση 0.2.6
Τελευταία Ενημέρωση 2023-10-13
Ημερομηνία Δημοσίευσης 2020-09-08
Αξιολόγηση 3.92/5 Συνολικά 13 Αξιολογήσεις
Προγραμματιστής chandler.stimson
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://webextension.org/listing/audio-player.html
Διεύθυνση URL της Σελίδας Βοήθειας https://webextension.org/listing/audio-player.html
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.2.6",
    "name": "Audio Player",
    "description": "FFmpeg-based audio player that supports a wide range of audio codecs",
    "permissions": [
        "storage",
        "contextMenus",
        "fileBrowserHandler",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "background": {
        "scripts": [
            "\/v2\/chrome.action.js",
            "\/v2\/chrome.contextMenus.create.js",
            "\/v2\/chrome.runtime.js",
            "\/v2\/chrome.windows.create.js",
            "\/v2\/chrome.windows.get.js",
            "\/v2\/chrome.windows.getCurrent.js",
            "worker.js"
        ]
    },
    "content_security_policy": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'",
    "homepage_url": "https:\/\/webextension.org\/listing\/audio-player.html",
    "commands": {
        "_execute_browser_action": []
    },
    "file_browser_handlers": [
        {
            "id": "open-media",
            "default_title": "Open with Audio Player",
            "file_filters": [
                "filesystem:*.avi",
                "filesystem:*.mp4",
                "filesystem:*.webm",
                "filesystem:*.flv",
                "filesystem:*.mov",
                "filesystem:*.ogv",
                "filesystem:*.3gp",
                "filesystem:*.mpg",
                "filesystem:*.wmv",
                "filesystem:*.swf",
                "filesystem:*.mkv",
                "filesystem:*.pcm",
                "filesystem:*.wav",
                "filesystem:*.aac",
                "filesystem:*.ogg",
                "filesystem:*.wma",
                "filesystem:*.flac",
                "filesystem:*.mid",
                "filesystem:*.mka",
                "filesystem:*.m4a",
                "filesystem:*.voc",
                "filesystem:*.mp3"
            ]
        }
    ],
    "browser_action": []
}