Package vavi.sound.smaf.message

Examples of vavi.sound.smaf.message.STMessage


                title = fileChunk.getContentsInfoChunk().getSubDataByTag("ST");
                prot = fileChunk.getContentsInfoChunk().getSubDataByTag("SW");
                // TODO create meta for ContentsInfoChunk
            }
            insert(track0, new SmafEvent(new VNMessage(prot == null ? "" : prot), 0), 0);
            insert(track0, new SmafEvent(new STMessage(title == null ? "" : title), 0), 0);
        } catch (InvalidSmafDataException e) {
            throw (RuntimeException) new IllegalStateException().initCause(e);
        }
    }
View Full Code Here

TOP

Related Classes of vavi.sound.smaf.message.STMessage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.