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

O que é MediaPlayer - Video and Audio Player?

MediaPlayer - Video and Audio Player é uma extensão do Chrome desenvolvida por InBasic, e sua principal característica é "A powerful media player built on top of the video.js project with HTTP Live Streaming (HSL), speed control, and playlist support".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MediaPlayer - Video and Audio Player

Baixe arquivos de extensão MediaPlayer - Video and Audio Player no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome MediaPlayer - Video and Audio Player MediaPlayer - Video and Audio Player
ID mgmhnaapafpejpkhdhijgkljhpcpecpj
URL Oficial https://chromewebstore.google.com/detail/mediaplayer-video-and-aud/mgmhnaapafpejpkhdhijgkljhpcpecpj
Descrição A powerful media player built on top of the video.js project with HTTP Live Streaming (HSL), speed control, and playlist support
Tamanho do Arquivo 1.17 MB
Contagem de Instalações 121,059
Versão Atual 0.4.6
Última Atualização 2024-01-22
Data de Publicação 2019-12-07
Classificação 3.89/5 Total de 108 Avaliações
Desenvolvedor InBasic
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://webextension.org/listing/the-media-player.html
URL da Página de Ajuda https://webextension.org/listing/the-media-player.html
URL da Página de Política de Privacidade https://add0n.com/policies/inb.cor.txt
Idiomas Suportados 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"
}