Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Participant cannot see image if moderator paste image inside whiteboard #12

Open
lancerex93 opened this issue Jul 19, 2023 · 8 comments

Comments

@lancerex93
Copy link

Just play around with your whiteboard from meet.jit.si and I found bug where participant cannot see the image if moderator export/paste image into whiteboard. here screenshot for moderator and participant:

moderator
moderator screenshot

participant
participant screenshot

@MorganReid
Copy link

MorganReid commented Aug 31, 2023

I met the same problem as you. Have you solved it now?There is no error message in the browser console and jvb.log and jicofo.log also have no log information

@vpzomtrrfrt
Copy link

images are not currently supported, see jitsi/jitsi-meet#13776

@ehudettun
Copy link

Having this feature will be super helpful. If anyone have a solution please let us know!

@filwu8
Copy link

filwu8 commented May 8, 2024

i just have little exp for deployment excalidraw
i used excalidraw-server + excalidraw-room + excalidraw-storage-backend + redis
participant cannot see the image if moderator export/paste image into whiteboard,
The problem lies with excalidraw-storage-backend port:
i't's ok when i set right port through firewall
image
a88260966b09852876243dd3afd50f3

or reference only

@ehudettun
Copy link

Hi guys, thought I'd share my workaround here in case it helps anyone. I wend into the config file, and changed the etherpad base url to my own server. Within my sevrer I had to accept get requests on the path jitsi is sending data to (which is built for etherpad, so there's a bunch of unrelated parameters), and I used this data to call a whiteboard from pixelpaper.io, which has a super easy api and supports pictures upload.

It took some time to figure out how to do it, but it ended up being quite easy. I'm happy to share the code if people are interested.

@escoolioinglesias
Copy link

Hi guys, thought I'd share my workaround here in case it helps anyone. I wend into the config file, and changed the etherpad base url to my own server. Within my sevrer I had to accept get requests on the path jitsi is sending data to (which is built for etherpad, so there's a bunch of unrelated parameters), and I used this data to call a whiteboard from pixelpaper.io, which has a super easy api and supports pictures upload.

It took some time to figure out how to do it, but it ended up being quite easy. I'm happy to share the code if people are interested.

Yes, please 🙏

@ehudettun
Copy link

ehudettun commented Oct 20, 2024

So basically, you host this file somewhere (if you need it dynamic you can use PHP to pass in variables like name of the room, user, etc.

Then in the jitsi config file, instead of the etherpad URL which is defined by default, just change it to the path where you uploaded this file to.

<html>
    <head>
        <link rel="stylesheet" href="https://cdn.pixelpaper.io/styles.css">
    </head>
    <body>
        <div id="comet-container"></div>
<script src="https://cdn.pixelpaper.io/comet.js"></script>
<script>
       let pixel = new Comet({

room: 'abc',

key: 'your key from pixelpaper',

name: 'the-name-of-the-user-joining',

permissions: 'RW', // optional.

zoom_min: 0.1, // optional.

zoom_max: 3, // optional.

wheel: 'zoom', // optional.

recenter_behaviour: 'fit' // optional.


});
</script>
    </body>
</html>

@GreyZver
Copy link

Hi!

I’ve been encountering issues with adding images to the Excalidraw whiteboard in Jitsi. This isn’t the first time I’m setting up this application alongside Jitsi, but I’m running into difficulties every time I try to add images to the whiteboard.

At this point, I’m starting to feel like this functionality might be either unavailable or I might not fully understand the process for adding images. I’ve tried different approaches, but I haven’t been able to achieve the desired result.

I would appreciate any clarifications or guidance on the correct way to add images to the whiteboard.

Thanks in advance!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants