Audio Pipes

Use the Audio Pipes extension to stream audio between any webpage that utilises Web Audio. Originally developed for the music…

Audio Pipesคืออะไร?

Audio Pipes เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.watchthatsound.nl และคุณลักษณะหลักของมันคือ "Use the Audio Pipes extension to stream audio between any webpage that utilises Web Audio. Originally developed for the music…"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Audio Pipes

ดาวน์โหลดไฟล์ส่วนขยาย Audio Pipes ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Use the Audio Pipes extension to stream audio between any webpage that utilises Web Audio.
Originally developed for the music educational app Watch That Sound.
The user can choose and select which web audio pages to connect.

After installing Audio Pipes.
a) Start with this example: https://app.watchthatsound.nl/#movie=WTSp_025_VJDennisWTS1/view=audio you see the audio recording page of the Watch That Sound app.

b) Open a webpage of a web audio instrument. For example: http://nicroto.github.io/viktor/  or https://io808.com/

c) Explore it and make some sounds.

d) Select in the source-destination menu the url of the webpage as Source and the Watch That Sound app as Destination

More info : https://vimeo.com/290287853

Technical background:
This extension makes it possible to stream audio between any webpage that utilises web audio. 

Originally developed for the music educational app. Watch That Sound.
The user can choose and select which web audio pages to connect. We will present a use case in which the Watch That Sound webapp is connected as a consumer of various webpages that produce audio.
A script is injected on a webpage that checks whether audio is produced or consumed on the page.
The user can then select which pages to connect, after which a WebRTC connection is made between those pages. 
For more info and source code: http://github.com/JanMisker/Audio-Pipes                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Audio Pipes Audio Pipes
ID ebmfdpppokkplmndpamkhbmochcdlefp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/audio-pipes/ebmfdpppokkplmndpamkhbmochcdlefp
คำอธิบาย Use the Audio Pipes extension to stream audio between any webpage that utilises Web Audio. Originally developed for the music…
ขนาดไฟล์ 66.01 KB
จำนวนการติดตั้ง 392
เวอร์ชันปัจจุบัน 0.6.0
อัปเดตครั้งล่าสุด 2021-06-10
วันที่เผยแพร่ 2018-11-05
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://www.watchthatsound.nl
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,nl
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "author": "Jan Misker",
    "version": "0.6.0",
    "default_locale": "en",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [],
    "browser_action": {
        "default_title": "__MSG_appName__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "js\/inject-tracing.js"
            ],
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "images\/*",
        "js\/*"
    ],
    "icons": {
        "48": "images\/icon.png",
        "128": "images\/icon.png"
    }
}