MediaPlayer - Video and Audio Player

A powerful media player built on top of the video.js project with HTTP Live Streaming (HSL), speed control, and playlist support

Hvad er MediaPlayer - Video and Audio Player?

MediaPlayer - Video and Audio Player er en Chrome-udvidelse udviklet af InBasic, og dens hovedfunktion er "A powerful media player built on top of the video.js project with HTTP Live Streaming (HSL), speed control, and playlist support".

Udvidelsesskærmbilleder

screenshot

Download MediaPlayer - Video and Audio Player-udvidelses-CRX-fil

Download MediaPlayer - Video and Audio Player-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        The "Media Player" is a browser extension to play music and video files either locally or from online sources. This project aims to bring a VLC-liked media playing experience using native HTML5 technology. The add-on is built on top of the well-known "video.js" project by applying a few custom plug-ins to enhance the user experience. This player supports media boosting, speed control, playlist media selection, fullwidth-progress bar, HTTP-streaming (M3U8), cast to a remote device, and wave surfer visual for audio files.

How to Use (local resources):
Open the interface and drop the media link to it
How to Use (remote resources):
Open a video page like https://www.w3schools.com/html/html5_video.asp
Right-click on the player and select "Open in Media Player"

You can start watching an offline video file by dragging and dropping the video file into the player or pressing the big play button. To have the player load subtitle make sure to drop both video and subtitle files together (The dropped subtitle should have the same name as the file and needs to be in SRT or VTT format). Also, you can add a subtitle file later using the "+CC" button. This button appears when there is no subtitle found for the current track.

Extra Features:
1. Video casting: right-click on the player. If your browser supports this feature, you can transfer the media to a remote device.
2. Take a screenshot: Press the "screenshot" button on the player
3. 2x volume-boosting: Like VLC, you can boost the audio by 200%. Use the boosting feature when the volume is not loud enough.
4. Media Capturing: The player can optionally detect media files in the current tab and transfer them to the media player
5. Play in a separate window or inside a browser tab
6. Supports media keys even if the player is not focused
7. Supports native context menu on Chrome OS. You can right-click on the finder window (explorer) and use this player to open media files.

You can use your keyboard to control the following playback options:
1. "F" key: This will toggle the fullscreen mode on and off
2. "Space" key: This will toggle the playing state of the player
3. "Key Up" and "key Down": Increase or decrease volume.
4. "Key Left" and "Key Right": Seek backward and forward for 10 seconds.
5. "U" key: Shuffle playlist
6. "R" key: Toggle repeat, repeat one, and no-repeat
7. "S" key: Take s screenshot
8. "B" key: Boost volume (2x or 200%)
9. "O" key: Open network URLs

Change Log:
0.1.2:
1. Media Player now supports history (it will save the current track position and retrieves it after a restart)
2. Media player now supports global keyboard shortcuts for toggle pause and play state, moving to the previous track and moving to the next track
0.1.3:
1. Better playlist!
0.1.4:
1. For audio tracks, a seek-able wave-surfer is replaced with the old poster image
2. playback rate is now adjustable.
0.1.7:
1. Supports live stream (m3u8)
2. Supports folder drop and recursive media file search
0.2.3
1. Partial support for MKV video container
0.2.5
1. Better support for video/mkv format                    

Grundlæggende oplysninger om udvidelsen

Navn MediaPlayer - Video and Audio Player MediaPlayer - Video and Audio Player
ID mgmhnaapafpejpkhdhijgkljhpcpecpj
Officiel URL https://chromewebstore.google.com/detail/mediaplayer-video-and-aud/mgmhnaapafpejpkhdhijgkljhpcpecpj
Beskrivelse A powerful media player built on top of the video.js project with HTTP Live Streaming (HSL), speed control, and playlist support
Filstørrelse 1.17 MB
Antal Installationer 121,059
Nuværende Version 0.4.6
Senest Opdateret 2024-01-22
Udgivelsesdato 2019-12-07
Bedømmelse 3.89/5 Samlet 108 Bedømmelser
Udvikler InBasic
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://webextension.org/listing/the-media-player.html
Hjælpeside-URL https://webextension.org/listing/the-media-player.html
URL til Fortrolighedspolitik Side https://add0n.com/policies/inb.cor.txt
Understøttede Sprog de,en,fr,nl,es,it,pl,pt-BR,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.4.6",
    "name": "MediaPlayer - Video and Audio Player",
    "description": "__MSG_description__",
    "default_locale": "en",
    "background": {
        "service_worker": "worker.js"
    },
    "offline_enabled": true,
    "permissions": [
        "storage",
        "contextMenus",
        "notifications"
    ],
    "optional_permissions": [
        "activeTab",
        "scripting",
        "declarativeNetRequestWithHostAccess"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/*"
    ],
    "action": [],
    "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"
    },
    "commands": {
        "_execute_action": [],
        "previous-track": {
            "description": "Previous Track"
        },
        "next-track": {
            "description": "Next Track"
        },
        "toggle-play": {
            "description": "Toggle Play\/Pause"
        }
    },
    "file_handlers": [
        {
            "action": "\/file_handlers\/index.html",
            "name": "Open with MediaPlayer",
            "accept": {
                "video\/avi": [
                    ".avi"
                ],
                "video\/mp4": [
                    ".mp4"
                ],
                "video\/webm": [
                    ".webm"
                ],
                "video\/x-flv": [
                    ".flv"
                ],
                "video\/quicktime": [
                    ".mov"
                ],
                "video\/ogg": [
                    ".ogv"
                ],
                "video\/3gpp": [
                    ".3gp"
                ],
                "video\/mpeg": [
                    ".mpg"
                ],
                "video\/x-ms-wmv": [
                    ".wmv"
                ],
                "application\/x-shockwave-flash": [
                    ".swf"
                ],
                "video\/x-matroska": [
                    ".mkv"
                ],
                "video\/dvd": [
                    ".vob"
                ],
                "audio\/pcm": [
                    ".pcm"
                ],
                "audio\/wav": [
                    ".wav"
                ],
                "audio\/aac": [
                    ".aac"
                ],
                "audio\/ogg": [
                    ".ogg"
                ],
                "audio\/x-ms-wma": [
                    ".wma"
                ],
                "audio\/flac": [
                    ".flac"
                ],
                "audio\/midi": [
                    ".mid"
                ],
                "audio\/x-matroska": [
                    ".mka"
                ],
                "audio\/mp4": [
                    ".m4a"
                ],
                "audio\/voc": [
                    ".voc"
                ],
                "audio\/mpeg": [
                    ".mp3"
                ],
                "application\/vnd.apple.mpegurl": [
                    ".m3u8"
                ]
            },
            "launch_type": "single-client"
        }
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/the-media-player.html"
}