SkillAgentSearch skills...

JaadAndroid

Fork https://github.com/dant3/jaad. Add Android compatibility and support for reading GoPro Tags.

Install / Use

/learn @Qamar4P/JaadAndroid
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

JaadAndroid

Fork from https://github.com/dant3/jaad and add Android compatibility and support for reading GoPro Tags. Only library for this purpose.

Used by

Access-C Android App by Leef-USA https://play.google.com/store/apps/details?id=com.leefco.leefaccess&hl=en

How to use

Download and add as a module in Android studio project. If you do not need, you can delete aac and adts packages to reduce size

From file:

GoProTagsBox tags = GoProUtil.getHilights(new RandomAccessFile(Environment.getExternalStorageDirectory().getAbsolutePath() + "/GOPR0175.MP4", "r"));

From url:

InputStream inputStream = new BufferedInputStream(new URL("http://localhost:6582?BRIDGE&%2FGOPR0175.MP4&GOPR0175.MP4&80898399").openConnection().getInputStream());
GoProTagsBox tags = GoProUtil.getHilights(inputStream);
                    
stringBuilder.append("Count: "+tags.getCount());
if(tags.getHiLights() != null){
    for (long l : tags.getHiLights()) {
        stringBuilder.append("\nHiLight: "+l);
    }
}

License

Public domain.

Everyone can used this library without any permision. Inherited condition may applied!

Hit star if this is useful for you. Thanks

Related Skills

View on GitHub
GitHub Stars5
CategoryCustomer
Updated1y ago
Forks0

Languages

Java

Security Score

60/100

Audited on Mar 5, 2025

No findings