The forum of the forums

Would you like to react to this message? Create an account in a few clicks or log in to continue.
The forum of the forums
4 posters

    Upload MP3 file to my website.

    avatar
    Guest
    Guest


    Solved Upload MP3 file to my website.

    Post by Guest January 9th 2015, 7:51 am

    Hey!

    I've got a webshop using a MP3 music file as background music, but I want to replace it with another MP3 file I've got currently stored locally and keep it somewhere on my board. Is that possible? And how? I've got 50 Mb of free storage space and the MP3 file is about 43 Mb of size. The link to the MP3 file should be available to use it in my HTML page.

    Website: http://fcnl.actieforum.com
    Version: phpBB3

    Thanks in advance! Hello 

    Samantha.


    Last edited by SamanthaS on January 12th 2015, 2:09 am; edited 1 time in total
    Mad Scientist
    Mad Scientist
    New Member


    Male Posts : 18
    Reputation : 2
    Language : English

    Solved Re: Upload MP3 file to my website.

    Post by Mad Scientist January 11th 2015, 9:39 pm

    Hello @SamanthaS,

    Music on your board is usually a bad idea since people usually get annoyed by those. It takes additional data to load, plus some people might be listening to something else at the moment of browsing your site and then your song pops up. But, if you insist on using it, I suggest you to simply embed youtube video to your song. Try to use video that has only lyrics or static image because that will load faster and then just embed it with disabling video on it (showing just the player commands bar) and you can even enable autostart. That way, people will be able to stop the song if they get annoyed by it. Of course if you insist on not showing them the player with options, you can simply hide it with CSS.
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19325
    Reputation : 2005
    Language : fluent in dork / mumbojumbo & English haha

    Solved Re: Upload MP3 file to my website.

    Post by Ape January 11th 2015, 11:25 pm

    Hi ya @SamanthaS

    No sorry we do not host MP3 files on our data system you will have to google a MP3 file sharing site for that

    Sorry

    APE



    Upload MP3 file to my website. Left1212Upload MP3 file to my website. Center11Upload MP3 file to my website. Right112
    Upload MP3 file to my website. Ape_b110
    Upload MP3 file to my website. Ape1010
    avatar
    Guest
    Guest


    Solved Re: Upload MP3 file to my website.

    Post by Guest January 12th 2015, 2:08 am

    APE wrote:Hi ya @SamanthaS

    No sorry we do not host MP3 files on our data system you will have to google a MP3 file sharing site for that

    Sorry

    APE

    Thanks for looking into this, @APE. I thought I saw it somewhere within the attachment system. It was for my webshop, remember? I changed the song already. Topic solved & locked, please. Smile

    PS: If you don't mind I won't comment on @Mad Scientist's story.
    Mad Scientist
    Mad Scientist
    New Member


    Male Posts : 18
    Reputation : 2
    Language : English

    Solved Re: Upload MP3 file to my website.

    Post by Mad Scientist January 12th 2015, 2:40 am

    Okay, my post sounded like something impossible to do, sorry about that.

    Let me show you what I mean:

    Code:
    <object style="width: 200px; height: 24px;"><param id="movie" value="https://www.youtube.com/watch?v=[b][color=#3399ff]9bZkp7q19f0[/color][/b]?autoplay=1&rel=0&fs=0&autohide=0" /><param id="allowFullScreen" value="false" /><param id="allowscriptaccess" value="always" /><embed style="width: 200px; height: 24px;" src="http://www.youtube.com/v/9bZkp7q19f0?autoplay=1&rel=0&fs=0&autohide=0" type="application/x-shockwave-flash" allowfullscreen="false" allowscriptaccess="always" /></object>



    Normal youtube link looks like this:

    https://www.youtube.com/watch?v=9bZkp7q19f0

    Just take that colored video code and place it at this place in the above code:

    https://www.youtube.com/v/9bZkp7q19f0

    Note that this link appears twice in the code so you will have to change it on both places.

    Now, to use this code, just paste it somewhere on your site where HTML is enabled, like Widgets etc. Try it out and you will see how easy is to play songs like that. If you want to make it hidden, just put width and height to 1px (on both places). Simple as that. If your song is not already on youtube (which I highly doubt will happen), then you can always upload it to youtube and then use it. Youtube is the best song hosting service, simply said. Plus I don't think you want to load 43 MB song in your website (even if your song in youtube is 43MB, which again is hard to accomplish due to compression rate there), when your youtube video loads, it won't load whole thing immediately, just part by part as the song goes, which is again great.

    I know you marked topic as solved, but maybe this solution will be useful for you in future. Enjoy.
    avatar
    Guest
    Guest


    Solved Re: Upload MP3 file to my website.

    Post by Guest January 12th 2015, 2:51 am

    Mad Scientist wrote:
    Okay, my post sounded like something impossible to do, sorry about that.

    Let me show you what I mean:

    Code:
    <object style="width: 200px; height: 24px;"><param id="movie" value="https://www.youtube.com/watch?v=[b][color=#3399ff]9bZkp7q19f0[/color][/b]?autoplay=1&rel=0&fs=0&autohide=0" /><param id="allowFullScreen" value="false" /><param id="allowscriptaccess" value="always" /><embed style="width: 200px; height: 24px;" src="http://www.youtube.com/v/9bZkp7q19f0?autoplay=1&rel=0&fs=0&autohide=0" type="application/x-shockwave-flash" allowfullscreen="false" allowscriptaccess="always" /></object>



    Normal youtube link looks like this:

    https://www.youtube.com/watch?v=9bZkp7q19f0

    Just take that colored video code and place it at this place in the above code:

    https://www.youtube.com/v/9bZkp7q19f0

    Note that this link appears twice in the code so you will have to change it on both places.

    Now, to use this code, just paste it somewhere on your site where HTML is enabled, like Widgets etc. Try it out and you will see how easy is to play songs like that. If you want to make it hidden, just put width and height to 1px (on both places). Simple as that. If your song is not already on youtube (which I highly doubt will happen), then you can always upload it to youtube and then use it. Youtube is the best song hosting service, simply said. Plus I don't think you want to load 43 MB song in your website (even if your song in youtube is 43MB, which again is hard to accomplish due to compression rate there), when your youtube video loads, it won't load whole thing immediately, just part by part as the song goes, which is again great.

    I know you marked topic as solved, but maybe this solution will be useful for you in future. Enjoy.

    Thanks, but my codes were implemented years ago...

    Widget code:
    Code:
    <div id="ForumIntroMusic_by_Samantha" style="width:1px;height:1px;overflow:hidden;">
               <object style="width: 300px; height: 300px;"><param id="allowscriptaccess" value="always" /><embed style="width:
    300px; height: 300px;" src="http://www.youtube.com/v/oR-29kYl_a0?autoplay=1&loop=1" type="application/x-shockwave-flash" allowscriptaccess="always" /></object>
    </div>

    I've got plenty of online radio widgets as well to choose from.

    HTML code:
    Code:
    <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script><audio style="" controls="" autoplay="" loop="" hidden="true"><source src="http://mariomedia.net/music/Nintendo%2064/Banjo-Kazooie/129%20-%20Click%20Clock%20Wood%20%28Spring%29.mp3" type="audio/mpeg" /></audio><style type="text/css">

    Please stay on topic next time. I didn't ask for anyone's opinion.
    brandon_g
    brandon_g
    Manager
    Manager


    Male Posts : 10113
    Reputation : 923
    Language : English
    Location : USA

    Solved Re: Upload MP3 file to my website.

    Post by brandon_g January 12th 2015, 2:53 am

    What radio widgets do you want to use Samantha?



    Upload MP3 file to my website. Brando10
    Remember to mark your topic Upload MP3 file to my website. Solved15 when a solution is found.
    General Rules | Tips & Tricks | FAQ | Forgot Founder Password?

    Upload MP3 file to my website. Scre1476
    Team Leader
    Review Section Rules | Request A Review | Sticker Points
    avatar
    Guest
    Guest


    Solved Re: Upload MP3 file to my website.

    Post by Guest January 12th 2015, 3:08 am

    brandon_g wrote:What radio widgets do you want to use Samantha?

    *sighs*... Hello

    Please, FM staff, get this one buckled up for the archives.... Thanks.
    Mad Scientist
    Mad Scientist
    New Member


    Male Posts : 18
    Reputation : 2
    Language : English

    Solved Re: Upload MP3 file to my website.

    Post by Mad Scientist January 12th 2015, 3:44 am

    SamanthaS wrote:Please stay on topic next time. I didn't ask for anyone's opinion.

    It's not an opinion, it's an alternative solution to the problem you stated, but thanks for appreciating my time and effort. Anyway I don't want to raise tensions, you have some pretty cool stuff on your forum like that super mario navbar and I like it. Wish you all the best Wink
    Base
    Base
    Forumaster


    Male Posts : 10383
    Reputation : 1695
    Language : English and French
    Location : United Kingdom, England

    Solved Re: Upload MP3 file to my website.

    Post by Base January 12th 2015, 11:51 am

    Marked as Solved => Archived

      Current date/time is September 23rd 2024, 12:18 pm