I'm looking for a way to compress wav files to some other format - mp3, wma or ogg. Is there any library I could use? Lame would not work in a WinStore app, or would it?
Audio compression in Windows Store apps?
439 Views Asked by Filip Skakun At
1
There are 1 best solutions below
Related Questions in WINDOWS-RUNTIME
- Is it possible to get user's Microsoft Account (with permission) via code?
- Unable to resolve property '%1' while processing properties for Uid '%0'
- How to check if Windows device is phone or tablet/pc?
- WinRT Extract Thumbnail from RAW image format
- How many items can we put in winrt listview
- How to debug missing dlls on Windows 10
- Where do I call an async method from?
- converting string to a double in visual c++ by parsing
- WinJS Issues | Windows 8.1 and Windows Phone
- Create Page custom animations in Windows Phone 8.1 (Windows Runtime)
- WinRT control to render XAML UIElement
- Gapless looping in Background Media Player for Windows Phone 8.1
- How to update a progress bar based on a form in WinRT?
- data binding property of a other control to a style while animating it
- ScaleTransform.ScaleY UIElement without keeping space reserved
Related Questions in WINDOWS-STORE-APPS
- Serializing TypeInfo / Type across .Net Platforms
- Is it possible to get user's Microsoft Account (with permission) via code?
- Unable to resolve property '%1' while processing properties for Uid '%0'
- Application configuration files for Windows Universal app
- Public IDictionary member of ViewModel class will not serialize via DataContractSerializer
- Trying to add images (tiles) to a map
- Cropping Image with Xamlcropcontrol for UI and WriteableBitmapEx
- GetTypeInfo Performance in Windows Store Apps
- How to add "Store app" project template to Visual basic?
- Save Task<string> type to String giving Catastrophic failure
- How to handle Windows Errors in Windows HTML/CSS/JS script?
- Windows Store Apps, download multiple files with threads
- Add-AppDevPackage.ps1 asking for Name[0] parameter
- How to achieve AlarmApplicationManager AlarmAccessStatus as AllowedWithWakeupCapability?
- How to convert a Chinese string to english for windows phone store apps[Javascript]
Related Questions in MP3
- Convert youtube video to mp3 using Quick MP3 API
- mp3 to sample array NAudio
- How to fit the Ringdroid waveform in full width according to width of mobile screen
- How to join mp3 and wav files
- Unknown android app using my mp3 files without my permission
- Android audio too fast on some devices with MediaCodec and AudioTrack
- change .mp3 file format to .aac file format in android using java programming
- Crop MP3 to last N seconds
- Streaming songs from pc
- Splitting up a variable in bash
- MP3 songs do not play in media player
- how to make a button that share my res/raw/xxx.mp3 file
- Adding tags to mp3 with eyed3 results in no change
- How to make an MP3 file wait to play until after another MP3
- PHP - MP3 proxy for streaming
Related Questions in OGG
- Encode PCMBuffer to Ogg with Opus in iOS 8
- Ffmpeg - Convert Wav to OGG on Android (wrong metadata on some devices)
- Pygame: pygame.error: Unable to open file .ogg
- Android - create waveform of the audio file (OGG)
- Is WAV needed for html5 audio fully cross-browser?
- Why do .ogg files loop?
- Good practices for 100% compatible <audio> file formats
- Convert PCM to MP3/OGG
- Video file formats for H.264
- Convert mp3 to ogg with Java and no external libraries
- < video > with h264/ogg/webm and flash with h264 fallback, or just < video > with h264 and flash with h264 fallback?
- Create OGG Files from Java
- Firefox loads and plays same .ogv file twice concurrently when with 'autoplay'
- Java API to Split Oggs
- tag audio and ogg
Related Questions in WMA
- C# - Modify WMA extended properties programatically (possibly with NAudio)
- J2ME WMA Delivery Report
- SMS goes to the inbox when the mobile is disconnected
- finding mime type of wma files using java
- How to merge wma files to mp3 (with header editing)?
- J2ME SMS receive not responding
- C#: convert WAV to xWMA
- SMS sent from j2me not recieved by non-java phones like android and gsm modem
- receiving sms j2me
- IOS: stop audio when I return in a view
- How to I encode a url in my midlet
- How can I make my midlet send an SMS message to multiple recipients
- Receive sms on specific port j2me
- Write WMA tags in PHP
- Can a native Blackberry application (not MIDlet) use MIDP Push Registry?
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?
There is transcoding support in the Windows.Media.Transcoding namespace. There is a sample for video but audio should be supported too. Looking at MediaEncodingProfile it seems aac, wma and mp3 are supported.
*EDIT (usage sample)