Announcement

Collapse
No announcement yet.

Looking for mods on lecture forum

Collapse
X
Collapse
First Prev Next Last
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Looking for mods on lecture forum

    Hi,

    We are a forum that posts long lectures so I'm looking for mods that can embed mp3's, Soundcloud and other media.

    Thx so much for this,

    Theltb

    #2
    Welcome to vBMods.rocks!

    These mods might be the ones you are looking for:

    Integrate SoundCloud audio embed into your forums using custom BB Codes. Go to AdminCP > Custom BB Codes > Add New BB Code and enter the following

    This is a vB5 mod that transforms existing audio file attachments into an HTML5 Audio player. Click image for larger version Name: image.png Views: 1 Size: 47.3
    Helpful? Donate. Thanks!
    Buy me a coffeePayPal QR Code
    Fast VPS Host for vBulletin:
    A2 Hosting & IONOS

    Comment


      #3
      The SoundCloud mod was excellent but the lectures are private and they don't allow for embedding private podcasts.

      Do you have any integration for my vb cloud forum to allow embedding of podcasts? I tried simplecast and couldn't get it to work with Vbulletin, if you know of any that would work, that would really help. I like your player, but I'm looking for something with more rewind FF capabilites on 90 minute lectures. Thx

      Comment


        #4
        If the podcasts are private and not publicly accessible, how can any embed work? Can Simplecast embed private podcasts? Doesn't it also need the podcasts to be public? If they do, then I could take a look on how to make the embed work with vB.
        Helpful? Donate. Thanks!
        Buy me a coffeePayPal QR Code
        Fast VPS Host for vBulletin:
        A2 Hosting & IONOS

        Comment


          #5
          I think they allow private podcasts b/c I tried adding the custom BB code and it ended up working in posts, but then I realized the code I insterted was for a particular lecture and that was the only one that would play no matter what I linked in the post (but it DID embed the player in the post!).

          Comment


            #6
            Can you show me a sample Simplecast embed code?
            Helpful? Donate. Thanks!
            Buy me a coffeePayPal QR Code
            Fast VPS Host for vBulletin:
            A2 Hosting & IONOS

            Comment


              #7
              Sure, thanks Glenn

              <iframe height="200px" width="100%" frameborder="no" scrolling="no" seamless src="https://player.simplecast.com/f80709bb-4309-49b3-a028-8f8d3049b3e9?dark=false"></iframe>

              (it's a song I just recorded and was experimenting with on the embedding)

              Comment


                #8
                I'm not a programmer, don't really know what I'm doing, but I tried deleting the part of the code that looked like it was pointing to a specific track ID (in this case f80709bb-4309-49b3-a028-8f8d3049b3e9). But that didn't work.

                Comment


                  #9
                  This code works on my test forum

                  Code:
                  Title: Simplecast
                  BB Code Tag Name: simplecast
                  
                  Replacement:
                  <iframe height="200px" width="100%" frameborder="no" scrolling="no" seamless src="https://player.simplecast.com/{param}?dark=false"></iframe>
                  
                  Code:
                  [simplecast]f80709bb-4309-49b3-a028-8f8d3049b3e9[/simplecast]
                  
                  Use {option}: No
                  Remove Tag If Empty: Yes
                  and the rest to No
                  Click image for larger version  Name:	simplecast.png Views:	0 Size:	51.6 KB ID:	24115
                  Last edited by glennrocksvb; 03-01-2022, 03:06 PM.

                  Comment


                  • glennrocksvb
                    glennrocksvb commented
                    Editing a comment
                    You are missing "<" in the opening <iframe> tag or is it just a typo in your post?

                  • lange
                    lange commented
                    Editing a comment
                    Yes, i forgot it in my copy-paste. Sorry.

                  • glennrocksvb
                    glennrocksvb commented
                    Editing a comment
                    No worries, I corrected it in case someone copies the code from this post.

                  #10
                  Try this as Replacement code when creating the AnyCast BBCode in AdminCP BBCode Manager:

                  HTML Code:
                  <iframe height="200px" width="100%" frameborder="no" scrolling="no" seamless src="https://player.simplecast.com/{param}?dark=false"></iframe>
                  Then to use:
                  [anycast]f80709bb-4309-49b3-a028-8f8d3049b3e9[/anycast]
                  Replace anycast with whatever BBCode tag name you want to use.
                  Helpful? Donate. Thanks!
                  Buy me a coffeePayPal QR Code
                  Fast VPS Host for vBulletin:
                  A2 Hosting & IONOS

                  Comment


                  • glennrocksvb
                    glennrocksvb commented
                    Editing a comment
                    Didn't see your post before I posted this. We're basically doing the same thing.

                  • glennrocksvb
                    glennrocksvb commented
                    Editing a comment
                    Oh it was lange who posted the code not theltf

                  • lange
                    lange commented
                    Editing a comment
                    My code works ;-)

                    Thanks to theItf for the idea.

                  #11
                  Amazingly this seems to work! THANKS!!!

                  Comment


                    #12
                    I posted this BBCode as its own dedicated topic.

                    https://vbmods.rocks/forum/vbulletin...plecast-bbcode

                    Thanks lange and theltf
                    Helpful? Donate. Thanks!
                    Buy me a coffeePayPal QR Code
                    Fast VPS Host for vBulletin:
                    A2 Hosting & IONOS

                    Comment


                      #13
                      They have this great feature on SimpleCast called "Recast" where you can take a 30 second snippet of any podcast and share that separately. They provide a different embed code for the snippet. Here's the embed code for a random 30 seconds of the previous clip that I posted:

                      <iframe src="https://player.simplecast.com/recast/32f59762-31ce-52b9-b34e-dc950277d580" height="600" width="600" title="Flow" frameborder="0" scrolling="no"></iframe>

                      How would I embed that in a post? Do I have to create a different BB code or can I use the pre-existing SimpleCast code? I see they have it saved to a different directory (they save the snippet to a recast directory
                      (https://player.simplecast.com/recast/32f59762-31ce-52b9-b34e-dc950277d580)

                      I tried a bunch of different things with no luck,

                      Really much thanks.

                      Comment


                        #14
                        Since Recast has a different URL structure, you should create a separate BBCode tag for it. The Replacement code should have the iframe src pointing to the /recast URL path like this:

                        HTML Code:
                        <iframe src="https://player.simplecast.com/recast/{param}" height="600" width="600" frameborder="0" scrolling="no"></iframe>
                        Helpful? Donate. Thanks!
                        Buy me a coffeePayPal QR Code
                        Fast VPS Host for vBulletin:
                        A2 Hosting & IONOS

                        Comment


                          #15
                          Yup, that's it! Wow.

                          Comment

                          Users Viewing This Page

                          Collapse

                          There is 1 user viewing this forum topic.

                          • Guest Guest

                          Latest Posts

                          Collapse

                          Working...
                          X
                          Searching...Please wait.
                          An unexpected error was returned: 'Your submission could not be processed because you have logged in since the previous page was loaded.

                          Please push the back button and reload the previous window.'
                          An unexpected error was returned: 'Your submission could not be processed because the token has expired.

                          Please push the back button and reload the previous window.'
                          An internal error has occurred and the module cannot be displayed.
                          There are no results that meet this criteria.
                          Search Result for "|||"