Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. MiroTalk
  3. MiroTalk SFU: Recording not possible?

MiroTalk SFU: Recording not possible?

Scheduled Pinned Locked Moved MiroTalk
51 Posts 4 Posters 424 Views 4 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • jamesJ james

    Hello @shrey
    Just to make doubly so sure, please share your installed app version and confirm that you have restarted the app after the /app/data/env changes.

    S Offline
    S Offline
    shrey
    wrote last edited by
    #41

    @james

    MiroTalk SFU 2.0.17

    f539dd60-2ff9-47aa-8e86-557a3643e2a4-image.png

    1 Reply Last reply
    0
    • jamesJ Offline
      jamesJ Offline
      james
      Staff
      wrote last edited by james
      #42

      Ah, I see your issue. You are still using AWS_S3_BUCKET_NAME and not AWS_S3_BUCKET which was posted to be the wrong variable and fixed upstream.
      Small detail, leading to fail.
      Change AWS_S3_BUCKET_NAME to AWS_S3_BUCKET restart and it should be working.

      S 1 Reply Last reply
      1
      • jamesJ james

        Ah, I see your issue. You are still using AWS_S3_BUCKET_NAME and not AWS_S3_BUCKET which was posted to be the wrong variable and fixed upstream.
        Small detail, leading to fail.
        Change AWS_S3_BUCKET_NAME to AWS_S3_BUCKET restart and it should be working.

        S Offline
        S Offline
        shrey
        wrote last edited by shrey
        #43

        @james said in MiroTalk SFU: Recording not possible?:

        Change AWS_S3_BUCKET_NAME to AWS_S3_BUCKET restart and it should be working.

        Thanks!
        That did get it working.


        @mirotalk-57bab571 Just one more kink remaining:

        When i 'disconnect' the call without stopping the recording, the Recording seems to get saved only in the local directory, and not S3. The S3 upload seems to be triggered only when an ongoing recording is stopped explicitly.

        jamesJ 1 Reply Last reply
        2
        • S shrey

          @james said in MiroTalk SFU: Recording not possible?:

          Change AWS_S3_BUCKET_NAME to AWS_S3_BUCKET restart and it should be working.

          Thanks!
          That did get it working.


          @mirotalk-57bab571 Just one more kink remaining:

          When i 'disconnect' the call without stopping the recording, the Recording seems to get saved only in the local directory, and not S3. The S3 upload seems to be triggered only when an ongoing recording is stopped explicitly.

          jamesJ Offline
          jamesJ Offline
          james
          Staff
          wrote last edited by
          #44

          Hello @shrey

          @shrey said in MiroTalk SFU: Recording not possible?:

          The S3 upload seems to be triggered only when an ongoing recording is stopped explicitly.

          Oh, so you mean if the meeting is exited by a recording member, his recording is not stopped and thus never saved/uploaded?
          Could you give more details about what you'd expect and what the current behavior is that you have observed?

          S 1 Reply Last reply
          0
          • jamesJ james

            Hello @shrey

            @shrey said in MiroTalk SFU: Recording not possible?:

            The S3 upload seems to be triggered only when an ongoing recording is stopped explicitly.

            Oh, so you mean if the meeting is exited by a recording member, his recording is not stopped and thus never saved/uploaded?
            Could you give more details about what you'd expect and what the current behavior is that you have observed?

            S Offline
            S Offline
            shrey
            wrote last edited by shrey
            #45

            @james
            Current behaviour:

            1. I start a meeting as Host
            2. Start the Recording (only Host is allowed to record)
            3. Once meeting is over, i stop the meeting by clicking on "Leave Room"
            4. The recording is available in /app/data/rec but not in S3.

            If, in Step 3:
            i stop the Recording and then stop the meeting, only then the Recording gets uploaded to S3.

            Expectation:
            Recording should get uploaded to S3 regardless of the path taken to 'stop' the meeting and without explicitly stopping the recording.

            MiroTalkM 2 Replies Last reply
            2
            • S Offline
              S Offline
              shrey
              wrote last edited by
              #46

              Additionally, it seems like if:
              Start recording > [time elapses] > Stop recording > Start Recording again > [time elapses] > Stop Recording/Exit Meeting
              Only the last recording gets saved (overwriting the first part).

              1 Reply Last reply
              0
              • MiroTalkM Away
                MiroTalkM Away
                MiroTalk
                wrote last edited by MiroTalk
                #47

                ⚠ IMPORTANT Update in MiroTalk SFU v.2.0.19

                To avoid confusion, I’ve updated the environment variables and configuration keys to use a global S3_ prefix. This makes the configuration compatible with any S3-compatible storage, not just AWS.

                Example: DigitalOcean Spaces Configuration

                # Recording
                RECORDING_UPLOAD_TO_S3=true           # Upload recordings to S3-compatible storage (MinIO, Wasabi, DigitalOcean Spaces, etc.) (true|false)
                
                # S3-Compatible Storage Configuration
                S3_ENABLED=true                       # Enable S3-compatible storage (true/false)
                S3_ACCESS_KEY_ID=<key_id>             # Access Key ID (optional if using instance credentials or IAM roles)
                S3_SECRET_ACCESS_KEY=<key_secret>     # Secret Access Key (optional if using instance credentials or IAM roles)
                S3_BUCKET=<bucket>                    # Name of your bucket (must already exist)
                S3_REGION=<region>                    # Region or location (e.g., us-east-2, eu-west-2, or custom for non-AWS providers)
                S3_ENDPOINT=https://<region>.digitaloceanspaces.com  # Custom endpoint for S3-compatible services (MinIO, Wasabi, DigitalOcean Spaces, etc.)
                S3_FORCE_PATH_STYLE=true              # Use path-style URLs (true/false). Typically true for non-AWS providers
                

                Notes:

                • S3_ENDPOINT is optional if your provider supports automatic resolution from the region.
                • S3_FORCE_PATH_STYLE=true is usually required for providers like MinIO, Wasabi, or DigitalOcean Spaces.
                1 Reply Last reply
                2
                • S shrey

                  @james
                  Current behaviour:

                  1. I start a meeting as Host
                  2. Start the Recording (only Host is allowed to record)
                  3. Once meeting is over, i stop the meeting by clicking on "Leave Room"
                  4. The recording is available in /app/data/rec but not in S3.

                  If, in Step 3:
                  i stop the Recording and then stop the meeting, only then the Recording gets uploaded to S3.

                  Expectation:
                  Recording should get uploaded to S3 regardless of the path taken to 'stop' the meeting and without explicitly stopping the recording.

                  MiroTalkM Away
                  MiroTalkM Away
                  MiroTalk
                  wrote last edited by
                  #48

                  @shrey said in MiroTalk SFU: Recording not possible?:

                  If, in Step 3:
                  i stop the Recording and then stop the meeting, then the Recording gets uploaded to S3.

                  Thanks for pointing that out! I’ll take a look.

                  1 Reply Last reply
                  2
                  • S shrey

                    @james
                    Current behaviour:

                    1. I start a meeting as Host
                    2. Start the Recording (only Host is allowed to record)
                    3. Once meeting is over, i stop the meeting by clicking on "Leave Room"
                    4. The recording is available in /app/data/rec but not in S3.

                    If, in Step 3:
                    i stop the Recording and then stop the meeting, only then the Recording gets uploaded to S3.

                    Expectation:
                    Recording should get uploaded to S3 regardless of the path taken to 'stop' the meeting and without explicitly stopping the recording.

                    MiroTalkM Away
                    MiroTalkM Away
                    MiroTalk
                    wrote last edited by
                    #49

                    @shrey said in MiroTalk SFU: Recording not possible?:

                    Expectation:
                    Recording should get uploaded to S3 regardless of the path taken to 'stop' the meeting and without explicitly stopping the recording.

                    ✔ Done in MiroTalk SFU v.2.0.20

                    • Commit
                    • Build
                    1 Reply Last reply
                    2
                    • nebulonN Away
                      nebulonN Away
                      nebulon
                      Staff
                      wrote last edited by
                      #50

                      package with version 2.0.20 is out now

                      1 Reply Last reply
                      1
                      • MiroTalkM Away
                        MiroTalkM Away
                        MiroTalk
                        wrote last edited by MiroTalk
                        #51

                        Ops WIP: [Server] Rec Finalization error 'Invalid room ID'

                        Edit: Done in MiroTalk SFU v2.0.24

                        1 Reply Last reply
                        0
                        Reply
                        • Reply as topic
                        Log in to reply
                        • Oldest to Newest
                        • Newest to Oldest
                        • Most Votes


                        • Login

                        • Don't have an account? Register

                        • Login or register to search.
                        • First post
                          Last post
                        0
                        • Categories
                        • Recent
                        • Tags
                        • Popular
                        • Bookmarks
                        • Search