I decided it myself and didn’t wait for help. I decided it myself, I didn't wait for help. Maybe it will be useful to someone
String html = scriptElements.html();
String string = "";
Matcher matcher = Pattern.compile("(?<=mp4_144\":\")[^\"]+").matcher(html);
if (matcher.find()) {
string = matcher.group();
}