• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Audio files editing in Dreeamweaver cc 2018

New Here ,
Apr 28, 2020 Apr 28, 2020

Copy link to clipboard

Copied

I am editig a template in dreamweaver cc 2018. I am need to change some audio mp3 files, but i am not sure which js, css or plugin to look so i can change from the audio included in the template to the audio i want to see. Any leads will be greatly appreciated.

Views

1.2K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Apr 30, 2020 Apr 30, 2020

I suggest you read the Template documentation or Contact ColorLib for help with your Template. 

 

Currently, this is the sound file attached to your online page. 

http://www.playkenyamusic.com/files/bensound-betterdays.mp3

 

JPlayer documentation can be found at the link below.

http://jplayer.org/latest/demo-02-jPlayerPlaylist/

 

Good luck!

 

Votes

Translate

Translate
Community Expert ,
Apr 28, 2020 Apr 28, 2020

Copy link to clipboard

Copied

I can't tell you where your audio is located without seeing your online site. What's the URL?

 

All major browsers and devices natively support MP3 <audio> without any JS, CSS or plugins.  In fact I hope you're NOT using 3rd party plugins (QuickTime, SWF, Flash, etc..) because most browsers no longer support them for security reasons. 

 

HTML5 Audio.  Change path/your_audio_file.mp3 as required.

 

 

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML5 Audio</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<audio controls>
<source src="path/your_audio_file.mp3" type="audio/mpeg">
</audio> 
</body>
</html>

 

Post back if you still need help.

 

 

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 28, 2020 Apr 28, 2020

Copy link to clipboard

Copied

Thank you soo much for responding quickly. I  am basic dreamweaver user, still learning. I am actually NOT using 3rd party plugins (QuickTime, SWF, Flash, etc..) ..my website is   www.playkenyamusic.com

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 28, 2020 Apr 28, 2020

Copy link to clipboard

Copied

The code in your Template contains many validation errors.  Fix these first.

https://validator.w3.org/nu/?doc=http%3A%2F%2Fwww.playkenyamusic.com%2F

 

Perform a sitewide search for Sauti-Sol-Suzanna.mp3.  Hold Ctrl + Shift + F to bring up the Find and Replace panel.  See screenshot.

 

Find & Replace PanelFind & Replace Panel

 

Click the FIND ALL button.  Your Results panel should show which file(s) the jQuery JPlayer plugin is getting audio files from.   Double-click results to open the file.

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 29, 2020 Apr 29, 2020

Copy link to clipboard

Copied

You are soo helpful.Ill try to fix the errors

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 29, 2020 Apr 29, 2020

Copy link to clipboard

Copied

I was able to fix some errors(i hope). I was able to find where the jquery is getting the audio files from, however the  audio is not responding or playing when i click play,  the audio works on the original template. I removed some search coding from the original template because i dont need them on my website, maybe i deleted some files i shouldnt have. You think you can take a look and determine what files i am missing to make the audio work( play, stop)

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 30, 2020 Apr 30, 2020

Copy link to clipboard

Copied

Did you save files after editing and upload them along with your media files to your remote server?

Did you refresh your browser and clear the cache memory?

 

If you still need help, post back with the URL.

 

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 30, 2020 Apr 30, 2020

Copy link to clipboard

Copied

I still need help. I am want Events search, tickets search, get your tickets button, follow social media buttons and scroll down all removed. I just want to remain with the slider.I started again from scratch from template but this time  when i click play the song i  replaced in media  file does not play  its still playing the templates media audio. Here is the link to the  site. http://www.playkenyamusic.com/

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 30, 2020 Apr 30, 2020

Copy link to clipboard

Copied

Can i send you the template please?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 30, 2020 Apr 30, 2020

Copy link to clipboard

Copied

I suggest you read the Template documentation or Contact ColorLib for help with your Template. 

 

Currently, this is the sound file attached to your online page. 

http://www.playkenyamusic.com/files/bensound-betterdays.mp3

 

JPlayer documentation can be found at the link below.

http://jplayer.org/latest/demo-02-jPlayerPlaylist/

 

Good luck!

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 30, 2020 Apr 30, 2020

Copy link to clipboard

Copied

It now works. I fiigured it out.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 01, 2020 May 01, 2020

Copy link to clipboard

Copied

my owl carousel takes too much room on my hope page, i am not sure how to adjust the owl carousel height.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 02, 2020 May 02, 2020

Copy link to clipboard

Copied

I was able to figure it out. Another question is i am unable to align some text top left corner.Here is the text <div class="">
<h1><strong> Trending Now </strong><br>
<td align="left" valign="top" </td>
<span style="color: #F0FF06"></span><span style="color: #EAF01A"></span><span style="font-size: 24px"></span></h1>
</div>

what am i missing? says the special characted must be escpaped..

 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
May 02, 2020 May 02, 2020

Copy link to clipboard

Copied

LATEST

One question per topic please.  This discussion has been answered. 

Please start a new topic with your new question.

 

Thanks,

 

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines