Полное руководство по созданию эффективных промптов, стилевых тегов и настроек Cover в Suno AI.
| Поле | Лимит | Примечание |
|---|---|---|
| Style of Music | 120 символов | Каждое слово должно нести смысл |
| Lyrics | 3,000 символов | Включая метатеги и маркеры секций |
| package automat.net.client; | |
| import automat.net.Command; | |
| import automat.net.helper.ConnectionHelper; | |
| import java.io.IOException; | |
| public class DataSender { | |
| ConnectionHelper connectionHelper; | |
| public class ConnectionHelper { | |
| private int port = 1234; | |
| private Socket socketConnection = null; | |
| private ObjectOutputStream clientOutputStream = null; | |
| private ObjectInputStream clientInputStream = null; | |
| public ConnectionHelper(Socket socketConnection, ObjectOutputStream outputStream, ObjectInputStream inputStream) { | |
| try { | |
| this.socketConnection = socketConnection; | |
| this.clientOutputStream = outputStream; |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>WL Monitoring</title> | |
| <style> | |
| html, body, iframe { | |
| width: 100%; | |
| height: 100%; | |
| } |
| class Recipe { | |
| String name; | |
| String description; | |
| Duration cookTime; | |
| Duration entireTime; | |
| List<Ingridient> ingridients; | |
| } | |
| class Ingridient { | |
| String name; |
| .map(eachLine -> eachLine.split(",")) | |
| .map(split -> Counters( | |
| LocalDate.parse(split[0], dateTimeFormatter), | |
| Integer.parseInt(split[1].trim()), | |
| Integer.parseInt(split[2].trim()), | |
| Integer.parseInt(split[3].trim()) | |
| )); |
| public Counter getCounterAt(int index) { | |
| for (int i = 0; i < this.counterArray.length; i++) { | |
| if (i == index) { | |
| return this.counterArray[i]; | |
| } | |
| } | |
| return null; | |
| } |
| public Counter getCounterAt(int index) { | |
| for (int i = 0; i < this.counterArray.length; i++) { | |
| if (i == index) { | |
| this.counterArray[i]; | |
| } | |
| } | |
| return null; | |
| } |
| // ==UserScript== | |
| // @name Society6 | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://society6.com/new* | |
| // @grant none | |
| // ==/UserScript== |