1 file module

Functionality:

Displays 1 LRC file from the URL address. Optionally, it also allows you to pre-fill the analyses and turn on graphs already when the file is loaded.

Illustration:

Web component:

<!-- Insert the library in the header -->
<script src=" https://cdn.jsdelivr.net/npm/@labir/embed/dist/embed.min.js "></script>
<link href=" https://cdn.jsdelivr.net/npm/@labir/embed/dist/embed.min.css " rel="stylesheet">

<!-- The basic usage requires only an URL to a LRC file -->
<thermal-file-analyser 
  url="https://edu.labir.cz/wp-content/uploads/2025/03/optherm_2_float32___5.lrc"></thermal-file-analyser>

<!-- You can provide additional parameters -->
<thermal-file-analyser 
  url="https://edu.labir.cz/wp-content/uploads/2025/03/optherm_2_float32___5.lrc"
  palette="jet" 
  author="Jan Jáchim" 
  license="CC BY-SA 4.0" 
  label="A file label" 
  description="A file description" 
  from="29.789339065552" 
  to="168.99926757812" 
  speed="1" 
  opacity="1" 
  analysis1="Rectangle 0;rectangle;color:Blue;top:51;left:55;width:127;height:87" 
  analysis2="Ellipsis 1;ellipsis;color:Red;top:105;left:141;width:101;height:84"  
  showhistogram="true" 
  showabout="true" 
  interactiveanalysis="true" 
></thermal-file-analyser>

WordPress Block:

1 file module