How do I play .MDS (MIDI Stream) music files? [closed] - midi

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Several games from which I extracted some data use MIDI for the in-game music.
However, this music is stored in an .MDS file which doesn't seem to have similarities to .MID or other MIDI formats. The header says "RIFF" and "MIDSfmt".
I searched the web for some information about this file format and only found that it means "MIDI session" and is used by "Sound Imp.".
I can't find this program or any other additional information about this file format.
Do you know a converter or tool for playing the obvious MIDI data which somehow contained in these files? I'm posting this on Stack Overflow since information about how to parse it is also greatly appreciated.

Download Foobar2000 and get the component that (Foo_Midi) that JYelton suggested,and then use Foobar2000 to convert it,worked perfectly for me.
.MDS midi files are indeed another old and rare file format used for old games.(I've seen it used in some eroge games too strangely enough.)

Also Winamp can if you change the extension into .rmi

There is a program called "Finale" that can convert .mds files into .mid files and vice-versa. The downside is that you have to pay for it but it does let you edit the notes inside the files
The link to the site is below:
http://www.finalemusic.com/default.aspx

Related

Flutter Audio Editing SDK [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed last month.
Improve this question
I am looking for an SDK which supports Audio editing features.
The features I am looking for are as below
Audio Trimming
Audio Splitting
Audio Volume management
Adding another audio
Merge Audio
Undo/Redo actions
Please suggest if there are any sdks avaialble for flutter.
I am currently implementing it using 'ffmpeg_kit_flutter' , but its getting complicated day by day.
There may not be a single package that does all the functions you want. But it is possible to achieve results by combining several packages.
The most popular packages for working with Audio can be found on the following site: https://fluttergems.dev/audio/
For example, it is possible to trim and split with the packages listed in the first line.

Documentation in md, pdf and html format [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm working on an opensource project on Github. I'd created some documents in Github's md format. However I want those documents available in three formats:
PDF: To be downloaded with project
HTML: To be hosted on my personal site.
Markdown (.md): For Github.
Obviously I'd not prefer to write them thrice. Is there any way I write it once anywhere (although MS Word preferred) and it could be converted to other two formats?
Consider Pandoc
I'd write in Markdown and convert to the others.
Another possibility is DITA. Its free reference implementation, the DITA Open Toolkit, lets you generate HTML and PDF out of the box, and can be customized to generate Markdown as well.
But, DITA might be a more sophisticated solution than you need, depending on your requirements for content reuse, the size of your docs, how frequently you update, whether you will be employing a technical writer to maintain and update your docs... It's a powerful solution better suited for a dedicated documentation effort than a one time ad-hoc situation.

looking for a good online WYSIWYG editor with RTF download capability [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Does anyone know of any JavaScript/CSS scripts that offer a good WYSIWYG editor, along with the ability to download inputted information to an RTF file?
The only one I've found so far is NicEdit, but I haven't been able the figure out how to convert the formatted text (which is in HTML format) to RTF and offer it for download. I've been able to store the formatted HTML in a JavaScript variable, but don't know how to proceed from there.
Do any of you know of an open source WYSIWYG text editor that offers users the ability to download their formatted text in RTF format?
In the end I decided to go for TinyMCE. It's pretty versatile and although downloading text was not a built-in function, it was easy to set it up myself just by passing the formatted HTML text through a PHP variable once a button was pushed for download.
From there, there are various php classes that can be used to convert HTML to RTF. Just updating this in case anyone else comes up with a similar problem in the future.

Read text from image iPhone SDK [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have an image on my device which I capture from camera. The image has readable text. I want to convert that image into text i.e. get the text of image and display it.
I went through Tesseract demo, but not all the text of image is converted into text. I know that there are few paid SDK's like ABBY SDK available for this, but I was looking for some free source.
Are there other SDKs available for the same?
See this for how to do something quick on iOS with Tesseract. I doubt you will get the accuracy you want though. So far I haven't found a good opensource solution because the iPhone camera is not well suited to this problem. There are a few online API options that do better.
Oh and one word of advice, don't pay for anything without trying it in your situation :)

Localize iOS Automatically [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I'm wondering if someone has a script out there that can take my Localizable.strings (english version) and using some free service like Google Translate automatically translate it any other language I specify. It would obviously have to be in the correct format. I could probably write this in a jiffy and post it on Github, but I'm wondering if something to this effect already exists?
Edit: Maybe I should clarify something for everyone who's been so pessimistic towards this. The only real text my app uses include single words like "close", "ok", "send", "left", "right". Google translate shouldn't have a problem with any of that irrespective of the language its translating to.
If there were such a script, you would be better off not localizing rather than localizing using something like google translate.
However, there are some good, inexpensive translation services out there. I personally use OneHourTranslation and have been satisfied with the results. I've also heard of, but never used, iCanLocalize, which has a streamlined localization process that allows you to upload the .strings file directly and download localized .strings files.
I had my last iPhone app localized in 5 languages for $65 USD, which is ridiculously cheap. Why wouldn't you just use a translation service?
I wrote one a few months ago.
https://github.com/jkubicek/AutoLocalize
With recent changes to Google's translation services policy, its likely that it won't work anymore, but it shoudn't be too difficult to convert it to use Bing instead of google.