Giter VIP home page Giter VIP logo

audio-steganography-algorithms's People

Contributors

ktekeli avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

audio-steganography-algorithms's Issues

Contact

Hey Kadir!

I reached out via email. Would love to chat more about the contents of this repository.
In the case the email on your github profile is outdated, please send me an email - [email protected]

Best,

Improved-Spread-Spectrum(iss_improve)

Hello Mr Tekeli, i was evaluating the improved Spread spectrum (2).Its really works well.Wanted to know the major difference between Spread spectrum 1 and 2 and also part of the code in improved Spread spectrum (2) ,iss_improve.p, which is obfuscated. Can i get the code for iss_improve.p ?

Multiple track selection

I would like to know if it is possible to modify MATLAB code to perform processing of multiple audio files at once? At the moment I'm having trouble using ECHO hiding with single kernel to embed the same information for multiple tracks.

Attack Problem

The program works well! But I have a question to ask you, is if I want to join the common noise attack, this audio file will be damaged, can not recover, how to solve this ?Have a nice day!

echo_dec

Hi, I'm Faruq, I just tried your code, the code really awesome, I want to ask, is it possible to use your code in the encrypted file such the enrypted file from docx file that I've encrypted first? I tried echo data hiding in single kernel btw.
Thank You

Is this project made with linux support in mind?

When trying to run a script using octave, I get this error:

line 1: /mp3bin/mp3info.x86_64-pc-linux-gnu: No such file or directory

Those seem to be missing in all mp3bin directories.

Is this project supposed to be run on Windows or MacOS instead?

Is the computation in echo_enc_single.m right?

Hi! Thank you for your implementation which helps me a lot!
You use filter function to generate echo signal echo_zro and echo_one in echo_enc_single.m from line 43 to line 47.

k0 = [zeros(d0, 1); 1]*alpha;        %Echo kernel for bit0
k1 = [zeros(d1, 1); 1]*alpha;        %Echo kernel for bit1
echo_zro = filter(k0, 1, signal);    %Echo signal for bit0
echo_one = filter(k1, 1, signal);    %Echo signal for bit1

However, it seems more likely to be time spread method from Kadir's thesis in page 83.
The actual single kernel method's computation maybe should be:

echo_zro = [zeros(d0,s.ch);signal(1:end-d0,:)]*alpha;
echo_one = [zeros(d1,s.ch);signal(1:end-d1,:)]*alpha;

Is my understanding right?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.