How can I convert a USB device, used for storage, into a Media Transfer Protocol (MTP) device which shows up in Windows as a portable media device?
Standard usb device into a MTP device
2.2k Views Asked by green4rrow At
1
There are 1 best solutions below
Related Questions in USB
- How to disable battery charging during ADB connection?
- USB to Serial, Port Name Changing Unexpectedly
- USB programming, transfer file from iOS device to Embedded os device?
- USB Full Speed polling interval
- Is it possible to limit data traffic in kernel USB drivers?
- communicationg to device using cdc usb protocol in c# windows application
- Shell file that finds a flash drive on my Raspberry Pi and executes a given program
- USB on board switching tools on Android 4.2.2
- Garmin USB driver grmnusb not compatible with chrome USB API on Windows
- STM32 USB HID reports
- Arduino Serial Monitor shows strange ASCII characters
- execute application mac os yosemite 10.10.3 when plugged in usb
- ISO/IEC 7816 commands over CCID
- How to start process on Linux OS in C, C++
- Install Android app on device through wifi - no usb or emulator
Related Questions in MEDIA-PLAYER
- mediaelement.js - How to change width
- Android several MediaPlayers
- How to use a MediaPlayer Singleton
- Playing audio for given amount of time in Android
- JavaFX MediaPlayer stops when file isn't complete
- Media Player: error (-19, 0)
- MP3 songs do not play in media player
- Send media action on android
- How do I allow my app to continue running when it is not in the foreground, or the phone is locked
- Set begin time of Azure Media Player
- Remote command seek forward (or backward) does not work
- Videoview measure to fit a layout with exactly ratio
- Unable to play MediaStore.Audio songs with MediaPlayer in android
- How to play songs from the Cursor in android?
- android media player is not playing audio file which has special character
Related Questions in USB-MASS-STORAGE
- Is there a USB alternative to Mass Storage which works at the filesystem layer?
- X86-asm code to make a usb disk non-bootable
- Do I need FAT on both ends of a USB link?
- Named-pipe/ FIFO on USB Mass Storage Gadget to Stream Audio for Car, Docks etc.
- How to navigate to android USB Mass Storage Activity?
- How to distinguish USB hard drives and SSDs from USB keys / pen drives on macOS
- Why only one WM_DEVICECHANGE message when a multi-volume USB Device is removed?
- Mass Storage Memory Android Intent
- Read data from pen drive through android USB host mode
- access mass storage device on web browser with WEBUSB API
- Standard usb device into a MTP device
- Copy files form pen-drive using OTG cable in Xamarin.Android, Not able to get Path
- How can I determine whether a file is on a USB mass storage device?
- How does embedded linux detect file is modified through usb gadget & update files
- How to define device label name, g_mass_storage module
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Sorry it is not possible. Try to understand the implementation of MTP then you will get to know why its hard. I assume that USB device you referring is a pendrive/memory card etc. In case of MTP the driver used is gadget driver. There should be a MTP server to be running on USB device which will reply to the query sent by the host PC. If you are referring USB device is a mobile in your case then you need to change driver part. Implement your own MTP server. Android has implemented MTP you can have a look at it.