Sudah dicoba n worked ya gan di lenovo s20-30
Pertama bikin usb bootablenya dulu bisa pake rufus
Terus ikutin step dibawah ini
Add USB 3.0 drivers to your Windows USB Media by using Gigabyte's Windows USB Installation Tool.
The second method to resolve the "Select the driver to be installed" error, is to add USB 3.0 support (drivers) to your Windows 7 installation media.*
* Note: The process requires to have access to another working computer with Windows 8.1 or Windows 10 OS. Use this method if your computer doesn't have USB 2.0 ports or if you cannot install Windows by using a Windows DVD media.
Step 2. Download the Windows USB Installation Tool.
1. Navigate to Gigabyte's Support Site.
2. At the search box type "Windows USB Installation Tool" (without quotes).
3. Download the corresponding 'Windows USB Installation Tool' according to your motherboard series.
4. Unzip the downloaded file and then continue to next step.
Gw disini pilih windows USB installation yg intel 100/200
Windows USB Installation Tool (Note) Support Intel 100/200/X299 series motherboards.
Version :B16.1102.1
OS :Windows 7 32bit,Windows 7 64bit
Step 3. Add USB 3.0/3.1 Driver Support to Windows 7 USB.
1. Plug the Windows USB Installation Media on the computer.
2. From the extracted folder, double click to run the "WindowsImageTool.exe" application.
3. Now perform the following:
Select None-Add USB drivers in Source Path.
Choose the Windows 7 USB installation disk in the Destination Path.
Finally click Start.
When the process is completed click Close.
4. Eject the USB drive and use it to install Windows.
The WordPress Audio Player plugin is a compact HTML5 + flash hybrid based WordPress plugin which can be used to play an audio file (.mp3 or .ogg). The audio player is compatible with all major browsers and devices (Android, iPhone).
If you are selling audio files from your site then you can use this plugin to offer a preview
If you do podcasting then this audio player can be used to embed the audio files on WordPress posts or pages
The audio player is compact so it doesn’t take a lot of real estate on your webpage
HTML5 compatible so the audio files embedded with this plugin will play on iOS devices
Audio Player Plugin Screenshot
The following images show how the audio player looks when it is playing and not playing a music file:
The following is a preview of how the audio player looks when using template 1:
When the play button is clicked, the button will change to a pause button allowing users to pause the music playback.
Audio Player Plugin Installation and Usage
Go to the ‘Add New’ plugins screen in your WordPress admin area
Click the ‘upload’ tab
Browse for the plugin file (sc_audio_player.zip)
Click ‘Install Now’ and then activate the plugin
Use the following shortcode to embed an audio file anywhere on your site
Use the optional “volume” parameter in the shortcode to specify a volume level for the audio. You can use a value between 0 – 100 for the volume level. Here is an example shortcode usage: [sc_embed_player volume="50" fileurl="https://www.example.com/wp-content/uploads/my-music/mysong.mp3"] The above will set the volume level of the audio file to 50.
Looping the Sound
Use the “loops” parameter in the audio player shortcode to loop an audio file playback automatically. Here is an example shortcode usage with auto loop: [sc_embed_player loops="true" fileurl="https://www.example.com/wp-content/uploads/my-music/mysong.mp3"]
Specifying Both MP3 and OGG Files for the Audio
Note:You don’t really need to use this option. You can just use the mp3 option and the plugin will make sure that the file is playable in all devices.
You can specify both the files types in the “fileurl” parameter separating them with a “|” character. Here is an example shortcode usage that is specifying both the .mp3 and .ogg version of the audio file: [sc_embed_player loops="true" fileurl="https://www.example.com/my-audio.mp3|https://www.example.com/my-audio.ogg"] The plugin will play the supported file based on the user’s device.
Wrapping Text Around the Audio Player
If you want to wrap some text around the audio player then use the following in the “Text” view of the post/page editor: <p style="display: inline">My Audio: </p>[sc_embed_player fileurl="https://www.example.com/my-music/mysong.mp3"] Alternatively, use the following in the “Text” view of the post/page editor (wrap the audio player shortcode in another CSS class with float): Some example text <div style="float: left;"> [sc_embed_player fileurl="https://www.example.com/my-music/mysong.mp3"] </div>
Audio Player Template 1
A few users have asked us to add a player template that has a seek bar and volume control. Audio player template1 gives you that option:
Use the following shortcode to embed the audio player using template 1:
If you are using a WordPress theme with black background then you may notice a very small white dot below the audio player. Add the following block of CSS code to your theme’s CSS file to get rid of it:
#sm2-container{
bottom: 0px;
}
Adding the Audio Player to a Theme’s Template File
You can also embed the audio player in your theme’s template file. Here is an example code that you can add to your template file:
<?php echo do_shortcode('[sc_embed_player fileurl="URL OF THE MP3 FILE"]'); ?>
Playing Audio on Your Home Page Only
Here is an example code that you can add to your header.php or footer.php template file and it will autoplay the audio file on your home page only:
<?php
if(is_front_page()){
echo do_shortcode('[sc_embed_player fileurl="URL OF THE MP3 FILE" autoplay="true"]');
}
?>
Change the Player Background Color for Template 1
Add the following CSS code to your theme’s CSS file or via the custom CSS plugin to change the player background color. The following example will change the color to red.
Go to the settings menu of this plugin and check the “Disable Simultaneous Play” option to turn off simultaneous audio file playback option. When this option is used, it will automatically stop the audio file that is currently playing when the visitor plays a new file.
Autoplay is not Working on IOS Devices
IOS devices (iPhone iPad) do not allow you to do autoplay. This is a functionality that Apple prevents on their devices. Nothing we can do in the plugin for this unfortunately.
Hosting Your Audio Files
The most obvious choice is to upload your audio files to your site using WordPress’s media uploader. After you upload the audio file via media uploader, it will give you the URL of the file. You can then use the URL in the shortcode of this audio player plugin.
Alternatively, you can host your audio files on Amazon s3.