/MEGOLDVA/ Iframe- Jitsi furán működik, nem indul el sem a kamera, sem a mikrofon.

<html>
 <body>
    <iframe src="https://meet.jit.si/testingdfgtgsfr" height="800" width="600" >
    </iframe>
</body>
</html>

Ekkor csatlakozik ugyan a Jitsihez, viszont nem kapcsolható be sem a kamera, sem a mikrofon, azt mondja, hogy nem engedélyeztem őket. 

Mi miatt lesz ilyen a felület, ahelyett hogy rendesen mutatná?

Hozzászólások

rtfm

le van ott írva, hogy nem így kell. első találat google-ban

4 és fél éve csak vim-et használok. elsősorban azért, mert még nem jöttem rá, hogy kell kilépni belőle.

Valszeg nem raktad bele a javascriptet. Azért.

<script src='https://meet.jit.si/external_api.js'></script>

https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-iframe/

Szerk. Bocsi nem neked akartam írni, hanem a kérdezőnek.

“The basic tool for the manipulation of reality is the manipulation of words. If you can control the meaning of words, you can control the people who must use them.”

― Philip K. Dick

Szerkesztve: 2023. 01. 26., cs – 13:27

Megoldottam neked a házi feladatot egy félperc guglival. Fogyaszd egészséggel!

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Test Meet</title>
    <!-- change domain to match your Jitsi server -->
    <script src='https://meet.jit.si/external_api.js'></script>
    <style>
        html {
            overflow: auto;
        }

        html,
        body,
        div,
        iframe {
            margin: 0;
            padding: 0;
            height: 100%;
            border: none;
        }

    </style>
</head>
<body>
<div id='meet'></div>

<script>
    const domain = 'meet.jit.si';  // change domain to match your Jitsi server
    const options = {
        roomName: 'AUniqueMeetingRoomName',
        parentNode: document.querySelector('#meet'),
    };
    const api = new JitsiMeetExternalAPI(domain, options);
</script>
</body>
</html>

“The basic tool for the manipulation of reality is the manipulation of words. If you can control the meaning of words, you can control the people who must use them.”

― Philip K. Dick

Várjá, várjá: howto install ssh cert :)

“The basic tool for the manipulation of reality is the manipulation of words. If you can control the meaning of words, you can control the people who must use them.”

― Philip K. Dick

Szívesen. Próbáld meg értelmezni, hogy miért műkidik és hogyan működik. Így tanulhatsz belőle. Egyébként tényleg a javascript hiányzott belőle.

“The basic tool for the manipulation of reality is the manipulation of words. If you can control the meaning of words, you can control the people who must use them.”

― Philip K. Dick