Thx all for helping <3
So, I have downloaded the ffmpeg library, imported it to eclipse, added it as a library to my android application and tried to use it, it doesn't work.
Step by step:
- Downloaded this file : https://github.com/guardianproject/android-ffmpeg-java
- Extracted it to an empty folder.
- At Eclipse, "import" and then I have selected this empty folder.
- Right click at my project, properties, android, added the ffmpeg library.
At my on create I used this code(just for checking):
ffmpeg -t 30 -i inputfile.mp3 -acodec copy outputfile.mp3
But I get a lot of errors:
Multiple markers at this line
- Syntax error on token(s), misplaced
construct(s)
- Syntax error on token "inputfile", delete this
token
- Syntax error on token "30", delete this token
- Syntax error on token ".", ; expected
Can you see my problem?