.mp3 や .wav のように、独自のカスタム フォーマットを作成できますか? 私が作成したカスタムプレーヤーでのみ再生できます。しかし、.mp3 と同じ品質です。自分の曲を他人にコピーされたくありません。マイプレイヤーをお持ちの方はプレイ可能です。利用可能なオープンソース ソフトウェアはありますか?
1350 次
1 に答える
5
You can, but it will be very difficult. You will need to come up with a proprietary audio encoding/compression format, which is still not perfected even by those doing it for decades.
What you should do instead is this. Encrypt an audio file such as an MP3 with your favourite encryption algorithm, and a password only you know. Then in your "custom player", simply decrypt the file before playing it. This way you can encrypt MySong.mp3 to MySong.whatever which is encrypted and unplayable unless you know the password that is embedded into your player.
于 2012-11-03T16:23:20.060 に答える