Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

19
LINES

< > BotCompany Repo | #1033615 // SRTEntry - entry in .str subtitles file

JavaX fragment (include) [tags: use-pretranspiled]

Libraryless. Click here for Pure Java version (5189L/29K).

sclass SRTEntry {
  int index;
  double start, end; // seconds
  S text;
  
  bool valid() {
    text = trim(text);
    ret !containsEmptyLines(text);
  }
  
  public S render aka toString() {
    assertTrue(valid());
    
    ret linesLL(
      index,
      srtFormatTime(start) + " --> " + srtFormatTime(end),
      text);
  }
}

download  show line numbers  debug dex  old transpilations   

Travelled to 3 computer(s): bhatertpkbcr, ekrmjmnbrukm, mqqgnosmbjvj

No comments. add comment

Snippet ID: #1033615
Snippet name: SRTEntry - entry in .str subtitles file
Eternal ID of this version: #1033615/4
Text MD5: 86dd586384d6517c6999013c7c3f03b1
Transpilation MD5: b3ada6545b54d8176390e93bad25d7b4
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2021-11-26 00:40:17
Source code size: 348 bytes / 19 lines
Pitched / IR pitched: No / No
Views / Downloads: 72 / 149
Version history: 3 change(s)
Referenced in: [show references]