plugin v1.0.0
Deploy / Deploy (push) Successful in 2m58s
Details
Deploy / Deploy (push) Successful in 2m58s
Details
This commit is contained in:
parent
e07cd895d1
commit
527502e931
|
|
@ -84,6 +84,131 @@ body.slice-tool-active .timeline-container { cursor: crosshair; }
|
|||
position: relative;
|
||||
}
|
||||
|
||||
/* Estilos do Piano Roll */
|
||||
.piano-roll-editor {
|
||||
position: absolute;
|
||||
top: 60px; /* Abaixo do header global */
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #2b2e33;
|
||||
z-index: 50; /* Fica acima dos outros editores */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-top: 1px solid var(--border-color, #444);
|
||||
}
|
||||
|
||||
.piano-roll-toolbar {
|
||||
height: 40px;
|
||||
background-color: #363a40;
|
||||
border-bottom: 1px solid #444;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding: 0 10px;
|
||||
gap: 15px;
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.piano-roll-workspace {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
background-color: #222;
|
||||
}
|
||||
|
||||
.piano-keys-container {
|
||||
width: 60px;
|
||||
background-color: #1e1e1e;
|
||||
border-right: 1px solid #444;
|
||||
overflow: hidden; /* O scroll será controlado via JS para sincronia */
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.piano-grid-container {
|
||||
flex: 1;
|
||||
overflow: auto; /* Aqui acontece o scroll real */
|
||||
position: relative;
|
||||
background-color: #252525;
|
||||
cursor: crosshair;
|
||||
}
|
||||
|
||||
/* Cores para as notas no canvas */
|
||||
.piano-key-white { fill: #fff; }
|
||||
.piano-key-black { fill: #000; }
|
||||
|
||||
/* Container da visualização melódica na lista de trilhas */
|
||||
.track-mini-piano-roll {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: #222;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
border: 1px solid #444;
|
||||
}
|
||||
|
||||
.track-mini-piano-roll:hover {
|
||||
border-color: #666;
|
||||
background-color: #2a2a2a;
|
||||
}
|
||||
|
||||
/* As notinhas dentro da miniatura */
|
||||
.mini-note {
|
||||
position: absolute;
|
||||
background-color: #ffbb00; /* Cor laranja padrão LMMS */
|
||||
height: 4px; /* Notas finas */
|
||||
border-radius: 1px;
|
||||
opacity: 0.9;
|
||||
box-shadow: 0 0 2px rgba(0,0,0,0.5);
|
||||
}
|
||||
|
||||
/* =============================================== */
|
||||
/* CORREÇÃO VISUAL DO PIANO ROLL NA LISTA
|
||||
/* =============================================== */
|
||||
|
||||
/* Quando o container .step-sequencer tiver esta classe, ele muda de comportamento */
|
||||
.step-sequencer.mode-piano {
|
||||
display: block !important; /* Sobrescreve o display: flex original */
|
||||
gap: 0 !important; /* Remove o espaçamento de botões */
|
||||
width: 100%; /* Ocupa toda a largura disponível */
|
||||
height: 54px; /* Altura fixa para garantir visualização */
|
||||
position: relative;
|
||||
background-color: #1e1e1e;
|
||||
border-radius: 4px;
|
||||
border: 1px solid var(--border-color);
|
||||
overflow: hidden; /* Corta notas que passem da borda */
|
||||
margin-top: 4px; /* Centraliza verticalmente na track */
|
||||
}
|
||||
|
||||
/* Ajuste fino para a miniatura interna */
|
||||
.track-mini-piano-roll {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
background: linear-gradient(to right, #222 0%, #222 50%, #252525 50%, #252525 100%);
|
||||
background-size: 25% 100%; /* Cria linhas verticais sutis de compasso */
|
||||
}
|
||||
|
||||
/* Garante que as notas apareçam */
|
||||
.mini-note {
|
||||
position: absolute;
|
||||
background-color: #ffbb00;
|
||||
height: 4px;
|
||||
border-radius: 2px;
|
||||
box-shadow: 0 1px 3px rgba(0,0,0,0.8);
|
||||
pointer-events: none; /* Deixa o clique passar para o container pai */
|
||||
min-width: 2px; /* Garante que notas muito curtas sejam visíveis */
|
||||
}
|
||||
|
||||
/* Efeito hover para indicar interatividade */
|
||||
.step-sequencer.mode-piano:hover {
|
||||
border-color: #666;
|
||||
background-color: #262626;
|
||||
}
|
||||
|
||||
/* =============================================== */
|
||||
/* BARRA LATERAL (SAMPLE BROWSER)
|
||||
/* =============================================== */
|
||||
|
|
@ -296,6 +421,7 @@ body.sidebar-hidden .sample-browser {
|
|||
}
|
||||
.track-lane.active-track { background-color: #40454d; }
|
||||
.track-lane.drag-over { border: 2px dashed var(--accent-green); }
|
||||
|
||||
.track-lane .track-info {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
|
@ -308,12 +434,57 @@ body.sidebar-hidden .sample-browser {
|
|||
.track-mute { width: 25px; height: 12px; background-color: var(--accent-green); border-radius: 6px; cursor: pointer; border: 1px solid var(--border-color); box-shadow: inset 0 0 2px #000; transition: background-color 0.2s, opacity 0.2s; }
|
||||
.track-mute:hover { opacity: 0.8; }
|
||||
.track-mute.active { background-color: var(--text-dark); opacity: 0.7; }
|
||||
|
||||
.track-lane .track-controls { display: flex; gap: 5px; margin: 0 10px; padding-left: 10px; border-left: 1px solid var(--bg-toolbar); flex-shrink: 0; }
|
||||
.step-sequencer-wrapper { flex-grow: 1; overflow-x: auto; overflow-y: hidden; padding-bottom: 8px; display: flex; align-items: center; }
|
||||
.step-sequencer { display: flex; gap: 4px; }
|
||||
.step-wrapper { position: relative; }
|
||||
.step-marker { position: absolute; top: -16px; left: 1px; font-size: .6rem; color: var(--text-dark); user-select: none; }
|
||||
.step { width: 28px; height: 28px; background-color: #2a2a2a; border: 1px solid #4a4a4a; border-radius: 2px; cursor: pointer; transition: background-color .1s, transform 0.1s; flex-shrink: 0; }
|
||||
|
||||
/* --- CORREÇÃO DE LARGURA DOS STEPS --- */
|
||||
.step-sequencer-wrapper {
|
||||
flex-grow: 1;
|
||||
/* Remove overflow-x para forçar os steps a caberem na tela, ou mantem se quiser scroll horizontal em telas pequenas */
|
||||
/* overflow-x: auto; <-- Comentei para testar o alinhamento perfeito */
|
||||
overflow-y: hidden;
|
||||
padding-bottom: 8px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
padding-right: 10px; /* Espaçamento na direita pra não colar na borda */
|
||||
}
|
||||
|
||||
.step-sequencer {
|
||||
display: flex;
|
||||
gap: 2px; /* Reduzi o gap para ficar mais compacto e fluido */
|
||||
width: 100%; /* Ocupa toda a largura disponível da trilha */
|
||||
}
|
||||
|
||||
.step-wrapper {
|
||||
position: relative;
|
||||
flex: 1; /* MÁGICA: Faz cada step crescer igualmente para preencher o espaço */
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.step-marker {
|
||||
position: absolute;
|
||||
top: -16px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
text-align: center; /* Centraliza o número do compasso */
|
||||
font-size: .6rem;
|
||||
color: var(--text-dark);
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.step {
|
||||
width: 100%; /* Ocupa 100% do wrapper (que é flexível agora) */
|
||||
height: 28px;
|
||||
background-color: #2a2a2a;
|
||||
border: 1px solid #4a4a4a;
|
||||
border-radius: 2px;
|
||||
cursor: pointer;
|
||||
transition: background-color .1s, transform 0.1s;
|
||||
box-sizing: border-box; /* Garante que a borda não aumente o tamanho total */
|
||||
}
|
||||
/* --------------------------------------- */
|
||||
|
||||
.step-dark { background-color: #1e1e1e; }
|
||||
.step:hover { background-color: #555; border-color: #888; }
|
||||
.step.active { background-color: var(--accent-green); border: 1px solid #fff; box-shadow: 0 0 8px var(--accent-green); }
|
||||
|
|
|
|||
|
|
@ -0,0 +1,45 @@
|
|||
import * as Tone from "https://esm.sh/tone";
|
||||
|
||||
export class Kicker {
|
||||
constructor(toneContext, data = {}) {
|
||||
this.params = data.kicker || data || {};
|
||||
|
||||
// MembraneSynth é perfeito para Kicks e Toms
|
||||
this.synth = new Tone.MembraneSynth({
|
||||
pitchDecay: 0.05,
|
||||
octaves: 6, // O Kicker desce muitas oitavas
|
||||
oscillator: { type: "sine" },
|
||||
envelope: {
|
||||
attack: 0.001,
|
||||
decay: 0.4,
|
||||
sustain: 0.01,
|
||||
release: 1.4
|
||||
}
|
||||
});
|
||||
|
||||
// Distorção opcional (O Kicker tem um drive)
|
||||
this.dist = new Tone.Distortion(0.1).toDestination();
|
||||
this.synth.disconnect();
|
||||
this.synth.connect(this.dist);
|
||||
|
||||
this.output = this.dist;
|
||||
}
|
||||
|
||||
triggerAttackRelease(note, duration, time) {
|
||||
// O Kicker original geralmente ignora a nota MIDI e usa frequências fixas (Start/End freq)
|
||||
// Mas para facilitar a composição, vamos permitir que ele toque a nota do Piano Roll
|
||||
// Se quiser ser fiel ao LMMS, teríamos que ler this.params.start_freq
|
||||
|
||||
// Vamos usar a nota C1 ou C2 como base se a nota vier muito aguda
|
||||
this.synth.triggerAttackRelease(note, duration, time);
|
||||
}
|
||||
|
||||
connect(dest) {
|
||||
this.output.connect(dest);
|
||||
}
|
||||
|
||||
dispose() {
|
||||
this.synth.dispose();
|
||||
this.dist.dispose();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,49 @@
|
|||
import * as Tone from "https://esm.sh/tone";
|
||||
|
||||
export class Lb302 {
|
||||
constructor(toneContext, data = {}) {
|
||||
this.params = data.lb302 || data || {};
|
||||
|
||||
// O som clássico do 303 é Sawtooth ou Square com filtro ressonante
|
||||
const wave = this.params.wave === 1 ? "square" : "sawtooth";
|
||||
|
||||
this.synth = new Tone.MonoSynth({
|
||||
oscillator: { type: wave },
|
||||
envelope: {
|
||||
attack: 0.01,
|
||||
decay: 0.3,
|
||||
sustain: 0.1,
|
||||
release: 0.2
|
||||
},
|
||||
filterEnvelope: {
|
||||
attack: 0.01,
|
||||
decay: 0.3,
|
||||
sustain: 0.1,
|
||||
release: 0.2,
|
||||
baseFrequency: 200,
|
||||
octaves: 4,
|
||||
exponent: 2
|
||||
},
|
||||
filter: {
|
||||
Q: 6, // Alta ressonância (o "grito" do acid)
|
||||
type: "lowpass",
|
||||
rolloff: -24
|
||||
}
|
||||
});
|
||||
|
||||
this.output = this.synth;
|
||||
}
|
||||
|
||||
triggerAttackRelease(note, duration, time) {
|
||||
// O LB302 é monofônico, mas aceita trigger normal
|
||||
this.synth.triggerAttackRelease(note, duration, time);
|
||||
}
|
||||
|
||||
connect(dest) {
|
||||
this.output.connect(dest);
|
||||
}
|
||||
|
||||
dispose() {
|
||||
this.synth.dispose();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,45 @@
|
|||
import * as Tone from "https://esm.sh/tone";
|
||||
|
||||
export class Nes {
|
||||
constructor(toneContext, data = {}) {
|
||||
this.params = data.nes || data || {};
|
||||
|
||||
// Mapear tipo de onda do LMMS para Tone.js
|
||||
// 0=Pulse12.5, 1=Pulse25, 2=Pulse50, 3=Triangle, 4=Noise
|
||||
let oscType = "pulse";
|
||||
let width = 0.5;
|
||||
|
||||
const mode = parseInt(this.params.mode || 0);
|
||||
|
||||
if (mode === 0) { oscType = "pulse"; width = 0.125; }
|
||||
else if (mode === 1) { oscType = "pulse"; width = 0.25; }
|
||||
else if (mode === 2) { oscType = "pulse"; width = 0.5; }
|
||||
else if (mode === 3) { oscType = "triangle"; }
|
||||
else if (mode === 4) { oscType = "square"; } // Aproximação para noise tonal
|
||||
|
||||
// Chiptunes geralmente não têm polifonia, mas vamos permitir PolySynth para acordes
|
||||
this.synth = new Tone.PolySynth(Tone.Synth, {
|
||||
oscillator: { type: oscType, width: width },
|
||||
envelope: { attack: 0.001, decay: 0.1, sustain: 0.1, release: 0.01 } // Envelope rápido "clicky"
|
||||
});
|
||||
|
||||
// BitCrusher para dar a sujeira 8-bit
|
||||
this.crusher = new Tone.BitCrusher(4).toDestination(); // 4 bits
|
||||
this.synth.connect(this.crusher);
|
||||
|
||||
this.output = this.crusher;
|
||||
}
|
||||
|
||||
triggerAttackRelease(note, duration, time) {
|
||||
this.synth.triggerAttackRelease(note, duration, time);
|
||||
}
|
||||
|
||||
connect(dest) {
|
||||
this.output.connect(dest);
|
||||
}
|
||||
|
||||
dispose() {
|
||||
this.synth.dispose();
|
||||
this.crusher.dispose();
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,51 @@
|
|||
// js/plugins/SuperSaw.js
|
||||
import * as Tone from "https://esm.sh/tone";
|
||||
|
||||
export class SuperSaw {
|
||||
constructor(toneContext, data = {}) {
|
||||
// Tenta pegar dados de qualquer um dos plugins que usam esse motor
|
||||
this.params = data.zynaddsubfx || data.watsyn || data || {};
|
||||
|
||||
// O "FatSawtooth" do Tone.js cria 3 serras desafinadas automaticamente
|
||||
this.synth = new Tone.PolySynth(Tone.Synth, {
|
||||
oscillator: {
|
||||
type: "fatsawtooth",
|
||||
count: 3, // 3 serras por voz
|
||||
spread: 20 // Desafinação entre elas (o "gordura")
|
||||
},
|
||||
envelope: {
|
||||
attack: 0.01, // Ataque rápido (lead)
|
||||
decay: 0.1,
|
||||
sustain: 0.6,
|
||||
release: 0.4 // Release médio para "encher" o som
|
||||
},
|
||||
volume: -6 // Reduz um pouco pois o Fatsawtooth é alto
|
||||
});
|
||||
|
||||
// Efeitos para dar "largura" estéreo (O segredo do SuperSaw)
|
||||
// Chorus: duplica o sinal e desafina levemente
|
||||
this.chorus = new Tone.Chorus(4, 2.5, 0.5).start();
|
||||
|
||||
// Filtro para cortar frequências muito agudas e evitar chiado digital
|
||||
this.filter = new Tone.Filter(8000, "lowpass");
|
||||
|
||||
// Cadeia: Synth -> Chorus -> Filter -> Output
|
||||
this.synth.chain(this.chorus, this.filter);
|
||||
|
||||
this.output = this.filter;
|
||||
}
|
||||
|
||||
triggerAttackRelease(note, duration, time) {
|
||||
this.synth.triggerAttackRelease(note, duration, time);
|
||||
}
|
||||
|
||||
connect(dest) {
|
||||
this.output.connect(dest);
|
||||
}
|
||||
|
||||
dispose() {
|
||||
this.synth.dispose();
|
||||
this.chorus.dispose();
|
||||
this.filter.dispose();
|
||||
}
|
||||
}
|
||||
|
|
@ -1,115 +1,82 @@
|
|||
export class TripleOscillator {
|
||||
constructor(audioCtx, data) {
|
||||
this.ctx = audioCtx;
|
||||
// Os dados do plugin geralmente vêm dentro de uma chave com o nome dele (ex: data.tripleoscillator)
|
||||
// Mas às vezes vêm "flat" dependendo do parser. Vamos garantir.
|
||||
this.params = data.tripleoscillator || data;
|
||||
// js/plugins/TripleOscillator.js
|
||||
import * as Tone from "https://esm.sh/tone";
|
||||
|
||||
// Dados do envelope (ADSR) ficam em 'elvol' (Envelope Volume)
|
||||
this.env = data.elvol || {};
|
||||
export class TripleOscillator {
|
||||
constructor(toneContext, data = {}) {
|
||||
// Não precisamos mais do contexto cru, usamos o Tone direto
|
||||
this.params = data.tripleoscillator || data || {};
|
||||
|
||||
// Volume Mestre do Instrumento
|
||||
this.output = new Tone.Gain(1); // Começa com volume 1
|
||||
|
||||
// Envelope de Amplitude (ADSR)
|
||||
// Convertendo valores do LMMS (geralmente 0-1 ou 0-100) para segundos/níveis
|
||||
const envData = data.elvol || {};
|
||||
this.envelope = new Tone.AmplitudeEnvelope({
|
||||
attack: this.normalizeParam(envData.att, 0, 0.01),
|
||||
decay: this.normalizeParam(envData.dec, 0.5, 0.1),
|
||||
sustain: this.normalizeParam(envData.sustain, 1, 0.5),
|
||||
release: this.normalizeParam(envData.rel, 0, 0.1)
|
||||
});
|
||||
|
||||
// Conecta Envelope -> Saída
|
||||
this.envelope.connect(this.output);
|
||||
}
|
||||
|
||||
normalizeParam(val, defaultVal, scale = 1) {
|
||||
if (val === undefined || val === null) return defaultVal;
|
||||
let v = parseFloat(val);
|
||||
// Se vier > 2, assume escala 0-100 e divide
|
||||
if (v > 2) v /= 100;
|
||||
return v || defaultVal; // Fallback se for 0 ou NaN
|
||||
}
|
||||
|
||||
getWaveType(lmmsTypeIndex) {
|
||||
// Mapeamento: 0=Sine, 1=Triangle, 2=Sawtooth, 3=Square, 4=Noise, 5=Exp
|
||||
const types = [
|
||||
"sine",
|
||||
"triangle",
|
||||
"sawtooth",
|
||||
"square",
|
||||
"sawtooth",
|
||||
"sawtooth",
|
||||
];
|
||||
const types = ["sine", "triangle", "sawtooth", "square", "sawtooth", "sawtooth"]; // Mapeamento básico
|
||||
const idx = parseInt(lmmsTypeIndex);
|
||||
return types[isNaN(idx) ? 0 : idx]; // Default para sine
|
||||
return types[isNaN(idx) ? 0 : idx];
|
||||
}
|
||||
|
||||
playNote(midiNote, startTime, duration) {
|
||||
// Fórmula de conversão MIDI -> Frequência
|
||||
const freq = 440 * Math.pow(2, (midiNote - 69) / 12);
|
||||
// Método chamado pela UI (Step Sequencer)
|
||||
triggerAttackRelease(note, duration, time) {
|
||||
const freq = Tone.Frequency(note).toFrequency();
|
||||
const dur = Tone.Time(duration).toSeconds();
|
||||
const now = time || Tone.now();
|
||||
|
||||
// Ganho Mestre desta nota (evita estouro de áudio)
|
||||
const masterGain = this.ctx.createGain();
|
||||
masterGain.connect(this.ctx.destination);
|
||||
|
||||
// Aplica Envelope ADSR no volume mestre
|
||||
this.applyEnvelope(masterGain, startTime, duration);
|
||||
|
||||
// O TripleOscillator tem 3 osciladores (Osc1, Osc2, Osc3)
|
||||
// No XML/JSON eles são sufixados com 0, 1 e 2 (ex: vol0, vol1...)
|
||||
// Cria os 3 osciladores efêmeros (só para esta nota)
|
||||
// Isso é necessário para polifonia (cada nota tem seus osciladores)
|
||||
for (let i = 0; i < 3; i++) {
|
||||
// Volume: O LMMS usa 0-100. O Web Audio usa 0.0-1.0.
|
||||
const volRaw = this.params[`vol${i}`];
|
||||
const vol = parseInt(volRaw !== undefined ? volRaw : i === 0 ? 100 : 0);
|
||||
// Default: Osc 1 (índice 0) = 100%, outros = 0%
|
||||
const vol = (volRaw !== undefined) ? parseInt(volRaw) : (i === 0 ? 100 : 0);
|
||||
|
||||
// Se volume for 0, não gasta processamento criando oscilador
|
||||
if (vol > 0) {
|
||||
const osc = this.ctx.createOscillator();
|
||||
const oscGain = this.ctx.createGain();
|
||||
const osc = new Tone.Oscillator({
|
||||
type: this.getWaveType(this.params[`wavetype${i}`]),
|
||||
frequency: freq,
|
||||
detune: (parseInt(this.params[`coarse${i}`] || 0) * 100) + parseInt(this.params[`fine${i}`] || 0),
|
||||
volume: Tone.gainToDb((vol / 100) * 0.3), // 0.3 para evitar clipar a soma
|
||||
onstop: () => { osc.dispose(); } // Limpa memória ao acabar
|
||||
});
|
||||
|
||||
// Configura Onda
|
||||
osc.type = this.getWaveType(this.params[`wavetype${i}`]);
|
||||
|
||||
// Configura Afinação (Coarse = Semitons, Fine = Cents)
|
||||
const coarse = parseInt(this.params[`coarse${i}`] || 0);
|
||||
const fine = parseInt(
|
||||
this.params[`fine${i}`] || this.params[`finer${i}`] || 0
|
||||
);
|
||||
const detuneTotal = coarse * 100 + fine;
|
||||
|
||||
osc.frequency.value = freq;
|
||||
osc.detune.value = detuneTotal;
|
||||
|
||||
// Configura Volume do Oscilador
|
||||
// Dividimos por 300 (3 osciladores x 100) para normalizar e não distorcer
|
||||
oscGain.gain.value = (vol / 100) * 0.3;
|
||||
|
||||
// Conexões: Osc -> OscGain -> MasterGain
|
||||
osc.connect(oscGain);
|
||||
oscGain.connect(masterGain);
|
||||
|
||||
// Toca
|
||||
osc.start(startTime);
|
||||
osc.stop(startTime + duration + 2.0); // +2s de margem para o release do envelope
|
||||
// Conecta Osc -> Envelope (Mestre)
|
||||
osc.connect(this.envelope);
|
||||
|
||||
osc.start(now);
|
||||
osc.stop(now + dur + this.envelope.release);
|
||||
}
|
||||
}
|
||||
|
||||
// Dispara o envelope
|
||||
this.envelope.triggerAttackRelease(dur, now);
|
||||
}
|
||||
|
||||
applyEnvelope(gainNode, time, duration) {
|
||||
// Valores padrão do LMMS se não existirem no JSON
|
||||
// O LMMS usa escala 0-100 para tempo em alguns contextos, mas o parser XML geralmente traz valores brutos.
|
||||
// Vamos assumir valores pequenos como segundos ou normalizar.
|
||||
|
||||
let att = parseFloat(this.env.att || 0);
|
||||
let dec = parseFloat(this.env.dec || 0.5);
|
||||
let sus = parseFloat(this.env.sustain || 0.5);
|
||||
let rel = parseFloat(this.env.rel || 0.1);
|
||||
|
||||
// Ajuste empírico: Se os valores forem muito grandes (> 5), provavelmente estão em escala 0-100 ou similar
|
||||
if (att > 2) att /= 100;
|
||||
if (dec > 5) dec /= 100;
|
||||
// Sustain é sempre nível (0-1), mas as vezes vem como 100
|
||||
if (sus > 1) sus /= 100;
|
||||
if (rel > 5) rel /= 100;
|
||||
|
||||
const now = time;
|
||||
|
||||
// Garante que começa zerado
|
||||
gainNode.gain.cancelScheduledValues(now);
|
||||
gainNode.gain.setValueAtTime(0, now);
|
||||
|
||||
// Attack: Sobe até o volume máximo (1.0 relativo ao masterGain)
|
||||
gainNode.gain.linearRampToValueAtTime(1.0, now + att + 0.005);
|
||||
|
||||
// Decay: Desce até o nível de Sustain
|
||||
gainNode.gain.exponentialRampToValueAtTime(
|
||||
Math.max(sus, 0.001),
|
||||
now + att + dec
|
||||
);
|
||||
|
||||
// Sustain: Mantém o nível até o fim da nota
|
||||
gainNode.gain.setValueAtTime(Math.max(sus, 0.001), now + duration);
|
||||
|
||||
// Release: Desce a zero após soltar a nota
|
||||
gainNode.gain.exponentialRampToValueAtTime(0.001, now + duration + rel);
|
||||
connect(dest) {
|
||||
this.output.connect(dest);
|
||||
}
|
||||
}
|
||||
|
||||
dispose() {
|
||||
this.output.dispose();
|
||||
this.envelope.dispose();
|
||||
}
|
||||
}
|
||||
|
|
@ -5,16 +5,12 @@ import { renderAll, getSamplePathMap } from "./ui.js";
|
|||
import { DEFAULT_PAN, DEFAULT_VOLUME, NOTE_LENGTH } from "./config.js";
|
||||
import {
|
||||
initializeAudioContext,
|
||||
getAudioContext,
|
||||
getMainGainNode,
|
||||
} from "./audio.js";
|
||||
import * as Tone from "https://esm.sh/tone";
|
||||
|
||||
// --- NOVA IMPORTAÇÃO ---
|
||||
import { sendAction } from "./socket.js";
|
||||
|
||||
// --- NOVA ADIÇÃO ---
|
||||
// Conteúdo do 'teste.mmp' (projeto em branco)
|
||||
const BLANK_PROJECT_XML = `<?xml version="1.0"?>
|
||||
<!DOCTYPE lmms-project>
|
||||
<lmms-project type="song" version="1.0" creatorversion="1.2.2" creator="LMMS">
|
||||
|
|
@ -27,43 +23,32 @@ const BLANK_PROJECT_XML = `<?xml version="1.0"?>
|
|||
</song>
|
||||
</lmms-project>`;
|
||||
|
||||
/**
|
||||
* Executa um reset completo do estado local do projeto.
|
||||
* Limpa o backup da sessão, reseta o appState e renderiza a UI.
|
||||
*/
|
||||
export function handleLocalProjectReset() {
|
||||
console.log("Recebido comando de reset. Limpando estado local...");
|
||||
|
||||
// 1. Limpa o backup da sessão
|
||||
if (window.ROOM_NAME) {
|
||||
try {
|
||||
sessionStorage.removeItem(`temp_state_${window.ROOM_NAME}`);
|
||||
console.log("Estado da sessão local limpo.");
|
||||
} catch (e) {
|
||||
console.error("Falha ao limpar estado da sessão:", e);
|
||||
}
|
||||
}
|
||||
|
||||
// 2. Reseta o estado da memória (appState)
|
||||
// (Isso deve zerar o appState.pattern.tracks, etc)
|
||||
resetProjectState();
|
||||
|
||||
// 3. Reseta a UI global para os padrões
|
||||
document.getElementById("bpm-input").value = 140;
|
||||
document.getElementById("bars-input").value = 1;
|
||||
document.getElementById("compasso-a-input").value = 4;
|
||||
document.getElementById("compasso-b-input").value = 4;
|
||||
|
||||
// 4. Renderiza a UI vazia
|
||||
renderAll(); // Isso deve redesenhar o editor de patterns vazio
|
||||
|
||||
console.log("Reset local concluído.");
|
||||
renderAll();
|
||||
}
|
||||
|
||||
export async function handleFileLoad(file) {
|
||||
let xmlContent = "";
|
||||
try {
|
||||
if (file.name.toLowerCase().endsWith(".mmpz")) {
|
||||
// eslint-disable-next-line no-undef
|
||||
const jszip = new JSZip();
|
||||
const zip = await jszip.loadAsync(file);
|
||||
const projectFile = Object.keys(zip.files).find((name) =>
|
||||
|
|
@ -78,9 +63,6 @@ export async function handleFileLoad(file) {
|
|||
xmlContent = await file.text();
|
||||
}
|
||||
|
||||
// ANTES: await parseMmpContent(xmlContent);
|
||||
// DEPOIS:
|
||||
// Envia o XML para o servidor, que o transmitirá para todos (incluindo nós)
|
||||
sendAction({ type: "LOAD_PROJECT", xml: xmlContent });
|
||||
} catch (error) {
|
||||
console.error("Erro ao carregar o projeto:", error);
|
||||
|
|
@ -95,32 +77,20 @@ export async function loadProjectFromServer(fileName) {
|
|||
throw new Error(`Não foi possível carregar o arquivo ${fileName}`);
|
||||
|
||||
const xmlContent = await response.text();
|
||||
|
||||
// ANTES:
|
||||
// await parseMmpContent(xmlContent);
|
||||
// return true;
|
||||
|
||||
// DEPOIS:
|
||||
// Envia o XML para o servidor
|
||||
sendAction({ type: "LOAD_PROJECT", xml: xmlContent });
|
||||
return true; // Retorna true para que o modal de UI feche
|
||||
return true;
|
||||
} catch (error) {
|
||||
console.error("Erro ao carregar projeto do servidor:", error);
|
||||
console.error(error);
|
||||
alert(`Erro ao carregar projeto: ${error.message}`);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// 'parseMmpContent' agora é chamado pelo 'socket.js'
|
||||
// quando ele recebe a ação 'LOAD_PROJECT' ou 'load_project_state'.
|
||||
|
||||
export async function parseMmpContent(xmlString) {
|
||||
resetProjectState();
|
||||
initializeAudioContext();
|
||||
appState.global.justReset = xmlString === BLANK_PROJECT_XML;
|
||||
// Limpa manualmente a UI de áudio, pois resetProjectState()
|
||||
// só limpa os *dados* (appState.audio.clips).
|
||||
|
||||
const audioContainer = document.getElementById("audio-track-container");
|
||||
if (audioContainer) {
|
||||
audioContainer.innerHTML = "";
|
||||
|
|
@ -142,81 +112,52 @@ export async function parseMmpContent(xmlString) {
|
|||
head.getAttribute("timesig_denominator") || 4;
|
||||
}
|
||||
|
||||
const allBBTrackNodes = Array.from(
|
||||
xmlDoc.querySelectorAll(
|
||||
'song > trackcontainer[type="song"] > track[type="1"]'
|
||||
)
|
||||
// --- CORREÇÃO DA SELEÇÃO DE TRACKS ---
|
||||
|
||||
// 1. Identifica as faixas containers de Beat/Bassline (Type 1)
|
||||
const bbEditorTrackNodes = Array.from(
|
||||
xmlDoc.querySelectorAll('song > trackcontainer[type="song"] > track[type="1"]')
|
||||
);
|
||||
if (allBBTrackNodes.length === 0) {
|
||||
const allBBTrackNodes = Array.from(
|
||||
xmlDoc.querySelectorAll(
|
||||
'song > trackcontainer[type="song"] > track[type="1"]'
|
||||
)
|
||||
);
|
||||
if (allBBTrackNodes.length === 0) {
|
||||
appState.pattern.tracks = [];
|
||||
|
||||
// --- INÍCIO DA CORREÇÃO ---
|
||||
// O resetProjectState() [na linha 105] já limpou o appState.audio.
|
||||
// No entanto, a UI (DOM) do editor de áudio não foi limpa.
|
||||
// Vamos forçar a limpeza do container aqui:
|
||||
const audioContainer = document.getElementById("audio-track-container");
|
||||
if (audioContainer) {
|
||||
audioContainer.innerHTML = ""; // Limpa a UI de áudio
|
||||
}
|
||||
// --- FIM DA CORREÇÃO ---
|
||||
|
||||
renderAll(); //
|
||||
return; //
|
||||
}
|
||||
// 2. Identifica os nomes dos patterns (colunas do B/B Editor) - tag <bbtco>
|
||||
// Precisamos disso para dar nome aos patterns e saber quantos criar
|
||||
let sortedBBTrackNameNodes = [];
|
||||
if (bbEditorTrackNodes.length > 0) {
|
||||
// Pega do primeiro editor encontrado
|
||||
sortedBBTrackNameNodes = Array.from(bbEditorTrackNodes[0].querySelectorAll("bbtco"))
|
||||
.sort((a, b) => {
|
||||
const posA = parseInt(a.getAttribute("pos"), 10) || 0;
|
||||
const posB = parseInt(b.getAttribute("pos"), 10) || 0;
|
||||
return posA - posB;
|
||||
});
|
||||
}
|
||||
|
||||
const sortedBBTrackNameNodes = [...allBBTrackNodes].sort((a, b) => {
|
||||
const bbtcoA = a.querySelector("bbtco");
|
||||
const bbtcoB = a.querySelector("bbtco");
|
||||
const posA = bbtcoA ? parseInt(bbtcoA.getAttribute("pos"), 10) : Infinity;
|
||||
const posB = bbtcoB ? parseInt(bbtcoB.getAttribute("pos"), 10) : Infinity;
|
||||
return posA - posB;
|
||||
// 3. Identifica os instrumentos dentro do Beat/Bassline (Type 0 aninhado)
|
||||
const bbInstrumentTracks = [];
|
||||
bbEditorTrackNodes.forEach(container => {
|
||||
const instruments = container.querySelectorAll('bbtrack > trackcontainer > track[type="0"]');
|
||||
bbInstrumentTracks.push(...Array.from(instruments));
|
||||
});
|
||||
|
||||
// --- INÍCIO DA CORREÇÃO 1: Lendo TODAS as Basslines (Tracks type="1") ---
|
||||
// O bug anterior era que o código só lia os instrumentos (tracks type="0")
|
||||
// da PRIMEIRA bassline encontrada (allBBTrackNodes[0]).
|
||||
// A correção abaixo itera em TODAS as basslines (allBBTrackNodes.forEach)
|
||||
// e coleta os instrumentos de CADA UMA delas.
|
||||
// 4. Identifica os instrumentos do Song Editor (Type 0 direto)
|
||||
const songInstrumentTracks = Array.from(
|
||||
xmlDoc.querySelectorAll('song > trackcontainer[type="song"] > track[type="0"]')
|
||||
);
|
||||
|
||||
// Define um nome global (pode usar o da primeira track, se existir)
|
||||
appState.global.currentBeatBasslineName =
|
||||
allBBTrackNodes[0]?.getAttribute("name") || "Beat/Bassline";
|
||||
// Junta tudo
|
||||
const allInstrumentTrackNodes = [...bbInstrumentTracks, ...songInstrumentTracks];
|
||||
|
||||
// Cria um array para guardar TODOS os instrumentos de TODAS as basslines
|
||||
const allInstrumentTrackNodes = [];
|
||||
|
||||
// Loop em CADA bassline (allBBTrackNodes) em vez de apenas na [0]
|
||||
allBBTrackNodes.forEach((bbTrackNode) => {
|
||||
const bbTrackContainer = bbTrackNode.querySelector(
|
||||
"bbtrack > trackcontainer"
|
||||
);
|
||||
if (bbTrackContainer) {
|
||||
// Encontra os instrumentos (type="0") DENTRO desta bassline
|
||||
const instrumentTracks =
|
||||
bbTrackContainer.querySelectorAll('track[type="0"]');
|
||||
// Adiciona os instrumentos encontrados ao array principal
|
||||
allInstrumentTrackNodes.push(...Array.from(instrumentTracks));
|
||||
}
|
||||
});
|
||||
|
||||
// Se não achou NENHUM instrumento em NENHUMA bassline, encerra
|
||||
if (allInstrumentTrackNodes.length === 0) {
|
||||
appState.pattern.tracks = [];
|
||||
renderAll();
|
||||
return;
|
||||
appState.pattern.tracks = [];
|
||||
renderAll();
|
||||
return;
|
||||
}
|
||||
// --- FIM DA CORREÇÃO 1 ---
|
||||
|
||||
// Define um nome padrão para referência
|
||||
appState.global.currentBeatBasslineName = "Main Project";
|
||||
|
||||
const pathMap = getSamplePathMap();
|
||||
|
||||
// Agora o map usa o array corrigido (allInstrumentTrackNodes)
|
||||
newTracks = Array.from(allInstrumentTrackNodes)
|
||||
.map((trackNode) => {
|
||||
const instrumentNode = trackNode.querySelector("instrument");
|
||||
|
|
@ -224,48 +165,54 @@ export async function parseMmpContent(xmlString) {
|
|||
if (!instrumentNode || !instrumentTrackNode) return null;
|
||||
|
||||
const trackName = trackNode.getAttribute("name");
|
||||
|
||||
if (instrumentNode.getAttribute("name") === "tripleoscillator") {
|
||||
return null;
|
||||
}
|
||||
const instrumentName = instrumentNode.getAttribute("name");
|
||||
|
||||
const allPatternsNodeList = trackNode.querySelectorAll("pattern");
|
||||
const allPatternsArray = Array.from(allPatternsNodeList).sort((a, b) => {
|
||||
const posA = parseInt(a.getAttribute("pos"), 10) || 0;
|
||||
const posB = parseInt(b.getAttribute("pos"), 10) || 0;
|
||||
|
||||
// --- CORREÇÃO 2: Ordenação dos Patterns ---
|
||||
// O bug aqui era `posB - posA`, que invertia a ordem dos patterns
|
||||
// (o "Pattern 1" recebia as notas do "Pattern 8", etc.)
|
||||
// `posA - posB` garante a ordem correta (crescente: P1, P2, P3...).
|
||||
return posA - posB;
|
||||
});
|
||||
|
||||
const patterns = sortedBBTrackNameNodes.map((bbTrack, index) => {
|
||||
// Mapeia os patterns baseados nas colunas do B/B editor (sortedBBTrackNameNodes)
|
||||
// Se não houver colunas B/B (ex: projeto só Song Editor), cria 1 pattern padrão
|
||||
const patternsToCreate = sortedBBTrackNameNodes.length > 0 ? sortedBBTrackNameNodes : [{ getAttribute: () => "Pattern 1" }];
|
||||
|
||||
const patterns = patternsToCreate.map((bbTrack, index) => {
|
||||
const patternNode = allPatternsArray[index];
|
||||
const bbTrackName =
|
||||
bbTrack.getAttribute("name") || `Pattern ${index + 1}`;
|
||||
const bbTrackName = bbTrack.getAttribute("name") || `Pattern ${index + 1}`;
|
||||
|
||||
if (!patternNode) {
|
||||
const firstPattern = allPatternsArray[0];
|
||||
const stepsLength = firstPattern
|
||||
? parseInt(firstPattern.getAttribute("steps"), 10) || 16
|
||||
: 16;
|
||||
return {
|
||||
name: bbTrackName,
|
||||
steps: new Array(stepsLength).fill(false),
|
||||
steps: new Array(16).fill(false),
|
||||
notes: [],
|
||||
pos: 0,
|
||||
};
|
||||
}
|
||||
|
||||
const patternSteps =
|
||||
parseInt(patternNode.getAttribute("steps"), 10) || 16;
|
||||
const patternSteps = parseInt(patternNode.getAttribute("steps"), 10) || 16;
|
||||
const steps = new Array(patternSteps).fill(false);
|
||||
const notes = [];
|
||||
|
||||
const ticksPerStep = 12;
|
||||
|
||||
patternNode.querySelectorAll("note").forEach((noteNode) => {
|
||||
const noteLocalPos = parseInt(noteNode.getAttribute("pos"), 10);
|
||||
const stepIndex = Math.round(noteLocalPos / ticksPerStep);
|
||||
const pos = parseInt(noteNode.getAttribute("pos"), 10);
|
||||
const len = parseInt(noteNode.getAttribute("len"), 10);
|
||||
const key = parseInt(noteNode.getAttribute("key"), 10);
|
||||
const vol = parseInt(noteNode.getAttribute("vol"), 10);
|
||||
const pan = parseInt(noteNode.getAttribute("pan"), 10);
|
||||
|
||||
notes.push({
|
||||
pos: pos,
|
||||
len: len,
|
||||
key: key,
|
||||
vol: vol,
|
||||
pan: pan
|
||||
});
|
||||
|
||||
const stepIndex = Math.round(pos / ticksPerStep);
|
||||
if (stepIndex < patternSteps) {
|
||||
steps[stepIndex] = true;
|
||||
}
|
||||
|
|
@ -274,53 +221,52 @@ export async function parseMmpContent(xmlString) {
|
|||
return {
|
||||
name: bbTrackName,
|
||||
steps: steps,
|
||||
notes: notes,
|
||||
pos: parseInt(patternNode.getAttribute("pos"), 10) || 0,
|
||||
};
|
||||
});
|
||||
|
||||
const hasNotes = patterns.some((p) => p.steps.includes(true));
|
||||
if (!hasNotes) return null;
|
||||
// Verifica se tem notas em algum pattern
|
||||
const hasNotes = patterns.some((p) => p.notes.length > 0 || p.steps.includes(true));
|
||||
|
||||
// Opcional: Se quiser carregar tracks vazias, remova a linha abaixo
|
||||
if (!hasNotes && patterns.length === 0) return null;
|
||||
|
||||
const afpNode = instrumentNode.querySelector("audiofileprocessor");
|
||||
const sampleSrc = afpNode ? afpNode.getAttribute("src") : null;
|
||||
let finalSamplePath = null;
|
||||
if (sampleSrc) {
|
||||
const filename = sampleSrc.split("/").pop();
|
||||
if (pathMap[filename]) {
|
||||
finalSamplePath = pathMap[filename];
|
||||
} else {
|
||||
let cleanSrc = sampleSrc;
|
||||
if (cleanSrc.startsWith("samples/")) {
|
||||
cleanSrc = cleanSrc.substring("samples/".length);
|
||||
let trackType = "plugin";
|
||||
|
||||
if (instrumentName === "audiofileprocessor") {
|
||||
trackType = "sampler";
|
||||
const afpNode = instrumentNode.querySelector("audiofileprocessor");
|
||||
const sampleSrc = afpNode ? afpNode.getAttribute("src") : null;
|
||||
|
||||
if (sampleSrc) {
|
||||
const filename = sampleSrc.split("/").pop();
|
||||
if (pathMap[filename]) {
|
||||
finalSamplePath = pathMap[filename];
|
||||
} else {
|
||||
let cleanSrc = sampleSrc;
|
||||
if (cleanSrc.startsWith("samples/")) {
|
||||
cleanSrc = cleanSrc.substring("samples/".length);
|
||||
}
|
||||
finalSamplePath = `src/samples/${cleanSrc}`;
|
||||
}
|
||||
finalSamplePath = `src/samples/${cleanSrc}`;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const volFromFile = parseFloat(instrumentTrackNode.getAttribute("vol"));
|
||||
const panFromFile = parseFloat(instrumentTrackNode.getAttribute("pan"));
|
||||
const firstPatternWithNotesIndex = patterns.findIndex((p) =>
|
||||
p.steps.includes(true)
|
||||
);
|
||||
|
||||
return {
|
||||
id: Date.now() + Math.random(),
|
||||
name: trackName,
|
||||
type: trackType,
|
||||
samplePath: finalSamplePath,
|
||||
patterns: patterns,
|
||||
|
||||
// --- INÍCIO DA CORREÇÃO ---
|
||||
// ANTES:
|
||||
// activePatternIndex:
|
||||
// firstPatternWithNotesIndex !== -1 ? firstPatternWithNotesIndex : 0, //
|
||||
|
||||
// DEPOIS (force o Padrão 1):
|
||||
activePatternIndex: 0,
|
||||
// --- FIM DA CORREÇÃO ---
|
||||
|
||||
volume: !isNaN(volFromFile) ? volFromFile / 100 : DEFAULT_VOLUME,
|
||||
pan: !isNaN(panFromFile) ? panFromFile / 100 : DEFAULT_PAN,
|
||||
instrumentName: instrumentNode.getAttribute("name"),
|
||||
instrumentName: instrumentName,
|
||||
instrumentXml: instrumentNode.innerHTML,
|
||||
};
|
||||
})
|
||||
|
|
@ -328,26 +274,19 @@ export async function parseMmpContent(xmlString) {
|
|||
|
||||
let isFirstTrackWithNotes = true;
|
||||
newTracks.forEach((track) => {
|
||||
// --- INÍCIO DA CORREÇÃO ---
|
||||
// (Esta parte já existia no seu arquivo, mantida)
|
||||
// Agora usando Volume em dB (Opção B)
|
||||
track.volumeNode = new Tone.Volume(Tone.gainToDb(track.volume));
|
||||
track.pannerNode = new Tone.Panner(track.pan);
|
||||
|
||||
// Cadeia de áudio: Volume(dB) -> Panner -> Saída Principal
|
||||
track.volumeNode.connect(track.pannerNode);
|
||||
track.pannerNode.connect(getMainGainNode());
|
||||
// --- FIM DA CORREÇÃO ---
|
||||
|
||||
if (isFirstTrackWithNotes) {
|
||||
const activeIdx = track.activePatternIndex || 0;
|
||||
const activePattern = track.patterns[activeIdx];
|
||||
if (activePattern) {
|
||||
const firstPatternSteps = activePattern.steps.length;
|
||||
const stepsPerBar = 16;
|
||||
const requiredBars = Math.ceil(firstPatternSteps / stepsPerBar);
|
||||
document.getElementById("bars-input").value =
|
||||
requiredBars > 0 ? requiredBars : 1;
|
||||
if (activePattern && activePattern.steps) {
|
||||
const stepsLength = activePattern.steps.length;
|
||||
const requiredBars = Math.ceil(stepsLength / 16);
|
||||
document.getElementById("bars-input").value = requiredBars > 0 ? requiredBars : 1;
|
||||
isFirstTrackWithNotes = false;
|
||||
}
|
||||
}
|
||||
|
|
@ -364,45 +303,31 @@ export async function parseMmpContent(xmlString) {
|
|||
|
||||
appState.pattern.tracks = newTracks;
|
||||
appState.pattern.activeTrackId = appState.pattern.tracks[0]?.id || null;
|
||||
// --- INÍCIO DA CORREÇÃO ---
|
||||
// Define o estado global para também ser o Padrão 1 (índice 0)
|
||||
appState.pattern.activePatternIndex = 0;
|
||||
// --- FIM DA CORREÇÃO ---
|
||||
|
||||
// --- A MÁGICA DO F5 (Versão 2.0 - Corrigida) ---
|
||||
// --- Restauração de Sessão (F5) ---
|
||||
try {
|
||||
const roomName = window.ROOM_NAME || "default_room";
|
||||
const tempStateJSON = sessionStorage.getItem(`temp_state_${roomName}`);
|
||||
|
||||
if (tempStateJSON) {
|
||||
console.log("Restaurando estado temporário da sessão (pós-F5)...");
|
||||
console.log("Restaurando estado temporário da sessão...");
|
||||
const tempState = JSON.parse(tempStateJSON);
|
||||
|
||||
// NÃO FAÇA: appState.pattern = tempState.pattern; (Isso apaga os Tone.js nodes)
|
||||
|
||||
// EM VEZ DISSO, FAÇA O "MERGE" (MESCLAGEM):
|
||||
|
||||
// 1. Mescla os 'tracks'
|
||||
// Itera nos tracks "vivos" (com nós de áudio) que acabamos de criar
|
||||
appState.pattern.tracks.forEach((liveTrack) => {
|
||||
// Encontra o track salvo correspondente
|
||||
const savedTrack = tempState.pattern.tracks.find(
|
||||
(t) => t.id === liveTrack.id
|
||||
);
|
||||
|
||||
if (savedTrack) {
|
||||
// Copia os dados do 'savedTrack' para o 'liveTrack'
|
||||
liveTrack.name = savedTrack.name;
|
||||
liveTrack.patterns = savedTrack.patterns;
|
||||
liveTrack.patterns = savedTrack.patterns;
|
||||
liveTrack.activePatternIndex = savedTrack.activePatternIndex;
|
||||
liveTrack.volume = savedTrack.volume;
|
||||
liveTrack.pan = savedTrack.pan;
|
||||
|
||||
// ATUALIZA OS NÓS DO TONE.JS com os valores salvos!
|
||||
if (liveTrack.volumeNode) {
|
||||
liveTrack.volumeNode.volume.value = Tone.gainToDb(
|
||||
savedTrack.volume
|
||||
);
|
||||
liveTrack.volumeNode.volume.value = Tone.gainToDb(savedTrack.volume);
|
||||
}
|
||||
if (liveTrack.pannerNode) {
|
||||
liveTrack.pannerNode.pan.value = savedTrack.pan;
|
||||
|
|
@ -410,41 +335,23 @@ export async function parseMmpContent(xmlString) {
|
|||
}
|
||||
});
|
||||
|
||||
// 2. Remove tracks "vivos" que não existem mais no estado salvo
|
||||
// (Ex: se o usuário deletou um track antes de dar F5)
|
||||
appState.pattern.tracks = appState.pattern.tracks.filter((liveTrack) =>
|
||||
tempState.pattern.tracks.some((t) => t.id === liveTrack.id)
|
||||
);
|
||||
|
||||
// 3. Restaura valores globais da UI
|
||||
document.getElementById("bpm-input").value = tempState.global.bpm;
|
||||
document.getElementById("compasso-a-input").value =
|
||||
tempState.global.compassoA;
|
||||
document.getElementById("compasso-b-input").value =
|
||||
tempState.global.compassoB;
|
||||
document.getElementById("compasso-a-input").value = tempState.global.compassoA;
|
||||
document.getElementById("compasso-b-input").value = tempState.global.compassoB;
|
||||
document.getElementById("bars-input").value = tempState.global.bars;
|
||||
|
||||
// 4. Restaura o ID do track ativo
|
||||
appState.pattern.activeTrackId = tempState.pattern.activeTrackId;
|
||||
|
||||
console.log("Estado da sessão restaurado com sucesso.");
|
||||
}
|
||||
} catch (e) {
|
||||
console.error(
|
||||
"Erro ao restaurar estado da sessão (pode estar corrompido)",
|
||||
e
|
||||
);
|
||||
if (window.ROOM_NAME) {
|
||||
sessionStorage.removeItem(`temp_state_${window.ROOM_NAME}`);
|
||||
}
|
||||
console.error("Erro ao restaurar sessão:", e);
|
||||
}
|
||||
// --- FIM DA MÁGICA (V2.0) ---
|
||||
|
||||
// Agora sim, renderiza com o estado CORRIGIDO E MESCLADO
|
||||
await Promise.resolve();
|
||||
renderAll();
|
||||
|
||||
console.log("[UI] Projeto renderizado após parseMmpContent");
|
||||
}
|
||||
|
||||
export function generateMmpFile() {
|
||||
|
|
@ -455,17 +362,9 @@ export function generateMmpFile() {
|
|||
}
|
||||
}
|
||||
|
||||
// Função auxiliar (pode ser movida para cá) que gera o XML a partir do appState
|
||||
// Copiada de generateMmpFile/modifyAndSaveExistingMmp
|
||||
function generateXmlFromState() {
|
||||
if (!appState.global.originalXmlDoc) {
|
||||
// Se não houver XML original, precisamos gerar um novo
|
||||
// Por simplicidade, para este fix, vamos retornar o estado atual do LMMS
|
||||
// mas o ideal seria gerar o XML completo (como generateNewMmp)
|
||||
console.warn(
|
||||
"Não há XML original para modificar. Usando a base atual do appState."
|
||||
);
|
||||
// No seu caso, use o conteúdo de generateNewMmp()
|
||||
console.warn("Não há XML original. Retornando vazio.");
|
||||
return "";
|
||||
}
|
||||
|
||||
|
|
@ -474,76 +373,68 @@ function generateXmlFromState() {
|
|||
if (head) {
|
||||
head.setAttribute("bpm", document.getElementById("bpm-input").value);
|
||||
head.setAttribute("num_bars", document.getElementById("bars-input").value);
|
||||
head.setAttribute(
|
||||
"timesig_numerator",
|
||||
document.getElementById("compasso-a-input").value
|
||||
);
|
||||
head.setAttribute(
|
||||
"timesig_denominator",
|
||||
document.getElementById("compasso-b-input").value
|
||||
);
|
||||
head.setAttribute("timesig_numerator", document.getElementById("compasso-a-input").value);
|
||||
head.setAttribute("timesig_denominator", document.getElementById("compasso-b-input").value);
|
||||
}
|
||||
const bbTrackContainer = xmlDoc.querySelector(
|
||||
'track[type="1"] > bbtrack > trackcontainer'
|
||||
);
|
||||
|
||||
const bbTrackContainer = xmlDoc.querySelector('track[type="1"] > bbtrack > trackcontainer');
|
||||
if (bbTrackContainer) {
|
||||
bbTrackContainer
|
||||
.querySelectorAll('track[type="0"]')
|
||||
.forEach((node) => node.remove());
|
||||
bbTrackContainer.querySelectorAll('track[type="0"]').forEach((node) => node.remove());
|
||||
const tracksXml = appState.pattern.tracks
|
||||
.map((track) => createTrackXml(track))
|
||||
.join("");
|
||||
const tempDoc = new DOMParser().parseFromString(
|
||||
`<root>${tracksXml}</root>`,
|
||||
"application/xml"
|
||||
);
|
||||
|
||||
// Gambiarra para inserir o XML gerado como nós DOM
|
||||
const tempDoc = new DOMParser().parseFromString(`<root>${tracksXml}</root>`, "application/xml");
|
||||
Array.from(tempDoc.documentElement.children).forEach((newTrackNode) => {
|
||||
bbTrackContainer.appendChild(newTrackNode);
|
||||
});
|
||||
}
|
||||
|
||||
const serializer = new XMLSerializer();
|
||||
return serializer.serializeToString(xmlDoc);
|
||||
}
|
||||
|
||||
/**
|
||||
* Envia o estado ATUAL do projeto (XML dos padrões) para o servidor
|
||||
* para que ele persista a "cópia temporária" em disco/memória.
|
||||
* Deve ser chamado APÓS alterações significativas no padrão (steps, tracks).
|
||||
*/
|
||||
export function syncPatternStateToServer() {
|
||||
if (!window.ROOM_NAME) return;
|
||||
const currentXml = generateXmlFromState();
|
||||
|
||||
sendAction({
|
||||
type: "SYNC_PATTERN_STATE",
|
||||
xml: currentXml,
|
||||
});
|
||||
|
||||
// Salva o estado localmente também!
|
||||
saveStateToSession(); // <-- ADICIONE ISSO
|
||||
sendAction({ type: "SYNC_PATTERN_STATE", xml: currentXml });
|
||||
saveStateToSession();
|
||||
}
|
||||
|
||||
function createTrackXml(track) {
|
||||
if (track.patterns.length === 0) return "";
|
||||
|
||||
const ticksPerStep = 12;
|
||||
const lmmsVolume = Math.round(track.volume * 100);
|
||||
const lmmsPan = Math.round(track.pan * 100);
|
||||
const patternsXml = track.patterns
|
||||
.map((pattern) => {
|
||||
const patternNotes = pattern.steps
|
||||
.map((isActive, index) => {
|
||||
|
||||
const patternsXml = track.patterns.map((pattern) => {
|
||||
let patternNotesXml = "";
|
||||
|
||||
// SE for plugin e tiver notas detalhadas, usa elas
|
||||
if (track.type === "plugin" && pattern.notes && pattern.notes.length > 0) {
|
||||
patternNotesXml = pattern.notes.map(note => {
|
||||
return `<note vol="${note.vol}" len="${note.len}" pos="${note.pos}" pan="${note.pan}" key="${note.key}"/>`;
|
||||
}).join("\n ");
|
||||
}
|
||||
// SE for sampler (ou plugin sem notas detalhadas), usa os steps convertidos em notas simples
|
||||
else {
|
||||
patternNotesXml = pattern.steps.map((isActive, index) => {
|
||||
if (isActive) {
|
||||
const notePos = Math.round(index * ticksPerStep);
|
||||
// Key 57 é o padrão do LMMS para samples (Lá)
|
||||
return `<note vol="100" len="${NOTE_LENGTH}" pos="${notePos}" pan="0" key="57"/>`;
|
||||
}
|
||||
return "";
|
||||
})
|
||||
.join("\n ");
|
||||
}).join("\n ");
|
||||
}
|
||||
|
||||
return `<pattern type="0" pos="${pattern.pos}" muted="0" steps="${pattern.steps.length}" name="${pattern.name}">
|
||||
${patternNotes}
|
||||
${patternNotesXml}
|
||||
</pattern>`;
|
||||
})
|
||||
.join("\n ");
|
||||
}).join("\n ");
|
||||
|
||||
return `
|
||||
<track type="0" solo="0" muted="0" name="${track.name}">
|
||||
<instrumenttrack vol="${lmmsVolume}" pitch="0" fxch="0" pitchrange="1" basenote="57" usemasterpitch="1" pan="${lmmsPan}">
|
||||
|
|
@ -557,42 +448,8 @@ function createTrackXml(track) {
|
|||
}
|
||||
|
||||
function modifyAndSaveExistingMmp() {
|
||||
console.log("Modificando arquivo .mmp existente...");
|
||||
const xmlDoc = appState.global.originalXmlDoc.cloneNode(true);
|
||||
const head = xmlDoc.querySelector("head");
|
||||
if (head) {
|
||||
head.setAttribute("bpm", document.getElementById("bpm-input").value);
|
||||
head.setAttribute("num_bars", document.getElementById("bars-input").value);
|
||||
head.setAttribute(
|
||||
"timesig_numerator",
|
||||
document.getElementById("compasso-a-input").value
|
||||
);
|
||||
head.setAttribute(
|
||||
"timesig_denominator",
|
||||
document.getElementById("compasso-b-input").value
|
||||
);
|
||||
}
|
||||
const bbTrackContainer = xmlDoc.querySelector(
|
||||
'track[type="1"] > bbtrack > trackcontainer'
|
||||
);
|
||||
if (bbTrackContainer) {
|
||||
bbTrackContainer
|
||||
.querySelectorAll('track[type="0"]')
|
||||
.forEach((node) => node.remove());
|
||||
const tracksXml = appState.pattern.tracks
|
||||
.map((track) => createTrackXml(track))
|
||||
.join("");
|
||||
const tempDoc = new DOMParser().parseFromString(
|
||||
`<root>${tracksXml}</root>`,
|
||||
"application/xml"
|
||||
);
|
||||
Array.from(tempDoc.documentElement.children).forEach((newTrackNode) => {
|
||||
bbTrackContainer.appendChild(newTrackNode);
|
||||
});
|
||||
}
|
||||
const serializer = new XMLSerializer();
|
||||
const mmpContent = serializer.serializeToString(xmlDoc);
|
||||
downloadFile(mmpContent, "projeto_editado.mmp");
|
||||
const content = generateXmlFromState();
|
||||
downloadFile(content, "projeto_editado.mmp");
|
||||
}
|
||||
|
||||
function generateNewMmp() {
|
||||
|
|
@ -603,6 +460,7 @@ function generateNewMmp() {
|
|||
const tracksXml = appState.pattern.tracks
|
||||
.map((track) => createTrackXml(track))
|
||||
.join("");
|
||||
|
||||
const mmpContent = `<?xml version="1.0"?>
|
||||
<!DOCTYPE lmms-project>
|
||||
<lmms-project version="1.0" type="song" creator="MMPCreator" creatorversion="1.0">
|
||||
|
|
@ -643,4 +501,4 @@ function downloadFile(content, fileName) {
|
|||
URL.revokeObjectURL(url);
|
||||
}
|
||||
|
||||
export { BLANK_PROJECT_XML };
|
||||
export { BLANK_PROJECT_XML };
|
||||
|
|
@ -8,6 +8,9 @@ import { initializeAudioContext } from "../audio.js";
|
|||
|
||||
const timerDisplay = document.getElementById("timer-display");
|
||||
|
||||
// Variável para armazenar as "Parts" (sequências melódicas) do Tone.js
|
||||
let activeParts = [];
|
||||
|
||||
function formatTime(milliseconds) {
|
||||
const totalSeconds = Math.floor(milliseconds / 1000);
|
||||
const minutes = Math.floor(totalSeconds / 60)
|
||||
|
|
@ -46,7 +49,7 @@ export function playSample(filePath, trackId) {
|
|||
track.pannerNode.pan.value = track.pan ?? 0;
|
||||
}
|
||||
|
||||
// Garante conexão: player -> volumeNode (não usar mais gainNode)
|
||||
// Garante conexão: player -> volumeNode
|
||||
try {
|
||||
track.player.disconnect();
|
||||
} catch {}
|
||||
|
|
@ -103,17 +106,29 @@ function tick() {
|
|||
|
||||
// Percorre tracks e toca o step atual se ativo
|
||||
appState.pattern.tracks.forEach((track) => {
|
||||
if (track.muted) return; // Respeita o Mute
|
||||
if (!track.patterns || track.patterns.length === 0) return;
|
||||
|
||||
// IMPORTANTE: usar o pattern ativo da PRÓPRIA TRILHA
|
||||
const activePattern = track.patterns[track.activePatternIndex];
|
||||
|
||||
if (
|
||||
activePattern &&
|
||||
activePattern.steps[appState.global.currentStep] &&
|
||||
track.samplePath
|
||||
) {
|
||||
playSample(track.samplePath, track.id);
|
||||
// Verifica se o step atual está ativo
|
||||
if (activePattern && activePattern.steps[appState.global.currentStep]) {
|
||||
|
||||
// CASO 1: SAMPLER (Arquivo de Áudio)
|
||||
if (track.samplePath) {
|
||||
playSample(track.samplePath, track.id);
|
||||
}
|
||||
// CASO 2: PLUGIN (Sintetizador)
|
||||
// Se for plugin e tiver step marcado, toca nota padrão (C5)
|
||||
else if (track.type === 'plugin' && track.instrument) {
|
||||
// "16n" é a duração de uma semicolcheia
|
||||
// Usamos um try/catch para evitar travar o loop se o plugin falhar
|
||||
try {
|
||||
track.instrument.triggerAttackRelease("C5", "16n", Tone.now());
|
||||
} catch (e) {
|
||||
console.warn("Falha ao tocar step do plugin:", e);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -125,6 +140,11 @@ export function startPlayback() {
|
|||
if (appState.global.isPlaying || appState.pattern.tracks.length === 0) return;
|
||||
initializeAudioContext();
|
||||
|
||||
// Garante que o contexto do Tone esteja rodando
|
||||
if (Tone.context.state !== "running") {
|
||||
Tone.start();
|
||||
}
|
||||
|
||||
if (appState.global.currentStep === 0) {
|
||||
rewindPlayback();
|
||||
}
|
||||
|
|
@ -136,6 +156,11 @@ export function startPlayback() {
|
|||
if (appState.global.playbackIntervalId)
|
||||
clearInterval(appState.global.playbackIntervalId);
|
||||
|
||||
// --- NOVO: Agenda o Piano Roll (Melodias) ---
|
||||
schedulePianoRoll();
|
||||
Tone.Transport.start(); // Inicia o relógio para as notas melódicas
|
||||
// --------------------------------------------
|
||||
|
||||
appState.global.isPlaying = true;
|
||||
const playBtn = document.getElementById("play-btn");
|
||||
if (playBtn) {
|
||||
|
|
@ -154,6 +179,21 @@ export function stopPlayback() {
|
|||
appState.global.playbackIntervalId = null;
|
||||
appState.global.isPlaying = false;
|
||||
|
||||
// --- NOVO: Para o Transport e Limpa Synths ---
|
||||
Tone.Transport.stop();
|
||||
|
||||
// Limpa agendamentos melódicos
|
||||
activeParts.forEach(part => part.dispose());
|
||||
activeParts = [];
|
||||
|
||||
// Solta notas travadas de todos os plugins
|
||||
appState.pattern.tracks.forEach(track => {
|
||||
try { track.player?.stop(); } catch {}
|
||||
try { track.instrument?.releaseAll?.(); } catch {} // Para PolySynths
|
||||
try { track.instrument?.triggerRelease?.(); } catch {} // Para MonoSynths
|
||||
});
|
||||
// --------------------------------------------
|
||||
|
||||
document
|
||||
.querySelectorAll(".step.playing")
|
||||
.forEach((s) => s.classList.remove("playing"));
|
||||
|
|
@ -173,6 +213,9 @@ export function rewindPlayback() {
|
|||
? appState.global.currentStep - 1
|
||||
: getTotalSteps() - 1;
|
||||
appState.global.currentStep = 0;
|
||||
|
||||
Tone.Transport.position = 0; // Reseta o tempo do Tone.js
|
||||
|
||||
if (!appState.global.isPlaying) {
|
||||
if (timerDisplay) timerDisplay.textContent = "00:00:00";
|
||||
highlightStep(lastStep, false);
|
||||
|
|
@ -190,51 +233,88 @@ export function togglePlayback() {
|
|||
}
|
||||
|
||||
// =========================================================================
|
||||
// FUNÇÃO CORRIGIDA v3: Renderizar o Pattern atual para um Blob de Áudio
|
||||
// AGENDADOR DE PIANO ROLL (NOVA FUNÇÃO)
|
||||
// Agenda as notas melódicas (desenhadas no Piano Roll) para tocar no Tone.Transport
|
||||
// =========================================================================
|
||||
function schedulePianoRoll() {
|
||||
// Limpa anteriores por segurança
|
||||
activeParts.forEach(part => part.dispose());
|
||||
activeParts = [];
|
||||
|
||||
appState.pattern.tracks.forEach(track => {
|
||||
if (track.muted) return;
|
||||
const pattern = track.patterns[track.activePatternIndex];
|
||||
|
||||
// Só agenda se tiver notas E for um instrumento
|
||||
if (pattern && pattern.notes && pattern.notes.length > 0 && track.instrument) {
|
||||
|
||||
// Mapeia as notas para o formato de evento do Tone.js
|
||||
const events = pattern.notes.map(note => {
|
||||
return {
|
||||
// Converte Ticks (pos) para Tempo Musical do Tone.js
|
||||
// Assumindo 192 PPQ (padrão LMMS) -> Tone PPQ
|
||||
time: 0 + (note.pos * (Tone.Transport.PPQ / 192) / Tone.Transport.PPQ),
|
||||
midi: note.key,
|
||||
duration: note.len + "i", // 'i' em Tone.js significa ticks
|
||||
velocity: (note.vol || 100) / 100
|
||||
};
|
||||
});
|
||||
|
||||
// Cria uma Part (sequência)
|
||||
const part = new Tone.Part((time, value) => {
|
||||
if (track.muted) return;
|
||||
|
||||
const freq = Tone.Frequency(value.midi, "midi");
|
||||
// Dispara o método que padronizamos em todos os plugins
|
||||
if (track.instrument.triggerAttackRelease) {
|
||||
track.instrument.triggerAttackRelease(freq, value.duration, time, value.velocity);
|
||||
}
|
||||
}, events).start(0);
|
||||
|
||||
// Configura o Loop da Melodia
|
||||
const bars = parseInt(document.getElementById('bars-input')?.value || 1);
|
||||
part.loop = true;
|
||||
part.loopEnd = bars + "m"; // 'm' = measure (compasso)
|
||||
|
||||
activeParts.push(part);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// =========================================================================
|
||||
// Renderizar o Pattern atual para um Blob de Áudio (MANTIDO ORIGINAL)
|
||||
// =========================================================================
|
||||
|
||||
export async function renderActivePatternToBlob() {
|
||||
initializeAudioContext(); // Garante que o contexto de áudio principal existe
|
||||
initializeAudioContext();
|
||||
|
||||
// 1. Obter configs atuais
|
||||
const bpm = parseInt(document.getElementById("bpm-input").value, 10) || 120;
|
||||
const totalSteps = getTotalSteps();
|
||||
const stepInterval = 60 / (bpm * 4); // Duração de 1 step (em segundos)
|
||||
const duration = totalSteps * stepInterval; // Duração total em segundos
|
||||
const stepInterval = 60 / (bpm * 4);
|
||||
const duration = totalSteps * stepInterval;
|
||||
|
||||
// 2. Descobrir qual pattern está ativo (assume que todos estão no mesmo)
|
||||
const activePatternIndex =
|
||||
appState.pattern.tracks[0]?.activePatternIndex || 0;
|
||||
|
||||
// 3. Renderizar offline usando Tone.Offline
|
||||
const buffer = await Tone.Offline(async () => {
|
||||
// ----------------------------------------------------
|
||||
// Contexto de Áudio OFFLINE
|
||||
// ----------------------------------------------------
|
||||
const masterGain = new Tone.Gain().toDestination();
|
||||
|
||||
// --- INÍCIO DA CORREÇÃO (Lógica de Polifonia) ---
|
||||
|
||||
// 1. Criamos as 'Parts'.
|
||||
const offlineTracksParts = appState.pattern.tracks
|
||||
.map((track) => {
|
||||
const pattern = track.patterns[activePatternIndex];
|
||||
|
||||
// Verificação crucial: Precisamos do 'track.buffer' (áudio carregado)
|
||||
// Nota: O render atual suporta apenas Samplers (buffers carregados)
|
||||
// Para suportar Plugins no futuro, precisaríamos recriar o synth aqui dentro.
|
||||
if (!pattern || !track.buffer || !pattern.steps.includes(true)) {
|
||||
return null; // Pula trilha se não tiver áudio ou notas
|
||||
return null;
|
||||
}
|
||||
|
||||
// Obtém o buffer de áudio (que já está carregado)
|
||||
const trackBuffer = track.buffer;
|
||||
|
||||
// Cria a cadeia de áudio (Volume/Pan) para esta *trilha*
|
||||
const panner = new Tone.Panner(track.pan).connect(masterGain);
|
||||
const volume = new Tone.Volume(Tone.gainToDb(track.volume)).connect(
|
||||
panner
|
||||
);
|
||||
|
||||
// Cria a lista de eventos (tempos em que as notas devem tocar)
|
||||
const events = [];
|
||||
pattern.steps.forEach((isActive, stepIndex) => {
|
||||
if (isActive) {
|
||||
|
|
@ -243,48 +323,30 @@ export async function renderActivePatternToBlob() {
|
|||
}
|
||||
});
|
||||
|
||||
// Cria a Tone.Part
|
||||
const part = new Tone.Part((time) => {
|
||||
// *** ESTA É A CORREÇÃO CRÍTICA ***
|
||||
// Para cada nota (cada 'time' na lista de 'events'),
|
||||
// nós criamos um PLAYER "ONE-SHOT" (descartável).
|
||||
// Isso permite que vários sons da mesma trilha
|
||||
// se sobreponham (polifonia).
|
||||
new Tone.Player(trackBuffer)
|
||||
.connect(volume)
|
||||
.start(time);
|
||||
}, events);
|
||||
|
||||
new Tone.Player(trackBuffer) // Usa o buffer carregado
|
||||
.connect(volume) // Conecta na cadeia de áudio (Volume->Pan->Master)
|
||||
.start(time); // Toca no tempo agendado
|
||||
}, events); // Passa a lista de tempos [0, 0.25, 0.5, ...]
|
||||
|
||||
return part; // Retorna a Part (que sabe quando disparar)
|
||||
return part;
|
||||
})
|
||||
.filter((t) => t !== null); // Remove trilhas nulas
|
||||
.filter((t) => t !== null);
|
||||
|
||||
// 2. Como estamos usando buffers já carregados,
|
||||
// não precisamos esperar (remover 'await Tone.loaded()')
|
||||
|
||||
// 3. Agenda todas as 'Parts' para começar
|
||||
offlineTracksParts.forEach((part) => {
|
||||
part.start(0);
|
||||
});
|
||||
// --- FIM DA CORREÇÃO ---
|
||||
|
||||
// Define o BPM do transporte offline
|
||||
Tone.Transport.bpm.value = bpm;
|
||||
|
||||
// Inicia o transporte (para a renderização)
|
||||
Tone.Transport.start();
|
||||
// ----------------------------------------------------
|
||||
}, duration); // Duração total da renderização
|
||||
}, duration);
|
||||
|
||||
// 5. Converte o AudioBuffer resultante em um Blob (arquivo .wav)
|
||||
const blob = bufferToWave(buffer);
|
||||
return blob;
|
||||
}
|
||||
|
||||
// =========================================================================
|
||||
// FUNÇÃO UTILITÁRIA: Converte AudioBuffer para Blob WAV
|
||||
// (Mantenha esta função como está)
|
||||
// FUNÇÃO UTILITÁRIA: Converte AudioBuffer para Blob WAV (MANTIDO ORIGINAL)
|
||||
// =========================================================================
|
||||
|
||||
function bufferToWave(abuffer) {
|
||||
|
|
@ -298,7 +360,6 @@ function bufferToWave(abuffer) {
|
|||
let offset = 0;
|
||||
let pos = 0;
|
||||
|
||||
// setAll e setString são helpers
|
||||
function setAll(data) {
|
||||
for (i = 0; i < data.length; i++) {
|
||||
view.setUint8(pos + i, data[i]);
|
||||
|
|
@ -309,44 +370,41 @@ function bufferToWave(abuffer) {
|
|||
setAll(s.split("").map((c) => c.charCodeAt(0)));
|
||||
}
|
||||
|
||||
// Cabeçalho WAV
|
||||
setString("RIFF");
|
||||
view.setUint32(pos, length - 8, true);
|
||||
pos += 4;
|
||||
setString("WAVE");
|
||||
setString("fmt ");
|
||||
view.setUint32(pos, 16, true);
|
||||
pos += 4; // Sub-chunk size
|
||||
pos += 4;
|
||||
view.setUint16(pos, 1, true);
|
||||
pos += 2; // Audio format 1
|
||||
pos += 2;
|
||||
view.setUint16(pos, numOfChan, true);
|
||||
pos += 2;
|
||||
view.setUint32(pos, abuffer.sampleRate, true);
|
||||
pos += 4;
|
||||
view.setUint32(pos, abuffer.sampleRate * 2 * numOfChan, true);
|
||||
pos += 4; // Byte rate
|
||||
pos += 4;
|
||||
view.setUint16(pos, numOfChan * 2, true);
|
||||
pos += 2; // Block align
|
||||
pos += 2;
|
||||
view.setUint16(pos, 16, true);
|
||||
pos += 2; // Bits per sample
|
||||
pos += 2;
|
||||
setString("data");
|
||||
view.setUint32(pos, length - 44, true);
|
||||
pos += 4;
|
||||
|
||||
// Pega os dados dos canais
|
||||
for (i = 0; i < numOfChan; i++) {
|
||||
channels.push(abuffer.getChannelData(i));
|
||||
}
|
||||
|
||||
// Escreve os dados (intercalando canais)
|
||||
for (i = 0; i < abuffer.length; i++) {
|
||||
for (let j = 0; j < numOfChan; j++) {
|
||||
sample = Math.max(-1, Math.min(1, channels[j][i]));
|
||||
sample = (0.5 + sample * 32767.5) | 0; // Converte para 16-bit PCM
|
||||
sample = (0.5 + sample * 32767.5) | 0;
|
||||
view.setInt16(pos, sample, true);
|
||||
pos += 2;
|
||||
}
|
||||
}
|
||||
|
||||
return new Blob([buffer], { type: "audio/wav" });
|
||||
}
|
||||
}
|
||||
|
|
@ -1,5 +1,10 @@
|
|||
// js/pattern_state.js
|
||||
import * as Tone from "https://esm.sh/tone";
|
||||
import { TripleOscillator } from "../../audio/plugins/TripleOscillator.js";
|
||||
import { Kicker } from "../../audio/plugins/Kicker.js";
|
||||
import { Lb302 } from "../../audio/plugins/Lb302.js";
|
||||
import { Nes } from "../../audio/plugins/Nes.js";
|
||||
import { SuperSaw } from "../../audio/plugins/SuperSaw.js";
|
||||
|
||||
import { appState } from "../state.js";
|
||||
import { DEFAULT_VOLUME, DEFAULT_PAN } from "../config.js";
|
||||
|
|
@ -7,29 +12,20 @@ import { getMainGainNode } from "../audio.js";
|
|||
import { getTotalSteps } from "../utils.js";
|
||||
|
||||
export function initializePatternState() {
|
||||
// Limpa players/buffers existentes
|
||||
appState.pattern.tracks.forEach(track => {
|
||||
try { track.player?.dispose(); } catch {}
|
||||
try { track.buffer?.dispose?.(); } catch {}
|
||||
try { track.instrument?.dispose(); } catch {}
|
||||
});
|
||||
|
||||
// Reseta estado do editor de pattern
|
||||
appState.pattern.tracks = [];
|
||||
appState.pattern.activeTrackId = null;
|
||||
appState.pattern.activePatternIndex = 0;
|
||||
}
|
||||
|
||||
export async function loadAudioForTrack(track) {
|
||||
if (!track.samplePath) return track;
|
||||
|
||||
// 1. Garante a criação dos nós de Volume e Pan
|
||||
try {
|
||||
// Descartar player/buffer anteriores com segurança
|
||||
try { track.player?.dispose(); } catch {}
|
||||
track.player = null;
|
||||
try { track.buffer?.dispose?.(); } catch {}
|
||||
track.buffer = null;
|
||||
|
||||
// Garante nós de volume/pan (Opção B: Volume em dB)
|
||||
if (!track.volumeNode) {
|
||||
track.volumeNode = new Tone.Volume(
|
||||
track.volume === 0 ? -Infinity : Tone.gainToDb(track.volume)
|
||||
|
|
@ -45,30 +41,135 @@ export async function loadAudioForTrack(track) {
|
|||
track.pannerNode.pan.value = track.pan ?? 0;
|
||||
}
|
||||
|
||||
// Encadeia: Volume(dB) -> Panner -> Master
|
||||
try { track.instrument?.disconnect(); } catch {}
|
||||
try { track.player?.disconnect(); } catch {}
|
||||
try { track.volumeNode.disconnect(); } catch {}
|
||||
try { track.pannerNode.disconnect(); } catch {}
|
||||
|
||||
track.volumeNode.connect(track.pannerNode);
|
||||
track.pannerNode.connect(getMainGainNode());
|
||||
|
||||
// Cria e carrega o Player
|
||||
const player = new Tone.Player({ url: track.samplePath, autostart: false });
|
||||
await player.load(track.samplePath); // garante buffer carregado
|
||||
} catch (e) {
|
||||
console.error("Erro ao criar nós de áudio base:", e);
|
||||
}
|
||||
|
||||
// --- DETECÇÃO DE TIPO DE ARQUIVO ---
|
||||
// Verifica se é um formato de áudio que o navegador suporta
|
||||
// Verifica tipo de arquivo
|
||||
const isStandardAudio = track.samplePath && /\.(wav|mp3|ogg|flac|m4a)$/i.test(track.samplePath);
|
||||
const isDrumSynth = track.samplePath && /\.ds$/i.test(track.samplePath);
|
||||
|
||||
// Se não for áudio (ou for .ds/.xpf), é Plugin
|
||||
if (!track.samplePath || !isStandardAudio) {
|
||||
try {
|
||||
if (track.instrument) { try { track.instrument.dispose(); } catch {} }
|
||||
|
||||
let synth;
|
||||
const name = (track.instrumentName || "").toLowerCase();
|
||||
|
||||
// DADOS DO PLUGIN (Tenta parsear XML se for string, ou usa vazio)
|
||||
// Dica: O ideal seria ter um parser real aqui, mas vamos passar {} por enquanto
|
||||
const pluginData = {};
|
||||
|
||||
// SELETOR DE PLUGINS
|
||||
switch (name) {
|
||||
case "tripleoscillator":
|
||||
case "3osc":
|
||||
synth = new TripleOscillator(Tone.getContext(), pluginData);
|
||||
break;
|
||||
|
||||
case "kicker":
|
||||
synth = new Kicker(Tone.getContext(), pluginData);
|
||||
break;
|
||||
|
||||
case "lb302":
|
||||
synth = new Lb302(Tone.getContext(), pluginData);
|
||||
break;
|
||||
|
||||
case "nes":
|
||||
case "freeboy": // Freeboy é parecido com NES
|
||||
case "papu": // Papu também é Gameboy
|
||||
case "sid": // SID é 8-bit também, usaremos NES como fallback por enquanto
|
||||
synth = new Nes(Tone.getContext(), pluginData);
|
||||
break;
|
||||
|
||||
// --- PACOTE SUPER SAW ---
|
||||
case "zynaddsubfx": // O clássico
|
||||
case "watsyn": // Wavetable Synth
|
||||
case "monstro": // 3 Osciladores monstruosos
|
||||
case "vibedstrings": // Strings vibrantes (fatsaw funciona bem como base)
|
||||
case "SuperSaw":
|
||||
synth = new SuperSaw(Tone.getContext(), pluginData);
|
||||
break;
|
||||
|
||||
case "organic": // Fallback simples para Organic (Additive)
|
||||
synth = new Tone.PolySynth(Tone.Synth, {
|
||||
oscillator: { type: "sine", count: 8, spread: 20 }
|
||||
});
|
||||
break;
|
||||
|
||||
case "zynaddsubfx": // O monstro!
|
||||
// Zyn é impossível de clonar rápido. Vamos usar um "SuperSaw" gordo como placeholder
|
||||
synth = new Tone.PolySynth(Tone.Synth, {
|
||||
oscillator: { type: "fatsawtooth", count: 3, spread: 30 },
|
||||
envelope: { attack: 0.1, decay: 0.3, sustain: 0.8, release: 1 }
|
||||
});
|
||||
break;
|
||||
|
||||
default:
|
||||
console.warn(`Plugin ${name} desconhecido, usando fallback.`);
|
||||
// Fallback genérico
|
||||
synth = new Tone.PolySynth(Tone.Synth, { oscillator: { type: "triangle" } });
|
||||
}
|
||||
|
||||
// Se o plugin criou uma classe wrapper (nossas classes .js),
|
||||
// ele tem o método .connect. Se for Tone nativo (Organic/Zyn fallback), também tem.
|
||||
if (synth.output) {
|
||||
// Nossas classes customizadas
|
||||
synth.connect(track.volumeNode);
|
||||
} else {
|
||||
// Objetos Tone.js puros
|
||||
synth.connect(track.volumeNode);
|
||||
}
|
||||
|
||||
track.instrument = synth;
|
||||
track.player = null;
|
||||
track.type = 'plugin';
|
||||
|
||||
console.log(`[Audio] Plugin carregado: ${name}`);
|
||||
|
||||
} catch (e) {
|
||||
console.error("Erro ao carregar plugin:", name, e);
|
||||
}
|
||||
return track;
|
||||
}
|
||||
|
||||
// 3. Lógica para SAMPLERS (Arquivos de Áudio Reais)
|
||||
try {
|
||||
try { track.player?.dispose(); } catch {}
|
||||
track.player = null;
|
||||
try { track.buffer?.dispose?.(); } catch {}
|
||||
track.buffer = null;
|
||||
|
||||
if (track.instrument) {
|
||||
try { track.instrument.dispose(); } catch {}
|
||||
track.instrument = null;
|
||||
}
|
||||
|
||||
const player = new Tone.Player({ url: track.samplePath, autostart: false });
|
||||
await player.load(track.samplePath);
|
||||
|
||||
// Conecta o player ao volumeNode
|
||||
player.connect(track.volumeNode);
|
||||
|
||||
// Buffer separado (se você usar waveform em outro lugar)
|
||||
const buffer = new Tone.Buffer();
|
||||
await buffer.load(track.samplePath);
|
||||
|
||||
// Atribuições finais
|
||||
track.player = player;
|
||||
track.buffer = buffer;
|
||||
track.type = 'sampler'; // Garante o tipo correto
|
||||
|
||||
} catch (error) {
|
||||
console.error('Erro ao carregar sample:', track.samplePath);
|
||||
console.error(`Falha ao carregar áudio para a trilha "${track.name}":`, error);
|
||||
try { track.player?.dispose(); } catch {}
|
||||
try { track.buffer?.dispose?.(); } catch {}
|
||||
track.player = null;
|
||||
|
|
@ -85,6 +186,7 @@ export function addTrackToState() {
|
|||
id: Date.now() + Math.random(),
|
||||
name: "novo instrumento",
|
||||
samplePath: null,
|
||||
type: 'plugin', // Padrão
|
||||
player: null,
|
||||
buffer: null,
|
||||
patterns: referenceTrack
|
||||
|
|
@ -97,14 +199,14 @@ export function addTrackToState() {
|
|||
activePatternIndex: 0,
|
||||
volume: DEFAULT_VOLUME,
|
||||
pan: DEFAULT_PAN,
|
||||
// Opção B: controlar volume em dB
|
||||
volumeNode: new Tone.Volume(Tone.gainToDb(DEFAULT_VOLUME)),
|
||||
pannerNode: new Tone.Panner(DEFAULT_PAN),
|
||||
};
|
||||
|
||||
// Cadeia de áudio nova
|
||||
newTrack.volumeNode.connect(newTrack.pannerNode);
|
||||
newTrack.pannerNode.connect(getMainGainNode());
|
||||
|
||||
loadAudioForTrack(newTrack);
|
||||
|
||||
appState.pattern.tracks.push(newTrack);
|
||||
appState.pattern.activeTrackId = newTrack.id;
|
||||
|
|
@ -116,6 +218,7 @@ export function removeLastTrackFromState() {
|
|||
|
||||
try { trackToRemove.player?.dispose(); } catch {}
|
||||
try { trackToRemove.buffer?.dispose?.(); } catch {}
|
||||
try { trackToRemove.instrument?.dispose(); } catch {}
|
||||
try { trackToRemove.pannerNode?.disconnect(); } catch {}
|
||||
try { trackToRemove.volumeNode?.disconnect(); } catch {}
|
||||
|
||||
|
|
@ -131,8 +234,11 @@ export async function updateTrackSample(trackIndex, samplePath) {
|
|||
if (track) {
|
||||
track.samplePath = samplePath;
|
||||
track.name = samplePath.split("/").pop();
|
||||
|
||||
// Reseta o tipo baseado no novo arquivo
|
||||
const isAudio = /\.(wav|mp3|ogg|flac|m4a)$/i.test(samplePath);
|
||||
track.type = isAudio ? 'sampler' : 'plugin';
|
||||
|
||||
// (re)carrega e reconecta corretamente o player nesta trilha
|
||||
await loadAudioForTrack(track);
|
||||
}
|
||||
}
|
||||
|
|
@ -145,4 +251,4 @@ export function toggleStepState(trackIndex, stepIndex) {
|
|||
activePattern.steps[stepIndex] = !activePattern.steps[stepIndex];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
// js/pattern_ui.js
|
||||
import { appState } from "../state.js";
|
||||
import {
|
||||
updateTrackSample
|
||||
updateTrackSample
|
||||
} from "./pattern_state.js";
|
||||
import { playSample, stopPlayback } from "./pattern_audio.js";
|
||||
import { getTotalSteps } from "../utils.js";
|
||||
|
|
@ -10,199 +10,292 @@ import { initializeAudioContext } from '../audio.js';
|
|||
|
||||
// Função principal de renderização para o editor de patterns
|
||||
export function renderPatternEditor() {
|
||||
const trackContainer = document.getElementById("track-container");
|
||||
trackContainer.innerHTML = "";
|
||||
const trackContainer = document.getElementById("track-container");
|
||||
trackContainer.innerHTML = "";
|
||||
|
||||
// (V7) Adicionado 'trackIndex'
|
||||
appState.pattern.tracks.forEach((trackData, trackIndex) => {
|
||||
const trackLane = document.createElement("div");
|
||||
trackLane.className = "track-lane";
|
||||
trackLane.dataset.trackIndex = trackIndex; // (V7) Usando índice
|
||||
appState.pattern.tracks.forEach((trackData, trackIndex) => {
|
||||
const trackLane = document.createElement("div");
|
||||
trackLane.className = "track-lane";
|
||||
trackLane.dataset.trackIndex = trackIndex;
|
||||
|
||||
if (trackData.id === appState.pattern.activeTrackId) {
|
||||
trackLane.classList.add('active-track');
|
||||
}
|
||||
if (trackData.id === appState.pattern.activeTrackId) {
|
||||
trackLane.classList.add('active-track');
|
||||
}
|
||||
|
||||
trackLane.innerHTML = `
|
||||
<div class="track-info">
|
||||
<i class="fa-solid fa-gear"></i>
|
||||
<div class="track-mute"></div>
|
||||
<span class="track-name">${trackData.name}</span>
|
||||
</div>
|
||||
<div class="track-controls">
|
||||
<div class="knob-container">
|
||||
<div class="knob" data-control="volume" data-track-id="${trackData.id}"><div class="knob-indicator"></div></div>
|
||||
<span>VOL</span>
|
||||
</div>
|
||||
<div class="knob-container">
|
||||
<div class="knob" data-control="pan" data-track-id="${trackData.id}"><div class="knob-indicator"></div></div>
|
||||
<span>PAN</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="step-sequencer-wrapper"></div>
|
||||
`;
|
||||
trackLane.innerHTML = `
|
||||
<div class="track-info">
|
||||
<i class="fa-solid fa-gear"></i>
|
||||
<div class="track-mute"></div>
|
||||
<span class="track-name">${trackData.name}</span>
|
||||
</div>
|
||||
<div class="track-controls">
|
||||
<div class="knob-container">
|
||||
<div class="knob" data-control="volume" data-track-id="${trackData.id}"><div class="knob-indicator"></div></div>
|
||||
<span>VOL</span>
|
||||
</div>
|
||||
<div class="knob-container">
|
||||
<div class="knob" data-control="pan" data-track-id="${trackData.id}"><div class="knob-indicator"></div></div>
|
||||
<span>PAN</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="step-sequencer-wrapper"></div>
|
||||
`;
|
||||
|
||||
// (Listener de clique da track é local, sem mudanças)
|
||||
trackLane.addEventListener('click', () => {
|
||||
if (appState.pattern.activeTrackId === trackData.id) return;
|
||||
stopPlayback();
|
||||
appState.pattern.activeTrackId = trackData.id;
|
||||
document.querySelectorAll('.track-lane').forEach(lane => lane.classList.remove('active-track'));
|
||||
trackLane.classList.add('active-track');
|
||||
updateGlobalPatternSelector();
|
||||
redrawSequencer();
|
||||
});
|
||||
trackLane.addEventListener('click', () => {
|
||||
if (appState.pattern.activeTrackId === trackData.id) return;
|
||||
stopPlayback();
|
||||
appState.pattern.activeTrackId = trackData.id;
|
||||
document.querySelectorAll('.track-lane').forEach(lane => lane.classList.remove('active-track'));
|
||||
trackLane.classList.add('active-track');
|
||||
updateGlobalPatternSelector();
|
||||
redrawSequencer();
|
||||
});
|
||||
|
||||
trackLane.addEventListener("dragover", (e) => { e.preventDefault(); trackLane.classList.add("drag-over"); });
|
||||
trackLane.addEventListener("dragleave", () => trackLane.classList.remove("drag-over"));
|
||||
trackLane.addEventListener("dragover", (e) => { e.preventDefault(); trackLane.classList.add("drag-over"); });
|
||||
trackLane.addEventListener("dragleave", () => trackLane.classList.remove("drag-over"));
|
||||
|
||||
// (V9) Listener de "drop" (arrastar) agora usa 'sendAction'
|
||||
trackLane.addEventListener("drop", (e) => {
|
||||
e.preventDefault();
|
||||
trackLane.classList.remove("drag-over");
|
||||
const filePath = e.dataTransfer.getData("text/plain");
|
||||
|
||||
if (filePath) {
|
||||
trackLane.addEventListener("drop", (e) => {
|
||||
e.preventDefault();
|
||||
trackLane.classList.remove("drag-over");
|
||||
const filePath = e.dataTransfer.getData("text/plain");
|
||||
|
||||
if (filePath) {
|
||||
sendAction({
|
||||
type: 'SET_TRACK_SAMPLE',
|
||||
trackIndex: trackIndex,
|
||||
filePath: filePath
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
trackContainer.appendChild(trackLane);
|
||||
});
|
||||
|
||||
updateGlobalPatternSelector();
|
||||
redrawSequencer();
|
||||
trackContainer.appendChild(trackLane);
|
||||
});
|
||||
|
||||
updateGlobalPatternSelector();
|
||||
redrawSequencer();
|
||||
}
|
||||
|
||||
export function redrawSequencer() {
|
||||
const totalGridSteps = getTotalSteps();
|
||||
document.querySelectorAll(".step-sequencer-wrapper").forEach((wrapper) => {
|
||||
let sequencerContainer = wrapper.querySelector(".step-sequencer");
|
||||
if (!sequencerContainer) {
|
||||
sequencerContainer = document.createElement("div");
|
||||
sequencerContainer.className = "step-sequencer";
|
||||
wrapper.appendChild(sequencerContainer);
|
||||
}
|
||||
|
||||
const parentTrackElement = wrapper.closest(".track-lane");
|
||||
const trackIndex = parseInt(parentTrackElement.dataset.trackIndex, 10); // (V7)
|
||||
// ... dentro da função redrawSequencer() ...
|
||||
const totalGridSteps = getTotalSteps();
|
||||
|
||||
document.querySelectorAll(".step-sequencer-wrapper").forEach((wrapper) => {
|
||||
let sequencerContainer = wrapper.querySelector(".step-sequencer");
|
||||
|
||||
if (!sequencerContainer) {
|
||||
sequencerContainer = document.createElement("div");
|
||||
sequencerContainer.className = "step-sequencer";
|
||||
wrapper.appendChild(sequencerContainer);
|
||||
} else {
|
||||
sequencerContainer.innerHTML = "";
|
||||
}
|
||||
|
||||
const parentTrackElement = wrapper.closest(".track-lane");
|
||||
const trackIndex = parseInt(parentTrackElement.dataset.trackIndex, 10);
|
||||
const trackData = appState.pattern.tracks[trackIndex];
|
||||
|
||||
const trackData = appState.pattern.tracks[trackIndex];
|
||||
|
||||
if (!trackData || !trackData.patterns || trackData.patterns.length === 0) {
|
||||
sequencerContainer.innerHTML = ""; return;
|
||||
}
|
||||
if (!trackData || !trackData.patterns || trackData.patterns.length === 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
const activePatternIndex = trackData.activePatternIndex;
|
||||
const activePattern = trackData.patterns[activePatternIndex];
|
||||
const activePattern = trackData.patterns[activePatternIndex];
|
||||
|
||||
if (!activePattern) {
|
||||
sequencerContainer.innerHTML = ""; return;
|
||||
}
|
||||
|
||||
const patternSteps = activePattern.steps;
|
||||
|
||||
// --- INÍCIO DA CORREÇÃO ---
|
||||
// Precisamos verificar se 'patternSteps' é um array real.
|
||||
// Se for 'null' ou 'undefined' (um bug de dados do .mmp),
|
||||
// o loop 'for' abaixo quebraria ANTES de limpar a UI.
|
||||
if (!patternSteps || !Array.isArray(patternSteps)) {
|
||||
// Limpa a UI (remove os steps antigos)
|
||||
sequencerContainer.innerHTML = "";
|
||||
// E para a execução desta track, deixando o sequenciador vazio.
|
||||
return;
|
||||
if (!activePattern) {
|
||||
return;
|
||||
}
|
||||
// --- FIM DA CORREÇÃO ---
|
||||
|
||||
sequencerContainer.innerHTML = ""; // Agora é seguro limpar a UI
|
||||
for (let i = 0; i < totalGridSteps; i++) {
|
||||
const stepWrapper = document.createElement("div");
|
||||
stepWrapper.className = "step-wrapper";
|
||||
const stepElement = document.createElement("div");
|
||||
stepElement.className = "step";
|
||||
|
||||
if (patternSteps[i] === true) {
|
||||
stepElement.classList.add("active");
|
||||
}
|
||||
// ============================================================
|
||||
// LÓGICA DE DECISÃO V2: STEPS OU PIANO ROLL?
|
||||
// ============================================================
|
||||
|
||||
const notes = activePattern.notes || [];
|
||||
const hasNotes = notes.length > 0;
|
||||
let renderMode = 'steps';
|
||||
|
||||
stepElement.addEventListener("click", () => {
|
||||
initializeAudioContext(); // (V8)
|
||||
if (hasNotes) {
|
||||
const firstKey = notes[0].key;
|
||||
const isMelodic = notes.some(n => n.key !== firstKey);
|
||||
const hasLongNotes = notes.some(n => n.len > 48);
|
||||
|
||||
// Sobreposição de notas (Acordes)
|
||||
const sortedNotes = [...notes].sort((a, b) => a.pos - b.pos);
|
||||
let hasOverlap = false;
|
||||
for (let i = 0; i < sortedNotes.length - 1; i++) {
|
||||
if (sortedNotes[i].pos + sortedNotes[i].len > sortedNotes[i+1].pos) {
|
||||
hasOverlap = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
const currentState = activePattern.steps[i] || false;
|
||||
const isActive = !currentState;
|
||||
if (isMelodic || hasLongNotes || hasOverlap) {
|
||||
renderMode = 'piano_roll';
|
||||
} else {
|
||||
renderMode = 'steps';
|
||||
}
|
||||
}
|
||||
|
||||
sendAction({ // (V7)
|
||||
type: 'TOGGLE_NOTE',
|
||||
trackIndex: trackIndex,
|
||||
patternIndex: activePatternIndex,
|
||||
stepIndex: i,
|
||||
isActive: isActive
|
||||
// ============================================================
|
||||
// RENDERIZAÇÃO
|
||||
// ============================================================
|
||||
|
||||
if (renderMode === 'piano_roll') {
|
||||
// --- MODO PIANO ROLL ---
|
||||
sequencerContainer.classList.add('mode-piano');
|
||||
|
||||
const miniView = document.createElement('div');
|
||||
miniView.className = 'track-mini-piano-roll';
|
||||
miniView.title = "Clique duplo para abrir o Piano Roll";
|
||||
|
||||
miniView.addEventListener('dblclick', (e) => {
|
||||
e.stopPropagation();
|
||||
if (window.openPianoRoll) {
|
||||
window.openPianoRoll(trackData.id);
|
||||
}
|
||||
});
|
||||
|
||||
if (isActive && trackData && trackData.samplePath) {
|
||||
playSample(trackData.samplePath, trackData.id);
|
||||
}
|
||||
});
|
||||
activePattern.notes.forEach(note => {
|
||||
const noteEl = document.createElement('div');
|
||||
noteEl.className = 'mini-note';
|
||||
|
||||
const barsInput = document.getElementById('bars-input');
|
||||
const barsCount = barsInput ? parseInt(barsInput.value) || 1 : 1;
|
||||
const totalTicks = 192 * barsCount;
|
||||
|
||||
const leftPercent = (note.pos / totalTicks) * 100;
|
||||
const widthPercent = (note.len / totalTicks) * 100;
|
||||
|
||||
const keyRange = 48;
|
||||
const baseKey = 36;
|
||||
let relativeKey = note.key - baseKey;
|
||||
|
||||
if(relativeKey < 0) relativeKey = 0;
|
||||
if(relativeKey > keyRange) relativeKey = keyRange;
|
||||
|
||||
const topPercent = 100 - ((relativeKey / keyRange) * 100);
|
||||
|
||||
const beatsPerBar = parseInt(document.getElementById("compasso-a-input").value, 10) || 4;
|
||||
const groupIndex = Math.floor(i / beatsPerBar);
|
||||
if (groupIndex % 2 === 0) {
|
||||
stepElement.classList.add("step-dark");
|
||||
}
|
||||
noteEl.style.left = `${leftPercent}%`;
|
||||
noteEl.style.width = `${widthPercent}%`;
|
||||
noteEl.style.top = `${topPercent}%`;
|
||||
|
||||
miniView.appendChild(noteEl);
|
||||
});
|
||||
|
||||
const stepsPerBar = 16;
|
||||
if (i > 0 && i % stepsPerBar === 0) {
|
||||
const marker = document.createElement("div");
|
||||
marker.className = "step-marker";
|
||||
marker.textContent = Math.floor(i / stepsPerBar) + 1;
|
||||
stepWrapper.appendChild(marker);
|
||||
}
|
||||
|
||||
stepWrapper.appendChild(stepElement);
|
||||
sequencerContainer.appendChild(stepWrapper);
|
||||
}
|
||||
});
|
||||
sequencerContainer.appendChild(miniView);
|
||||
|
||||
} else {
|
||||
// --- MODO STEP SEQUENCER ---
|
||||
sequencerContainer.classList.remove('mode-piano');
|
||||
|
||||
const patternSteps = activePattern.steps;
|
||||
if (!patternSteps || !Array.isArray(patternSteps)) return;
|
||||
|
||||
for (let i = 0; i < totalGridSteps; i++) {
|
||||
const stepWrapper = document.createElement("div");
|
||||
stepWrapper.className = "step-wrapper";
|
||||
|
||||
const stepElement = document.createElement("div");
|
||||
stepElement.className = "step";
|
||||
|
||||
if (patternSteps[i] === true) {
|
||||
stepElement.classList.add("active");
|
||||
}
|
||||
|
||||
// --- EVENTO DE CLIQUE (CORRIGIDO PARA PLUGINS) ---
|
||||
stepElement.addEventListener("click", (e) => {
|
||||
e.stopPropagation();
|
||||
initializeAudioContext();
|
||||
|
||||
const currentState = activePattern.steps[i] || false;
|
||||
const isActive = !currentState;
|
||||
|
||||
sendAction({
|
||||
type: 'TOGGLE_NOTE',
|
||||
trackIndex: trackIndex,
|
||||
patternIndex: activePatternIndex,
|
||||
stepIndex: i,
|
||||
isActive: isActive
|
||||
});
|
||||
|
||||
// --- AQUI ESTAVA O PROBLEMA: TOCA O SOM ---
|
||||
if (isActive) {
|
||||
// Caso 1: Sampler (Áudio)
|
||||
if (trackData.type === 'sampler' && trackData.samplePath) {
|
||||
playSample(trackData.samplePath, trackData.id);
|
||||
}
|
||||
// Caso 2: Plugin (Sintetizador)
|
||||
else if (trackData.type === 'plugin' && trackData.instrument) {
|
||||
// Toca um C5 (Dó) curto para feedback visual/sonoro
|
||||
try {
|
||||
// triggerAttackRelease(nota, duração)
|
||||
trackData.instrument.triggerAttackRelease("C5", "16n");
|
||||
} catch(err) {
|
||||
console.warn("Erro ao tocar preview do synth:", err);
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
const beatsPerBar = parseInt(document.getElementById("compasso-a-input").value, 10) || 4;
|
||||
const groupIndex = Math.floor(i / beatsPerBar);
|
||||
if (groupIndex % 2 === 0) {
|
||||
stepElement.classList.add("step-dark");
|
||||
}
|
||||
|
||||
const stepsPerBar = 16;
|
||||
if (i > 0 && i % stepsPerBar === 0) {
|
||||
const marker = document.createElement("div");
|
||||
marker.className = "step-marker";
|
||||
marker.textContent = Math.floor(i / stepsPerBar) + 1;
|
||||
stepWrapper.appendChild(marker);
|
||||
}
|
||||
|
||||
stepWrapper.appendChild(stepElement);
|
||||
sequencerContainer.appendChild(stepWrapper);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export function highlightStep(stepIndex, isActive) {
|
||||
if (stepIndex < 0) return;
|
||||
document.querySelectorAll(".track-lane").forEach((track) => {
|
||||
const stepWrapper = track.querySelector(
|
||||
`.step-sequencer .step-wrapper:nth-child(${stepIndex + 1})`
|
||||
);
|
||||
if (stepWrapper) {
|
||||
const stepElement = stepWrapper.querySelector(".step");
|
||||
if (stepElement) {
|
||||
stepElement.classList.toggle("playing", isActive);
|
||||
}
|
||||
}
|
||||
});
|
||||
if (stepIndex < 0) return;
|
||||
document.querySelectorAll(".track-lane").forEach((track) => {
|
||||
const stepWrapper = track.querySelector(
|
||||
`.step-sequencer .step-wrapper:nth-child(${stepIndex + 1})`
|
||||
);
|
||||
if (stepWrapper) {
|
||||
const stepElement = stepWrapper.querySelector(".step");
|
||||
if (stepElement) {
|
||||
stepElement.classList.toggle("playing", isActive);
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export function updateStepUI(trackIndex, patternIndex, stepIndex, isActive) {
|
||||
// --- INÍCIO DA CORREÇÃO ---
|
||||
// A lógica antiga (if (patternIndex !== appState.pattern.activePatternIndex))
|
||||
// estava errada, pois usava uma variável global.
|
||||
|
||||
const trackElement = document.querySelector(`.track-lane[data-track-index="${trackIndex}"]`);
|
||||
if (!trackElement) return;
|
||||
|
||||
const trackData = appState.pattern.tracks[trackIndex];
|
||||
if (!trackData) return;
|
||||
|
||||
// A UI só deve ser atualizada cirurgicamente se o pattern clicado
|
||||
// for o MESMO pattern que está VISÍVEL no sequenciador dessa trilha.
|
||||
if (patternIndex !== trackData.activePatternIndex) {
|
||||
// O estado mudou, mas não é o pattern que estamos vendo,
|
||||
// então não faz nada na UI (mas o estado no appState está correto).
|
||||
return;
|
||||
const activePattern = trackData.patterns[patternIndex];
|
||||
|
||||
const notes = activePattern.notes || [];
|
||||
const hasNotes = notes.length > 0;
|
||||
let isComplex = false;
|
||||
|
||||
if (hasNotes) {
|
||||
const isMelodic = notes.some(n => n.key !== notes[0].key);
|
||||
const hasLongNotes = notes.some(n => n.len > 48);
|
||||
if (isMelodic || hasLongNotes) isComplex = true;
|
||||
}
|
||||
// --- FIM DA CORREÇÃO ---
|
||||
|
||||
if (isComplex) {
|
||||
redrawSequencer();
|
||||
return;
|
||||
}
|
||||
|
||||
if (patternIndex !== trackData.activePatternIndex) return;
|
||||
|
||||
const stepWrapper = trackElement.querySelector(
|
||||
`.step-sequencer .step-wrapper:nth-child(${stepIndex + 1})`
|
||||
|
|
@ -217,38 +310,27 @@ export function updateGlobalPatternSelector() {
|
|||
const globalPatternSelector = document.getElementById('global-pattern-selector');
|
||||
if (!globalPatternSelector) return;
|
||||
|
||||
// 1. Encontra a track que está ATIVA no momento
|
||||
const activeTrackId = appState.pattern.activeTrackId;
|
||||
const activeTrack = appState.pattern.tracks.find(t => t.id === activeTrackId);
|
||||
|
||||
// 2. Usa a track[0] como referência para os NOMES dos patterns
|
||||
const referenceTrack = appState.pattern.tracks[0];
|
||||
|
||||
globalPatternSelector.innerHTML = ''; // Limpa as <options> anteriores
|
||||
globalPatternSelector.innerHTML = '';
|
||||
|
||||
if (referenceTrack && referenceTrack.patterns.length > 0) {
|
||||
|
||||
// 3. Popula a lista de <option>
|
||||
referenceTrack.patterns.forEach((pattern, index) => {
|
||||
const option = document.createElement('option');
|
||||
option.value = index;
|
||||
option.textContent = pattern.name; // ex: "Pattern 1"
|
||||
option.textContent = pattern.name;
|
||||
globalPatternSelector.appendChild(option);
|
||||
});
|
||||
|
||||
// 4. CORREÇÃO PRINCIPAL: Define o item selecionado no <select>
|
||||
if (activeTrack) {
|
||||
// O valor do seletor (ex: "2") deve ser igual ao índice
|
||||
// do pattern ativo da track selecionada.
|
||||
globalPatternSelector.value = activeTrack.activePatternIndex || 0;
|
||||
} else {
|
||||
globalPatternSelector.value = 0; // Padrão
|
||||
globalPatternSelector.value = 0;
|
||||
}
|
||||
|
||||
globalPatternSelector.disabled = false;
|
||||
|
||||
} else {
|
||||
// 5. Estado desabilitado (nenhum pattern)
|
||||
const option = document.createElement('option');
|
||||
option.textContent = 'Sem patterns';
|
||||
globalPatternSelector.appendChild(option);
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1,19 +0,0 @@
|
|||
{"level":30,"time":1761494713194,"pid":397981,"hostname":"ubuntu","timestamp":1761494713193,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494716581,"pid":397981,"hostname":"ubuntu","timestamp":1761494716581,"socketId":"eqWd8471vGWpq4EhAAAD","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"eqWd8471vGWpq4EhAAAD","__senderName":"Alicer-eqWd"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494720728,"pid":397981,"hostname":"ubuntu","timestamp":1761494720728,"socketId":"eqWd8471vGWpq4EhAAAD","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761494647801,"startTimeInSeconds":0.5,"clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","name":"909beat01.ogg","__token":"2","__senderId":"eqWd8471vGWpq4EhAAAD","__senderName":"Alicer-eqWd"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494723662,"pid":397981,"hostname":"ubuntu","timestamp":1761494723662,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","props":{"trackId":1761494647801,"startTimeInSeconds":0.5},"__token":"2","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494724758,"pid":397981,"hostname":"ubuntu","timestamp":1761494724758,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","props":{"trackId":1761494647801,"startTimeInSeconds":0.8333333333333333},"__token":"3","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494725710,"pid":397981,"hostname":"ubuntu","timestamp":1761494725710,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","props":{"trackId":1761494647801,"startTimeInSeconds":0},"__token":"4","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494726870,"pid":397981,"hostname":"ubuntu","timestamp":1761494726870,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761494658269_ugophvk","__token":"5","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494727941,"pid":397981,"hostname":"ubuntu","timestamp":1761494727941,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"58fe84a6-7e84-4d89-8971-6777376fbdbd","props":{"trackId":null,"startTimeInSeconds":0},"__token":"6","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494731845,"pid":397981,"hostname":"ubuntu","timestamp":1761494731845,"socketId":"eqWd8471vGWpq4EhAAAD","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761494663244_d02eymw","__token":"3","__senderId":"eqWd8471vGWpq4EhAAAD","__senderName":"Alicer-eqWd"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494734034,"pid":397981,"hostname":"ubuntu","timestamp":1761494734034,"socketId":"WylZeyDwyf5qWGzsAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"WylZeyDwyf5qWGzsAAAH","__senderName":"Alicer-WylZ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494734064,"pid":397981,"hostname":"ubuntu","timestamp":1761494734064,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761494644211,"name":"Pista de Áudio 1"},{"id":1761494647801,"name":"Pista de Áudio 2"},{"id":"track_1761494658269_ugophvk","name":"Pista de Áudio 3"},{"id":"track_1761494663244_d02eymw","name":"Pista de Áudio 4"}],"clips":[{"id":"58fe84a6-7e84-4d89-8971-6777376fbdbd","trackId":null,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"WylZeyDwyf5qWGzsAAAH","__token":"7","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494738526,"pid":397981,"hostname":"ubuntu","timestamp":1761494738526,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":"track_1761494663244_d02eymw","startTimeInSeconds":1.1666666666666665,"clipId":"01514ea7-ede5-4df8-81f5-01a469e1be1c","name":"909beat01.ogg","__token":"8","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494739782,"pid":397981,"hostname":"ubuntu","timestamp":1761494739782,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"01514ea7-ede5-4df8-81f5-01a469e1be1c","props":{"trackId":null,"startTimeInSeconds":1.3333333333333333},"__token":"9","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494746981,"pid":397981,"hostname":"ubuntu","timestamp":1761494746981,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break02.ogg","trackId":1761494644211,"startTimeInSeconds":0.5,"clipId":"34487014-50f7-40c1-9c8d-30381e1ea54b","name":"break02.ogg","__token":"10","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494772093,"pid":397981,"hostname":"ubuntu","timestamp":1761494772093,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"RESET_PROJECT","__token":"11","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494778316,"pid":397981,"hostname":"ubuntu","timestamp":1761494778316,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761494703529,"startTimeInSeconds":0.6428571428571428,"clipId":"e40762ee-3672-42f1-bf83-2efaae656777","name":"909beat01.ogg","__token":"12","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494828931,"pid":397981,"hostname":"ubuntu","timestamp":1761494828931,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761494760329_r251hkm","__token":"13","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494862258,"pid":397981,"hostname":"ubuntu","timestamp":1761494862258,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break02.ogg","trackId":"track_1761494760329_r251hkm","startTimeInSeconds":0.42857142857142855,"clipId":"db4ef81a-6ee8-4cbb-8448-d2b5d0a50c7b","name":"break02.ogg","__token":"14","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761494882822,"pid":397981,"hostname":"ubuntu","timestamp":1761494882822,"socketId":"glYn9moukDNglOYzAAAB","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db4ef81a-6ee8-4cbb-8448-d2b5d0a50c7b","props":{"trackId":null,"startTimeInSeconds":0.75},"__token":"15","__senderId":"glYn9moukDNglOYzAAAB","__senderName":"Alicer-glYn"},"msg":"action_received"}
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
{"level":30,"time":1761495184353,"pid":405734,"hostname":"ubuntu","timestamp":1761495184352,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495184355,"pid":405734,"hostname":"ubuntu","timestamp":1761495184355,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495189423,"pid":405734,"hostname":"ubuntu","timestamp":1761495189423,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761495115257,"startTimeInSeconds":0.5,"clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","name":"909beat01.ogg","__token":"2","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495194611,"pid":405734,"hostname":"ubuntu","timestamp":1761495194611,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":1761495115257,"startTimeInSeconds":0.6666666666666666},"__token":"2","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495195395,"pid":405734,"hostname":"ubuntu","timestamp":1761495195395,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":1761495115257,"startTimeInSeconds":1.1666666666666665},"__token":"3","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495196228,"pid":405734,"hostname":"ubuntu","timestamp":1761495196228,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":1761495115257,"startTimeInSeconds":0.5},"__token":"4","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495197123,"pid":405734,"hostname":"ubuntu","timestamp":1761495197123,"socketId":"X7wjT0no2GaOXnrOAAAJ","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":1761495115257,"startTimeInSeconds":0},"__token":"5","__senderId":"X7wjT0no2GaOXnrOAAAJ","__senderName":"Alicer-X7wj"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495199271,"pid":405734,"hostname":"ubuntu","timestamp":1761495199271,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495199301,"pid":405734,"hostname":"ubuntu","timestamp":1761495199300,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495115257,"name":"Pista de Áudio 1"}],"clips":[{"id":"8d588036-4474-4eb7-9ea7-d88868478e55","trackId":1761495115257,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"lK34mYsi4Gi-TRMRAAAL","__token":"3","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495201020,"pid":405734,"hostname":"ubuntu","timestamp":1761495201019,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495132411_l2gfjmb","__token":"2","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495201780,"pid":405734,"hostname":"ubuntu","timestamp":1761495201780,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495133171_43fvi70","__token":"3","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495202243,"pid":405734,"hostname":"ubuntu","timestamp":1761495202243,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495133635_esr6ipi","__token":"4","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495204986,"pid":405734,"hostname":"ubuntu","timestamp":1761495204986,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break02.ogg","trackId":"track_1761495132411_l2gfjmb","startTimeInSeconds":2,"clipId":"56919b45-085b-4319-a5a7-41220b330bb7","name":"break02.ogg","__token":"4","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495207108,"pid":405734,"hostname":"ubuntu","timestamp":1761495207108,"socketId":"lK34mYsi4Gi-TRMRAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"56919b45-085b-4319-a5a7-41220b330bb7","props":{"trackId":null,"startTimeInSeconds":2},"__token":"5","__senderId":"lK34mYsi4Gi-TRMRAAAL","__senderName":"Alicer-lK34"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495211109,"pid":405734,"hostname":"ubuntu","timestamp":1761495211109,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"8d588036-4474-4eb7-9ea7-d88868478e55","props":{"trackId":null,"startTimeInSeconds":0},"__token":"5","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495255286,"pid":405734,"hostname":"ubuntu","timestamp":1761495255286,"socketId":"dAZBororltnCTZH6AAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"dAZBororltnCTZH6AAAN","__senderName":"Alicer-dAZB"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495255313,"pid":405734,"hostname":"ubuntu","timestamp":1761495255313,"socketId":"L8ieb6DooE0sJ_I0AAAH","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495115257,"name":"Pista de Áudio 1"},{"id":"track_1761495132411_l2gfjmb","name":"Pista de Áudio 2"},{"id":"track_1761495133171_43fvi70","name":"Pista de Áudio 3"},{"id":"track_1761495133635_esr6ipi","name":"Pista de Áudio 4"}],"clips":[{"id":"8d588036-4474-4eb7-9ea7-d88868478e55","trackId":null,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"56919b45-085b-4319-a5a7-41220b330bb7","trackId":null,"name":"break02.ogg","sourcePath":"src/samples/beats/break02.ogg","startTimeInSeconds":2,"durationInSeconds":1.7196875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.7196875}]},"__target":"dAZBororltnCTZH6AAAN","__token":"6","__senderId":"L8ieb6DooE0sJ_I0AAAH","__senderName":"Alicer-L8ie"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495256511,"pid":405734,"hostname":"ubuntu","timestamp":1761495256511,"socketId":"FhwxWB_h7JF_2NnyAAAP","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"FhwxWB_h7JF_2NnyAAAP","__senderName":"Alicer-Fhwx"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495257946,"pid":405734,"hostname":"ubuntu","timestamp":1761495257946,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495259967,"pid":405734,"hostname":"ubuntu","timestamp":1761495259967,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA","scheduleAtServerMs":1761495260147},"msg":"action_received"}
|
||||
{"level":30,"time":1761495261455,"pid":405734,"hostname":"ubuntu","timestamp":1761495261455,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA","scheduleAtServerMs":1761495261635},"msg":"action_received"}
|
||||
{"level":30,"time":1761495261911,"pid":405734,"hostname":"ubuntu","timestamp":1761495261911,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA","scheduleAtServerMs":1761495262092},"msg":"action_received"}
|
||||
{"level":30,"time":1761495264934,"pid":405734,"hostname":"ubuntu","timestamp":1761495264934,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761495188853,"startTimeInSeconds":1,"clipId":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","name":"909beat01.ogg","__token":"5","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495266783,"pid":405734,"hostname":"ubuntu","timestamp":1761495266783,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","props":{"trackId":1761495188853,"startTimeInSeconds":0.5},"__token":"6","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495268687,"pid":405734,"hostname":"ubuntu","timestamp":1761495268687,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495200078_tutmj39","__token":"7","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495272943,"pid":405734,"hostname":"ubuntu","timestamp":1761495272943,"socketId":"NTyAxcbcEfhgmiV0AAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","props":{"trackId":null,"startTimeInSeconds":0.16666666666666666},"__token":"8","__senderId":"NTyAxcbcEfhgmiV0AAAR","__senderName":"Alicer-NTyA"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495275929,"pid":405734,"hostname":"ubuntu","timestamp":1761495275929,"socketId":"zHeHgO5QafwQUSezAAAT","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"zHeHgO5QafwQUSezAAAT","__senderName":"Alicer-zHeH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495275955,"pid":405734,"hostname":"ubuntu","timestamp":1761495275955,"socketId":"FhwxWB_h7JF_2NnyAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495187729,"name":"Pista de Áudio 1"},{"id":1761495188853,"name":"Pista de Áudio 2"},{"id":"track_1761495200078_tutmj39","name":"Pista de Áudio 3"}],"clips":[{"id":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","trackId":null,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0.16666666666666666,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"zHeHgO5QafwQUSezAAAT","__token":"2","__senderId":"FhwxWB_h7JF_2NnyAAAP","__senderName":"Alicer-Fhwx"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495277165,"pid":405734,"hostname":"ubuntu","timestamp":1761495277165,"socketId":"apzyjtNaVSLqx1c5AAAV","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"apzyjtNaVSLqx1c5AAAV","__senderName":"Alicer-apzy"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495277191,"pid":405734,"hostname":"ubuntu","timestamp":1761495277191,"socketId":"zHeHgO5QafwQUSezAAAT","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495187729,"name":"Pista de Áudio 1"},{"id":1761495188853,"name":"Pista de Áudio 2"},{"id":"track_1761495200078_tutmj39","name":"Pista de Áudio 3"}],"clips":[{"id":"bce38cc5-2b78-419b-8a57-39f97f76bb5b","trackId":null,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0.16666666666666666,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"apzyjtNaVSLqx1c5AAAV","__token":"2","__senderId":"zHeHgO5QafwQUSezAAAT","__senderName":"Alicer-zHeH"},"msg":"action_received"}
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
{"level":30,"time":1761495735960,"pid":414826,"hostname":"ubuntu","timestamp":1761495735959,"socketId":"TaR_oJC64n80Y4XKAAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"TaR_oJC64n80Y4XKAAAF","__senderName":"Alicer-TaR_"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495737661,"pid":414826,"hostname":"ubuntu","timestamp":1761495737661,"socketId":"4Y6oMegF2booRWEBAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"4Y6oMegF2booRWEBAAAH","__senderName":"Alicer-4Y6o"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495743687,"pid":414826,"hostname":"ubuntu","timestamp":1761495743687,"socketId":"4Y6oMegF2booRWEBAAAH","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761495668600,"startTimeInSeconds":1,"clipId":"5de971f3-ae8b-41b5-a68b-24008783844e","name":"909beat01.ogg","__token":"2","__senderId":"4Y6oMegF2booRWEBAAAH","__senderName":"Alicer-4Y6o"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495749057,"pid":414826,"hostname":"ubuntu","timestamp":1761495749057,"socketId":"4Y6oMegF2booRWEBAAAH","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761495680437_5b0cy18","__token":"3","__senderId":"4Y6oMegF2booRWEBAAAH","__senderName":"Alicer-4Y6o"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495753150,"pid":414826,"hostname":"ubuntu","timestamp":1761495753150,"socketId":"WPsyHtdNVcdj4ylgAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"WPsyHtdNVcdj4ylgAAAJ","__senderName":"Alicer-WPsy"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495753178,"pid":414826,"hostname":"ubuntu","timestamp":1761495753178,"socketId":"4Y6oMegF2booRWEBAAAH","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761495668600,"name":"Pista de Áudio 1"},{"id":"track_1761495680437_5b0cy18","name":"Pista de Áudio 2"}],"clips":[{"id":"5de971f3-ae8b-41b5-a68b-24008783844e","trackId":1761495668600,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":1.6666666666666665,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"WPsyHtdNVcdj4ylgAAAJ","__token":"4","__senderId":"4Y6oMegF2booRWEBAAAH","__senderName":"Alicer-4Y6o"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495870014,"pid":414826,"hostname":"ubuntu","timestamp":1761495870014,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495871385,"pid":414826,"hostname":"ubuntu","timestamp":1761495871385,"socketId":"oxKq3DUSMoXvjQttAAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"oxKq3DUSMoXvjQttAAAN","__senderName":"Alicer-oxKq"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495874919,"pid":414826,"hostname":"ubuntu","timestamp":1761495874919,"socketId":"oxKq3DUSMoXvjQttAAAN","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"oxKq3DUSMoXvjQttAAAN","__senderName":"Alicer-oxKq","scheduleAtServerMs":1761495875088},"msg":"action_received"}
|
||||
{"level":30,"time":1761495878530,"pid":414826,"hostname":"ubuntu","timestamp":1761495878530,"socketId":"oxKq3DUSMoXvjQttAAAN","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"oxKq3DUSMoXvjQttAAAN","__senderName":"Alicer-oxKq","scheduleAtServerMs":1761495878699},"msg":"action_received"}
|
||||
{"level":30,"time":1761495879060,"pid":414826,"hostname":"ubuntu","timestamp":1761495879060,"socketId":"oxKq3DUSMoXvjQttAAAN","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"oxKq3DUSMoXvjQttAAAN","__senderName":"Alicer-oxKq","scheduleAtServerMs":1761495879232},"msg":"action_received"}
|
||||
{"level":30,"time":1761495885949,"pid":414826,"hostname":"ubuntu","timestamp":1761495885949,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh","scheduleAtServerMs":1761495886136},"msg":"action_received"}
|
||||
{"level":30,"time":1761495887837,"pid":414826,"hostname":"ubuntu","timestamp":1761495887837,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh","scheduleAtServerMs":1761495888022},"msg":"action_received"}
|
||||
{"level":30,"time":1761495890823,"pid":414826,"hostname":"ubuntu","timestamp":1761495890823,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh"},"msg":"action_received"}
|
||||
{"level":30,"time":1761495891399,"pid":414826,"hostname":"ubuntu","timestamp":1761495891399,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761495891565},"msg":"action_received"}
|
||||
{"level":30,"time":1761495894195,"pid":414826,"hostname":"ubuntu","timestamp":1761495894195,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761495894361},"msg":"action_received"}
|
||||
{"level":30,"time":1761495901287,"pid":414826,"hostname":"ubuntu","timestamp":1761495901287,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"START_AUDIO_PLAYBACK","__token":"4","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761495901473},"msg":"action_received"}
|
||||
{"level":30,"time":1761495915926,"pid":414826,"hostname":"ubuntu","timestamp":1761495915926,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh","scheduleAtServerMs":1761495916112},"msg":"action_received"}
|
||||
{"level":30,"time":1761496198551,"pid":414826,"hostname":"ubuntu","timestamp":1761496198551,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"TOGGLE_PLAYBACK","__token":"5","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761496198735},"msg":"action_received"}
|
||||
{"level":30,"time":1761496200399,"pid":414826,"hostname":"ubuntu","timestamp":1761496200399,"socketId":"33lhZvhd_iUQZf3cAAAP","action":{"type":"STOP_PLAYBACK","__token":"6","__senderId":"33lhZvhd_iUQZf3cAAAP","__senderName":"Alicer-33lh","scheduleAtServerMs":1761496200585},"msg":"action_received"}
|
||||
{"level":30,"time":1761496213639,"pid":414826,"hostname":"ubuntu","timestamp":1761496213639,"socketId":"hlUhVvPih7yL9C4lAAAL","action":{"type":"RESET_PROJECT","__token":"5","__senderId":"hlUhVvPih7yL9C4lAAAL","__senderName":"Alicer-hlUh"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496221430,"pid":414826,"hostname":"ubuntu","timestamp":1761496221430,"socketId":"7kPfJWClCba0R6FTAAAR","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"7kPfJWClCba0R6FTAAAR","__senderName":"Alicer-7kPf"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496224313,"pid":414826,"hostname":"ubuntu","timestamp":1761496224313,"socketId":"RwC8lCmA5wzrBnScAAAT","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"RwC8lCmA5wzrBnScAAAT","__senderName":"Alicer-RwC8"},"msg":"action_received"}
|
||||
|
|
@ -1,138 +0,0 @@
|
|||
{"level":30,"time":1761496533820,"pid":427026,"hostname":"ubuntu","timestamp":1761496533819,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496535998,"pid":427026,"hostname":"ubuntu","timestamp":1761496535998,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496540677,"pid":427026,"hostname":"ubuntu","timestamp":1761496540677,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496472045_bk9iq61","__token":"2","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496541983,"pid":427026,"hostname":"ubuntu","timestamp":1761496541983,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496473349_gzy9jf5","__token":"3","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496547957,"pid":427026,"hostname":"ubuntu","timestamp":1761496547957,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.8333333333333333,"clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","name":"909beat01.ogg","__token":"4","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496549398,"pid":427026,"hostname":"ubuntu","timestamp":1761496549398,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.8333333333333333},"__token":"5","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496550549,"pid":427026,"hostname":"ubuntu","timestamp":1761496550549,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.5},"__token":"6","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496552735,"pid":427026,"hostname":"ubuntu","timestamp":1761496552735,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"7","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496553638,"pid":427026,"hostname":"ubuntu","timestamp":1761496553638,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0},"__token":"8","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496554645,"pid":427026,"hostname":"ubuntu","timestamp":1761496554645,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.6666666666666666},"__token":"9","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496555333,"pid":427026,"hostname":"ubuntu","timestamp":1761496555333,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1},"__token":"10","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496556005,"pid":427026,"hostname":"ubuntu","timestamp":1761496556005,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.5},"__token":"11","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496556845,"pid":427026,"hostname":"ubuntu","timestamp":1761496556845,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.5},"__token":"12","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496557676,"pid":427026,"hostname":"ubuntu","timestamp":1761496557676,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"13","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496559726,"pid":427026,"hostname":"ubuntu","timestamp":1761496559726,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"START_AUDIO_PLAYBACK","__token":"14","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761496559910},"msg":"action_received"}
|
||||
{"level":30,"time":1761496562109,"pid":427026,"hostname":"ubuntu","timestamp":1761496562109,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":false,"__token":"15","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761496562294},"msg":"action_received"}
|
||||
{"level":30,"time":1761496564149,"pid":427026,"hostname":"ubuntu","timestamp":1761496564149,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ","scheduleAtServerMs":1761496564334},"msg":"action_received"}
|
||||
{"level":30,"time":1761496566287,"pid":427026,"hostname":"ubuntu","timestamp":1761496566287,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ","scheduleAtServerMs":1761496566473},"msg":"action_received"}
|
||||
{"level":30,"time":1761496570973,"pid":427026,"hostname":"ubuntu","timestamp":1761496570973,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0},"__token":"16","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496572340,"pid":427026,"hostname":"ubuntu","timestamp":1761496572340,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.16666666666666666},"__token":"4","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496573228,"pid":427026,"hostname":"ubuntu","timestamp":1761496573228,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.5},"__token":"5","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496573980,"pid":427026,"hostname":"ubuntu","timestamp":1761496573980,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.8333333333333333},"__token":"6","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496575548,"pid":427026,"hostname":"ubuntu","timestamp":1761496575548,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496506916_h72okks","__token":"7","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496575939,"pid":427026,"hostname":"ubuntu","timestamp":1761496575939,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496507307_4ns0apy","__token":"8","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496576316,"pid":427026,"hostname":"ubuntu","timestamp":1761496576316,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496507683_5ki5kwa","__token":"9","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496577172,"pid":427026,"hostname":"ubuntu","timestamp":1761496577172,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.6666666666666666},"__token":"10","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496577884,"pid":427026,"hostname":"ubuntu","timestamp":1761496577884,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.5},"__token":"11","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496578788,"pid":427026,"hostname":"ubuntu","timestamp":1761496578788,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.3333333333333333},"__token":"12","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496579492,"pid":427026,"hostname":"ubuntu","timestamp":1761496579492,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0.16666666666666666},"__token":"13","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496580284,"pid":427026,"hostname":"ubuntu","timestamp":1761496580284,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"14","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496581732,"pid":427026,"hostname":"ubuntu","timestamp":1761496581732,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"15","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496582662,"pid":427026,"hostname":"ubuntu","timestamp":1761496582662,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.3333333333333333},"__token":"16","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496583445,"pid":427026,"hostname":"ubuntu","timestamp":1761496583445,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0.3333333333333333},"__token":"17","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496584365,"pid":427026,"hostname":"ubuntu","timestamp":1761496584365,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":0},"__token":"18","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496732327,"pid":427026,"hostname":"ubuntu","timestamp":1761496732327,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0},"__token":"17","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496739639,"pid":427026,"hostname":"ubuntu","timestamp":1761496739639,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"__operation":"slice","sliceTimeInTimeline":2.833333333333333},"__token":"19","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496740517,"pid":427026,"hostname":"ubuntu","timestamp":1761496740517,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"__operation":"slice","sliceTimeInTimeline":2.5},"__token":"20","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496741226,"pid":427026,"hostname":"ubuntu","timestamp":1761496741226,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"__operation":"slice","sliceTimeInTimeline":1.8333333333333333},"__token":"21","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496746584,"pid":427026,"hostname":"ubuntu","timestamp":1761496746584,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"22","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496747629,"pid":427026,"hostname":"ubuntu","timestamp":1761496747629,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9d2b972-6789-4e58-b478-9feb888dfd58","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1.5},"__token":"23","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496749771,"pid":427026,"hostname":"ubuntu","timestamp":1761496749771,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"90a10544-b85e-49f5-8f8e-3e623e38b171","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.1666666666666665},"__token":"24","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496751139,"pid":427026,"hostname":"ubuntu","timestamp":1761496751139,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"ec968ca2-3ce4-407b-8e67-cfac6e1071fa","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":2.833333333333333},"__token":"25","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496752483,"pid":427026,"hostname":"ubuntu","timestamp":1761496752483,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9d2b972-6789-4e58-b478-9feb888dfd58","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1.5},"__token":"26","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496760445,"pid":427026,"hostname":"ubuntu","timestamp":1761496760445,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break01.ogg","trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.16666666666666666,"clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","name":"break01.ogg","__token":"27","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496761569,"pid":427026,"hostname":"ubuntu","timestamp":1761496761569,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.3333333333333333},"__token":"28","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496762605,"pid":427026,"hostname":"ubuntu","timestamp":1761496762605,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.6666666666666666},"__token":"29","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496763766,"pid":427026,"hostname":"ubuntu","timestamp":1761496763766,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":1.1666666666666665},"__token":"30","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496764629,"pid":427026,"hostname":"ubuntu","timestamp":1761496764629,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.5},"__token":"31","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496765481,"pid":427026,"hostname":"ubuntu","timestamp":1761496765481,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.16666666666666666},"__token":"32","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496766323,"pid":427026,"hostname":"ubuntu","timestamp":1761496766323,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"33","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496884979,"pid":427026,"hostname":"ubuntu","timestamp":1761496884979,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761496816341_ty0ecyo","__token":"18","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496895441,"pid":427026,"hostname":"ubuntu","timestamp":1761496895441,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/jungle01.ogg","trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1.8333333333333333,"clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","name":"jungle01.ogg","__token":"19","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496897913,"pid":427026,"hostname":"ubuntu","timestamp":1761496897913,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1.6666666666666665},"__token":"20","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496899340,"pid":427026,"hostname":"ubuntu","timestamp":1761496899340,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"START_AUDIO_PLAYBACK","__token":"21","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761496899525},"msg":"action_received"}
|
||||
{"level":30,"time":1761496900443,"pid":427026,"hostname":"ubuntu","timestamp":1761496900443,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"22","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761496900630},"msg":"action_received"}
|
||||
{"level":30,"time":1761496904171,"pid":427026,"hostname":"ubuntu","timestamp":1761496904171,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"TOGGLE_PLAYBACK","__token":"34","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ","scheduleAtServerMs":1761496904358},"msg":"action_received"}
|
||||
{"level":30,"time":1761496905429,"pid":427026,"hostname":"ubuntu","timestamp":1761496905429,"socketId":"TvtQuEfoHiRiaSpBAAAF","action":{"type":"STOP_PLAYBACK","__token":"35","__senderId":"TvtQuEfoHiRiaSpBAAAF","__senderName":"Alicer-TvtQ","scheduleAtServerMs":1761496905615},"msg":"action_received"}
|
||||
{"level":30,"time":1761496996152,"pid":427026,"hostname":"ubuntu","timestamp":1761496996152,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761496996220,"pid":427026,"hostname":"ubuntu","timestamp":1761496996220,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761496472045_bk9iq61","name":"Pista de Áudio 1"},{"id":"track_1761496473349_gzy9jf5","name":"Pista de Áudio 2"},{"id":"track_1761496506916_h72okks","name":"Pista de Áudio 3"},{"id":"track_1761496507307_4ns0apy","name":"Pista de Áudio 4"},{"id":"track_1761496507683_5ki5kwa","name":"Pista de Áudio 5"},{"id":"track_1761496816341_ty0ecyo","name":"Pista de Áudio 6"}],"clips":[{"id":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","trackId":"track_1761496472045_bk9iq61","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":1.8333333333333333,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.833333333333333,"durationInSeconds":1.1185833333333335,"offset":2.833333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"b9134121-180e-4878-aec2-db4bceb41936","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.5,"durationInSeconds":0.33333333333333304,"offset":2.5,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":1.8333333333333333,"durationInSeconds":0.6666666666666667,"offset":1.8333333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","trackId":"track_1761496507683_5ki5kwa","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":0,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875},{"id":"df1366bd-572c-415f-9294-25b05d4b93f4","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":1.6666666666666665,"durationInSeconds":2.779916666666667,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.779916666666667}]},"__target":"9mWPXtgKH7suYhLBAAAH","__token":"23","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497125360,"pid":427026,"hostname":"ubuntu","timestamp":1761497125360,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"__operation":"slice","sliceTimeInTimeline":3.333333333333333},"__token":"2","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497129069,"pid":427026,"hostname":"ubuntu","timestamp":1761497129069,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1.6666666666666665},"__token":"3","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497132798,"pid":427026,"hostname":"ubuntu","timestamp":1761497132798,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.6666666666666665},"__token":"4","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497133486,"pid":427026,"hostname":"ubuntu","timestamp":1761497133486,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.6666666666666665},"__token":"5","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497135702,"pid":427026,"hostname":"ubuntu","timestamp":1761497135702,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"6","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497136822,"pid":427026,"hostname":"ubuntu","timestamp":1761497136822,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0.8333333333333333},"__token":"7","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497138654,"pid":427026,"hostname":"ubuntu","timestamp":1761497138654,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1.1666666666666665},"__token":"8","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497139750,"pid":427026,"hostname":"ubuntu","timestamp":1761497139750,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"df1366bd-572c-415f-9294-25b05d4b93f4","props":{"trackId":"track_1761496816341_ty0ecyo","startTimeInSeconds":1},"__token":"9","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497141480,"pid":427026,"hostname":"ubuntu","timestamp":1761497141480,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2.333333333333333},"__token":"10","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497153551,"pid":427026,"hostname":"ubuntu","timestamp":1761497153551,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2.333333333333333},"__token":"11","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497154728,"pid":427026,"hostname":"ubuntu","timestamp":1761497154728,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2.333333333333333},"__token":"12","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497157776,"pid":427026,"hostname":"ubuntu","timestamp":1761497157776,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1.1666666666666665},"__token":"13","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497159568,"pid":427026,"hostname":"ubuntu","timestamp":1761497159568,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.16666666666666666},"__token":"14","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497160393,"pid":427026,"hostname":"ubuntu","timestamp":1761497160392,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.5},"__token":"15","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497161448,"pid":427026,"hostname":"ubuntu","timestamp":1761497161448,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0.16666666666666666},"__token":"16","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497162279,"pid":427026,"hostname":"ubuntu","timestamp":1761497162279,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"17","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497163583,"pid":427026,"hostname":"ubuntu","timestamp":1761497163583,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"18","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497165816,"pid":427026,"hostname":"ubuntu","timestamp":1761497165816,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":3},"__token":"19","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497166825,"pid":427026,"hostname":"ubuntu","timestamp":1761497166825,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":3},"__token":"20","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497167976,"pid":427026,"hostname":"ubuntu","timestamp":1761497167976,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":3},"__token":"21","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497169529,"pid":427026,"hostname":"ubuntu","timestamp":1761497169529,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"startTimeInSeconds":2.5,"durationInSeconds":0.1875,"offset":2.666666666666667,"pitch":0},"__token":"24","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497171114,"pid":427026,"hostname":"ubuntu","timestamp":1761497171114,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"startTimeInSeconds":2.1666666666666665,"durationInSeconds":0.5416666666666666,"offset":2.3333333333333335,"pitch":0},"__token":"25","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497172897,"pid":427026,"hostname":"ubuntu","timestamp":1761497172897,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"startTimeInSeconds":1.3333333333333333,"durationInSeconds":1.3958333333333333,"offset":1.5000000000000002,"pitch":0},"__token":"26","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497175177,"pid":427026,"hostname":"ubuntu","timestamp":1761497175177,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2.1666666666666665},"__token":"27","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497176664,"pid":427026,"hostname":"ubuntu","timestamp":1761497176664,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2.1666666666666665},"__token":"28","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497177736,"pid":427026,"hostname":"ubuntu","timestamp":1761497177736,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2},"__token":"29","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497202443,"pid":427026,"hostname":"ubuntu","timestamp":1761497202443,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"__operation":"slice","sliceTimeInTimeline":1},"__token":"22","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497205537,"pid":427026,"hostname":"ubuntu","timestamp":1761497205537,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"24e73fc0-9025-4a0f-88c8-69aa841c8d80","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2.1666666666666665},"__token":"23","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497207282,"pid":427026,"hostname":"ubuntu","timestamp":1761497207282,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"24e73fc0-9025-4a0f-88c8-69aa841c8d80","props":{"startTimeInSeconds":1.5,"durationInSeconds":1.5208333333333333,"offset":0.3333333333333335,"pitch":0},"__token":"24","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761497210338,"pid":427026,"hostname":"ubuntu","timestamp":1761497210338,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"START_AUDIO_PLAYBACK","__token":"25","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP","scheduleAtServerMs":1761497210525},"msg":"action_received"}
|
||||
{"level":30,"time":1761497213258,"pid":427026,"hostname":"ubuntu","timestamp":1761497213258,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"26","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP","scheduleAtServerMs":1761497213445},"msg":"action_received"}
|
||||
{"level":30,"time":1761498540817,"pid":427026,"hostname":"ubuntu","timestamp":1761498540817,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0.16666666666666666},"__token":"27","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498542170,"pid":427026,"hostname":"ubuntu","timestamp":1761498542170,"socketId":"9mWPXtgKH7suYhLBAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":0},"__token":"28","__senderId":"9mWPXtgKH7suYhLBAAAH","__senderName":"Alicer-9mWP"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498544290,"pid":427026,"hostname":"ubuntu","timestamp":1761498544290,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":1.8333333333333333},"__token":"30","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498545491,"pid":427026,"hostname":"ubuntu","timestamp":1761498545491,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2},"__token":"31","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498546358,"pid":427026,"hostname":"ubuntu","timestamp":1761498546358,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":1.6666666666666665},"__token":"32","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498547529,"pid":427026,"hostname":"ubuntu","timestamp":1761498547529,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":1.8333333333333333},"__token":"33","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498548777,"pid":427026,"hostname":"ubuntu","timestamp":1761498548777,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1},"__token":"34","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498550379,"pid":427026,"hostname":"ubuntu","timestamp":1761498550379,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0.16666666666666666},"__token":"35","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498551372,"pid":427026,"hostname":"ubuntu","timestamp":1761498551372,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.1666666666666665},"__token":"36","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498552308,"pid":427026,"hostname":"ubuntu","timestamp":1761498552308,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.1666666666666665},"__token":"37","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498552860,"pid":427026,"hostname":"ubuntu","timestamp":1761498552860,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.1666666666666665},"__token":"38","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498553444,"pid":427026,"hostname":"ubuntu","timestamp":1761498553444,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":1.1666666666666665},"__token":"39","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498554340,"pid":427026,"hostname":"ubuntu","timestamp":1761498554340,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"REMOVE_AUDIO_CLIP","clipId":"7ee261c5-24cd-411e-8050-85c39e039c5b","__token":"40","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498560257,"pid":427026,"hostname":"ubuntu","timestamp":1761498560257,"socketId":"LElghM2sTToa0pBlAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"LElghM2sTToa0pBlAAAJ","__senderName":"Alicer-LElg"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498560288,"pid":427026,"hostname":"ubuntu","timestamp":1761498560288,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761496472045_bk9iq61","name":"Pista de Áudio 1"},{"id":"track_1761496473349_gzy9jf5","name":"Pista de Áudio 2"},{"id":"track_1761496506916_h72okks","name":"Pista de Áudio 3"},{"id":"track_1761496507307_4ns0apy","name":"Pista de Áudio 4"},{"id":"track_1761496507683_5ki5kwa","name":"Pista de Áudio 5"},{"id":"track_1761496816341_ty0ecyo","name":"Pista de Áudio 6"}],"clips":[{"id":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","trackId":"track_1761496472045_bk9iq61","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":1,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":3,"durationInSeconds":1.1185833333333335,"offset":2.833333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"b9134121-180e-4878-aec2-db4bceb41936","trackId":"track_1761496473349_gzy9jf5","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2,"durationInSeconds":1.3958333333333333,"offset":1.5000000000000002,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0.8333333333333333,"durationInSeconds":0.6666666666666667,"offset":1.8333333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","trackId":"track_1761496507683_5ki5kwa","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":0,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875},{"id":"df1366bd-572c-415f-9294-25b05d4b93f4","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":1,"durationInSeconds":1.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.779916666666667},{"id":"a781562c-029e-40d1-ae2f-d36266c6e0b9","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":3.333333333333333,"durationInSeconds":1.1132500000000003,"offset":1.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.779916666666667}]},"__target":"LElghM2sTToa0pBlAAAJ","__token":"41","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498562417,"pid":427026,"hostname":"ubuntu","timestamp":1761498562417,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1},"__token":"42","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498563387,"pid":427026,"hostname":"ubuntu","timestamp":1761498563387,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"43","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498564098,"pid":427026,"hostname":"ubuntu","timestamp":1761498564098,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1},"__token":"44","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498564859,"pid":427026,"hostname":"ubuntu","timestamp":1761498564859,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"45","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498565453,"pid":427026,"hostname":"ubuntu","timestamp":1761498565453,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":1},"__token":"46","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498566811,"pid":427026,"hostname":"ubuntu","timestamp":1761498566811,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496472045_bk9iq61","startTimeInSeconds":2},"__token":"47","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498567670,"pid":427026,"hostname":"ubuntu","timestamp":1761498567670,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2},"__token":"48","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498570611,"pid":427026,"hostname":"ubuntu","timestamp":1761498570611,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"START_AUDIO_PLAYBACK","__token":"49","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498570798},"msg":"action_received"}
|
||||
{"level":30,"time":1761498572916,"pid":427026,"hostname":"ubuntu","timestamp":1761498572916,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"50","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498573101},"msg":"action_received"}
|
||||
{"level":30,"time":1761498573523,"pid":427026,"hostname":"ubuntu","timestamp":1761498573523,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"51","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498573710},"msg":"action_received"}
|
||||
{"level":30,"time":1761498577580,"pid":427026,"hostname":"ubuntu","timestamp":1761498577580,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"START_AUDIO_PLAYBACK","__token":"52","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498577765},"msg":"action_received"}
|
||||
{"level":30,"time":1761498578739,"pid":427026,"hostname":"ubuntu","timestamp":1761498578739,"socketId":"LMgUiUPjGpni0oYiAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"53","__senderId":"LMgUiUPjGpni0oYiAAAD","__senderName":"Alicer-LMgU","scheduleAtServerMs":1761498578926},"msg":"action_received"}
|
||||
{"level":30,"time":1761498582450,"pid":427026,"hostname":"ubuntu","timestamp":1761498582450,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498582478,"pid":427026,"hostname":"ubuntu","timestamp":1761498582478,"socketId":"LElghM2sTToa0pBlAAAJ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761496472045_bk9iq61","name":"Pista de Áudio 1"},{"id":"track_1761496473349_gzy9jf5","name":"Pista de Áudio 2"},{"id":"track_1761496506916_h72okks","name":"Pista de Áudio 3"},{"id":"track_1761496507307_4ns0apy","name":"Pista de Áudio 4"},{"id":"track_1761496507683_5ki5kwa","name":"Pista de Áudio 5"},{"id":"track_1761496816341_ty0ecyo","name":"Pista de Áudio 6"}],"clips":[{"id":"c9506c85-ae97-4fc6-bbfb-abd193dd187e","trackId":"track_1761496472045_bk9iq61","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":1,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"1c80af4e-aaa9-4046-8fb2-a6915ebb097f","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":3,"durationInSeconds":1.1185833333333335,"offset":2.833333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"b9134121-180e-4878-aec2-db4bceb41936","trackId":"track_1761496473349_gzy9jf5","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2,"durationInSeconds":1.3958333333333333,"offset":1.5000000000000002,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","trackId":"track_1761496506916_h72okks","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":1,"durationInSeconds":0.6666666666666667,"offset":1.8333333333333333,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","trackId":"track_1761496507683_5ki5kwa","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":0,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"df1366bd-572c-415f-9294-25b05d4b93f4","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":1,"durationInSeconds":1.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.793645833333333},{"id":"a781562c-029e-40d1-ae2f-d36266c6e0b9","trackId":"track_1761496816341_ty0ecyo","name":"jungle01.ogg","sourcePath":"src/samples/beats/jungle01.ogg","startTimeInSeconds":3.333333333333333,"durationInSeconds":1.1132500000000003,"offset":1.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":2.793645833333333}]},"__target":"hkHF-OC_b8VFRLgqAAAL","__token":"2","__senderId":"LElghM2sTToa0pBlAAAJ","__senderName":"Alicer-LElg"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498583460,"pid":427026,"hostname":"ubuntu","timestamp":1761498583460,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"START_AUDIO_PLAYBACK","__token":"2","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF","scheduleAtServerMs":1761498583638},"msg":"action_received"}
|
||||
{"level":30,"time":1761498584792,"pid":427026,"hostname":"ubuntu","timestamp":1761498584792,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF","scheduleAtServerMs":1761498584968},"msg":"action_received"}
|
||||
{"level":30,"time":1761498586370,"pid":427026,"hostname":"ubuntu","timestamp":1761498586370,"socketId":"LElghM2sTToa0pBlAAAJ","action":{"type":"START_AUDIO_PLAYBACK","__token":"3","__senderId":"LElghM2sTToa0pBlAAAJ","__senderName":"Alicer-LElg","scheduleAtServerMs":1761498586554},"msg":"action_received"}
|
||||
{"level":30,"time":1761498588274,"pid":427026,"hostname":"ubuntu","timestamp":1761498588274,"socketId":"LElghM2sTToa0pBlAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"LElghM2sTToa0pBlAAAJ","__senderName":"Alicer-LElg","scheduleAtServerMs":1761498588458},"msg":"action_received"}
|
||||
{"level":30,"time":1761498892387,"pid":427026,"hostname":"ubuntu","timestamp":1761498892387,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2.1666666666666665},"__token":"4","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498893450,"pid":427026,"hostname":"ubuntu","timestamp":1761498893450,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":2},"__token":"5","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498894193,"pid":427026,"hostname":"ubuntu","timestamp":1761498894193,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.8333333333333333},"__token":"6","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498894851,"pid":427026,"hostname":"ubuntu","timestamp":1761498894851,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.6666666666666665},"__token":"7","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498895507,"pid":427026,"hostname":"ubuntu","timestamp":1761498895507,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"b9134121-180e-4878-aec2-db4bceb41936","props":{"trackId":"track_1761496473349_gzy9jf5","startTimeInSeconds":1.3333333333333333},"__token":"8","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498897545,"pid":427026,"hostname":"ubuntu","timestamp":1761498897545,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.8333333333333333},"__token":"9","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498898345,"pid":427026,"hostname":"ubuntu","timestamp":1761498898345,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.5},"__token":"10","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498899300,"pid":427026,"hostname":"ubuntu","timestamp":1761498899300,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"db97322c-d4a9-47c4-bce5-ce5f59adfd13","props":{"trackId":"track_1761496506916_h72okks","startTimeInSeconds":0.6666666666666666},"__token":"11","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498900692,"pid":427026,"hostname":"ubuntu","timestamp":1761498900692,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0},"__token":"12","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498902076,"pid":427026,"hostname":"ubuntu","timestamp":1761498902076,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"13","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498903290,"pid":427026,"hostname":"ubuntu","timestamp":1761498903290,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0.16666666666666666},"__token":"14","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498904251,"pid":427026,"hostname":"ubuntu","timestamp":1761498904251,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"15","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498905318,"pid":427026,"hostname":"ubuntu","timestamp":1761498905318,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0},"__token":"16","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498906500,"pid":427026,"hostname":"ubuntu","timestamp":1761498906500,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507683_5ki5kwa","startTimeInSeconds":0},"__token":"17","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761498907611,"pid":427026,"hostname":"ubuntu","timestamp":1761498907611,"socketId":"hkHF-OC_b8VFRLgqAAAL","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"6dd35010-93de-4e4b-9f56-2e02b95f82dc","props":{"trackId":"track_1761496507307_4ns0apy","startTimeInSeconds":0},"__token":"18","__senderId":"hkHF-OC_b8VFRLgqAAAL","__senderName":"Alicer-hkHF"},"msg":"action_received"}
|
||||
|
|
@ -1,999 +0,0 @@
|
|||
{"level":30,"time":1761499432941,"pid":471169,"hostname":"ubuntu","timestamp":1761499432940,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499434105,"pid":471169,"hostname":"ubuntu","timestamp":1761499434105,"socketId":"ZHyFGyxP2GZOqadwAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"ZHyFGyxP2GZOqadwAAAH","__senderName":"Alicer-ZHyF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499476676,"pid":471169,"hostname":"ubuntu","timestamp":1761499476676,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761499407995_5maq15z","__token":"2","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499491643,"pid":471169,"hostname":"ubuntu","timestamp":1761499491643,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499491670,"pid":471169,"hostname":"ubuntu","timestamp":1761499491670,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761499407995_5maq15z","name":"Pista de Áudio 1"}],"clips":[]},"__target":"DkrndohiLep1P-AuAAAJ","__token":"3","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499494695,"pid":471169,"hostname":"ubuntu","timestamp":1761499494695,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"4","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH","scheduleAtServerMs":1761499494880,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499505037,"pid":471169,"hostname":"ubuntu","timestamp":1761499505037,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"5","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH","scheduleAtServerMs":1761499505224,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499511669,"pid":471169,"hostname":"ubuntu","timestamp":1761499511669,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"2","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499511857,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499513341,"pid":471169,"hostname":"ubuntu","timestamp":1761499513341,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"3","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499513529,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499514901,"pid":471169,"hostname":"ubuntu","timestamp":1761499514901,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"4","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499515088,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499555336,"pid":471169,"hostname":"ubuntu","timestamp":1761499555336,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"5","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499555522,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499556871,"pid":471169,"hostname":"ubuntu","timestamp":1761499556871,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"6","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499557057,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499578488,"pid":471169,"hostname":"ubuntu","timestamp":1761499578488,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":6.109333333333332,"loopState":{"isLoopActive":false,"loopStartTime":0,"loopEndTime":8},"__token":"11","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499578675,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499580128,"pid":471169,"hostname":"ubuntu","timestamp":1761499580128,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"12","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499580315,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499583057,"pid":471169,"hostname":"ubuntu","timestamp":1761499583057,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":false,"loopStartTime":0,"loopEndTime":8},"__token":"13","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499583244,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499584785,"pid":471169,"hostname":"ubuntu","timestamp":1761499584785,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":false,"__token":"14","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499584971,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499587784,"pid":471169,"hostname":"ubuntu","timestamp":1761499587784,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"START_AUDIO_PLAYBACK","seekTime":1.7093333333333334,"loopState":{"isLoopActive":false,"loopStartTime":0,"loopEndTime":8},"__token":"15","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499587971,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499594169,"pid":471169,"hostname":"ubuntu","timestamp":1761499594169,"socketId":"DkrndohiLep1P-AuAAAJ","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"16","__senderId":"DkrndohiLep1P-AuAAAJ","__senderName":"Alicer-Dkrn","scheduleAtServerMs":1761499594359,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499624912,"pid":471169,"hostname":"ubuntu","timestamp":1761499624912,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":"track_1761499407995_5maq15z","startTimeInSeconds":7,"clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","name":"909beat01.ogg","__token":"7","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499626091,"pid":471169,"hostname":"ubuntu","timestamp":1761499626091,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":4.166666666666666},"__token":"8","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499627853,"pid":471169,"hostname":"ubuntu","timestamp":1761499627853,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":0},"__token":"9","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499634676,"pid":471169,"hostname":"ubuntu","timestamp":1761499634676,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":3.958333333333333},"__token":"10","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH","scheduleAtServerMs":1761499634863,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499640118,"pid":471169,"hostname":"ubuntu","timestamp":1761499640118,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"11","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH","scheduleAtServerMs":1761499640304,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499959963,"pid":471169,"hostname":"ubuntu","timestamp":1761499959963,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":3.1666666666666665},"__token":"12","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499961418,"pid":471169,"hostname":"ubuntu","timestamp":1761499961418,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":4.833333333333333},"__token":"13","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499962403,"pid":471169,"hostname":"ubuntu","timestamp":1761499962403,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":2.833333333333333},"__token":"14","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499964027,"pid":471169,"hostname":"ubuntu","timestamp":1761499964027,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":1.3333333333333333},"__token":"15","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761499964676,"pid":471169,"hostname":"ubuntu","timestamp":1761499964676,"socketId":"OATH_qa9vylJo-V8AAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"1a5cae7a-c54d-4d88-ba4c-6b8d5997ca11","props":{"trackId":"track_1761499407995_5maq15z","startTimeInSeconds":0.6666666666666666},"__token":"16","__senderId":"OATH_qa9vylJo-V8AAAF","__senderName":"Alicer-OATH"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500447040,"pid":471169,"hostname":"ubuntu","timestamp":1761500447040,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500448216,"pid":471169,"hostname":"ubuntu","timestamp":1761500448216,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500449290,"pid":471169,"hostname":"ubuntu","timestamp":1761500449290,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761500380591_lfbbzcl","__token":"2","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500458731,"pid":471169,"hostname":"ubuntu","timestamp":1761500458731,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"3","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500458917,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500459306,"pid":471169,"hostname":"ubuntu","timestamp":1761500459306,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500465826,"pid":471169,"hostname":"ubuntu","timestamp":1761500465826,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":1.791666666666667,"__token":"5","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500468939,"pid":471169,"hostname":"ubuntu","timestamp":1761500468939,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":4.375,"__token":"6","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500470659,"pid":471169,"hostname":"ubuntu","timestamp":1761500470659,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":1.5416666666666665,"__token":"7","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500478546,"pid":471169,"hostname":"ubuntu","timestamp":1761500478546,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":12.416666666666666,"__token":"2","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500504933,"pid":471169,"hostname":"ubuntu","timestamp":1761500504933,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"8","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500506422,"pid":471169,"hostname":"ubuntu","timestamp":1761500506422,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":12.416666666666666},"__token":"9","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500506607,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500508588,"pid":471169,"hostname":"ubuntu","timestamp":1761500508588,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"10","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500509813,"pid":471169,"hostname":"ubuntu","timestamp":1761500509813,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":8.0625,"__token":"11","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513597,"pid":471169,"hostname":"ubuntu","timestamp":1761500513597,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.1875,"__token":"12","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513669,"pid":471169,"hostname":"ubuntu","timestamp":1761500513669,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.229166666666666,"__token":"13","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513701,"pid":471169,"hostname":"ubuntu","timestamp":1761500513701,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.270833333333334,"__token":"14","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513716,"pid":471169,"hostname":"ubuntu","timestamp":1761500513716,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.354166666666666,"__token":"15","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513733,"pid":471169,"hostname":"ubuntu","timestamp":1761500513733,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.354166666666666,"__token":"16","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513751,"pid":471169,"hostname":"ubuntu","timestamp":1761500513751,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.395833333333334,"__token":"17","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513785,"pid":471169,"hostname":"ubuntu","timestamp":1761500513785,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.4375,"__token":"18","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513801,"pid":471169,"hostname":"ubuntu","timestamp":1761500513801,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.5625,"__token":"19","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513816,"pid":471169,"hostname":"ubuntu","timestamp":1761500513816,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.645833333333334,"__token":"20","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513833,"pid":471169,"hostname":"ubuntu","timestamp":1761500513833,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.6875,"__token":"21","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500513918,"pid":471169,"hostname":"ubuntu","timestamp":1761500513918,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.729166666666666,"__token":"22","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500514773,"pid":471169,"hostname":"ubuntu","timestamp":1761500514773,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":10.354166666666666,"__token":"23","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500515645,"pid":471169,"hostname":"ubuntu","timestamp":1761500515645,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":5.104166666666667,"__token":"24","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500516437,"pid":471169,"hostname":"ubuntu","timestamp":1761500516437,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":4.020833333333333,"__token":"25","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500516885,"pid":471169,"hostname":"ubuntu","timestamp":1761500516885,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":2.3541666666666665,"__token":"26","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500519902,"pid":471169,"hostname":"ubuntu","timestamp":1761500519902,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":12.416666666666666,"__token":"27","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500522541,"pid":471169,"hostname":"ubuntu","timestamp":1761500522541,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":12.375,"__token":"28","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500524549,"pid":471169,"hostname":"ubuntu","timestamp":1761500524549,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":9.75,"__token":"29","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500542406,"pid":471169,"hostname":"ubuntu","timestamp":1761500542406,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":14.583333333333332,"__token":"30","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500549702,"pid":471169,"hostname":"ubuntu","timestamp":1761500549701,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8.708333333333332,"__token":"3","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500658399,"pid":471169,"hostname":"ubuntu","timestamp":1761500658399,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":8.895833333333334,"__token":"31","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500709869,"pid":471169,"hostname":"ubuntu","timestamp":1761500709869,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"34","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500711182,"pid":471169,"hostname":"ubuntu","timestamp":1761500711182,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":8.895833333333334,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":4.208333333333331},"__token":"35","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500711366,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500713421,"pid":471169,"hostname":"ubuntu","timestamp":1761500713421,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"36","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500715206,"pid":471169,"hostname":"ubuntu","timestamp":1761500715206,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"37","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500717920,"pid":471169,"hostname":"ubuntu","timestamp":1761500717920,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":4.208333333333331},"__token":"38","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500718105,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500719928,"pid":471169,"hostname":"ubuntu","timestamp":1761500719928,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"39","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500720766,"pid":471169,"hostname":"ubuntu","timestamp":1761500720766,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"40","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500724239,"pid":471169,"hostname":"ubuntu","timestamp":1761500724239,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":4.208333333333331},"__token":"41","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","scheduleAtServerMs":1761500724423,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500725278,"pid":471169,"hostname":"ubuntu","timestamp":1761500725278,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"42","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500791468,"pid":471169,"hostname":"ubuntu","timestamp":1761500791468,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":4.354166666666667,"__token":"4","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500791468,"pid":471169,"hostname":"ubuntu","timestamp":1761500791468,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":4.354166666666667,"__token":"5","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500792505,"pid":471169,"hostname":"ubuntu","timestamp":1761500792505,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":5.395833333333333,"__token":"6","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500793161,"pid":471169,"hostname":"ubuntu","timestamp":1761500793161,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":6.8125,"__token":"7","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500793740,"pid":471169,"hostname":"ubuntu","timestamp":1761500793740,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":3.4375,"__token":"8","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500794642,"pid":471169,"hostname":"ubuntu","timestamp":1761500794642,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":2.3125,"__token":"9","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795146,"pid":471169,"hostname":"ubuntu","timestamp":1761500795146,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":4.895833333333333,"__token":"10","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795508,"pid":471169,"hostname":"ubuntu","timestamp":1761500795508,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":6.854166666666667,"__token":"11","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795568,"pid":471169,"hostname":"ubuntu","timestamp":1761500795568,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":6.895833333333333,"__token":"12","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795610,"pid":471169,"hostname":"ubuntu","timestamp":1761500795610,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":6.979166666666667,"__token":"13","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795626,"pid":471169,"hostname":"ubuntu","timestamp":1761500795626,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":7.3125,"__token":"14","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795641,"pid":471169,"hostname":"ubuntu","timestamp":1761500795641,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":7.4375,"__token":"15","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795659,"pid":471169,"hostname":"ubuntu","timestamp":1761500795659,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":7.645833333333333,"__token":"16","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795676,"pid":471169,"hostname":"ubuntu","timestamp":1761500795676,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":7.8125,"__token":"17","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795762,"pid":471169,"hostname":"ubuntu","timestamp":1761500795762,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.0625,"__token":"18","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795762,"pid":471169,"hostname":"ubuntu","timestamp":1761500795762,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.229166666666666,"__token":"19","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795766,"pid":471169,"hostname":"ubuntu","timestamp":1761500795766,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.395833333333334,"__token":"20","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795782,"pid":471169,"hostname":"ubuntu","timestamp":1761500795782,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.5625,"__token":"21","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795782,"pid":471169,"hostname":"ubuntu","timestamp":1761500795782,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.6875,"__token":"22","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500795827,"pid":471169,"hostname":"ubuntu","timestamp":1761500795827,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.729166666666666,"__token":"23","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796017,"pid":471169,"hostname":"ubuntu","timestamp":1761500796017,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.770833333333334,"__token":"24","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796032,"pid":471169,"hostname":"ubuntu","timestamp":1761500796032,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.8125,"__token":"25","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796091,"pid":471169,"hostname":"ubuntu","timestamp":1761500796091,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.854166666666666,"__token":"26","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796108,"pid":471169,"hostname":"ubuntu","timestamp":1761500796108,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.895833333333334,"__token":"27","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796125,"pid":471169,"hostname":"ubuntu","timestamp":1761500796125,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":8.9375,"__token":"28","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796141,"pid":471169,"hostname":"ubuntu","timestamp":1761500796141,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.0625,"__token":"29","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796158,"pid":471169,"hostname":"ubuntu","timestamp":1761500796158,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.229166666666666,"__token":"30","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796175,"pid":471169,"hostname":"ubuntu","timestamp":1761500796175,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.354166666666666,"__token":"31","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796192,"pid":471169,"hostname":"ubuntu","timestamp":1761500796192,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.520833333333334,"__token":"32","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796208,"pid":471169,"hostname":"ubuntu","timestamp":1761500796208,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.770833333333334,"__token":"33","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796225,"pid":471169,"hostname":"ubuntu","timestamp":1761500796225,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":9.9375,"__token":"34","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796241,"pid":471169,"hostname":"ubuntu","timestamp":1761500796241,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":10.020833333333334,"__token":"35","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796263,"pid":471169,"hostname":"ubuntu","timestamp":1761500796263,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":10.104166666666666,"__token":"36","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796275,"pid":471169,"hostname":"ubuntu","timestamp":1761500796275,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":10.1875,"__token":"37","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796332,"pid":471169,"hostname":"ubuntu","timestamp":1761500796332,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":10.229166666666666,"__token":"38","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500796905,"pid":471169,"hostname":"ubuntu","timestamp":1761500796905,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":5.729166666666667,"__token":"39","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500797737,"pid":471169,"hostname":"ubuntu","timestamp":1761500797737,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":5.479166666666667,"__token":"40","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500798289,"pid":471169,"hostname":"ubuntu","timestamp":1761500798289,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":4.020833333333333,"__token":"41","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500798794,"pid":471169,"hostname":"ubuntu","timestamp":1761500798794,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":1.6875,"__token":"42","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500808522,"pid":471169,"hostname":"ubuntu","timestamp":1761500808522,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":7.0625,"__token":"43","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500810323,"pid":471169,"hostname":"ubuntu","timestamp":1761500810323,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761500741617_rpz0rna","__token":"44","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500811091,"pid":471169,"hostname":"ubuntu","timestamp":1761500811091,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761500742384_ifk23ix","__token":"45","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500811882,"pid":471169,"hostname":"ubuntu","timestamp":1761500811882,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761500743176_q3xiqem","__token":"46","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500813188,"pid":471169,"hostname":"ubuntu","timestamp":1761500813188,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":9.354166666666666,"__token":"47","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500814563,"pid":471169,"hostname":"ubuntu","timestamp":1761500814563,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":6.270833333333333,"__token":"48","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500815243,"pid":471169,"hostname":"ubuntu","timestamp":1761500815243,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":3.8958333333333335,"__token":"49","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500816147,"pid":471169,"hostname":"ubuntu","timestamp":1761500816146,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":8.770833333333334,"__token":"50","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500816564,"pid":471169,"hostname":"ubuntu","timestamp":1761500816564,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":10.104166666666666,"__token":"51","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500816570,"pid":471169,"hostname":"ubuntu","timestamp":1761500816570,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":10.104166666666666,"__token":"52","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500816996,"pid":471169,"hostname":"ubuntu","timestamp":1761500816996,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":11.9375,"__token":"53","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500817485,"pid":471169,"hostname":"ubuntu","timestamp":1761500817485,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":10.395833333333334,"__token":"54","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500817963,"pid":471169,"hostname":"ubuntu","timestamp":1761500817963,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":7.395833333333333,"__token":"55","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500818420,"pid":471169,"hostname":"ubuntu","timestamp":1761500818420,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":4.395833333333333,"__token":"56","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500818995,"pid":471169,"hostname":"ubuntu","timestamp":1761500818995,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_SEEK_TIME","seekTime":2.2708333333333335,"__token":"57","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500820451,"pid":471169,"hostname":"ubuntu","timestamp":1761500820451,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":6.749999999999998,"__token":"58","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500821826,"pid":471169,"hostname":"ubuntu","timestamp":1761500821826,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8.541666666666664,"__token":"59","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500822563,"pid":471169,"hostname":"ubuntu","timestamp":1761500822563,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":9.666666666666664,"__token":"60","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500823283,"pid":471169,"hostname":"ubuntu","timestamp":1761500823283,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.374999999999998,"__token":"61","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500825502,"pid":471169,"hostname":"ubuntu","timestamp":1761500825501,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":11.166666666666664,"__token":"62","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500832427,"pid":471169,"hostname":"ubuntu","timestamp":1761500832427,"socketId":"Yklggv5yuOkeqrv0AAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":13.291666666666664,"__token":"63","__senderId":"Yklggv5yuOkeqrv0AAAL","__senderName":"Alicer-Yklg","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500838995,"pid":471169,"hostname":"ubuntu","timestamp":1761500838995,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.666666666666664,"__token":"43","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500907017,"pid":471169,"hostname":"ubuntu","timestamp":1761500907017,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500907042,"pid":471169,"hostname":"ubuntu","timestamp":1761500907042,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[]},"__target":"UD9ArAYOA2pDTalvAAAP","__token":"44","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500908193,"pid":471169,"hostname":"ubuntu","timestamp":1761500908193,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":11.0625,"__token":"45","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500908194,"pid":471169,"hostname":"ubuntu","timestamp":1761500908194,"socketId":"zuH_FHtnUt6vyWEHAAAN","action":{"type":"SET_SEEK_TIME","seekTime":11.0625,"__token":"46","__senderId":"zuH_FHtnUt6vyWEHAAAN","__senderName":"Alicer-zuH_","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500911019,"pid":471169,"hostname":"ubuntu","timestamp":1761500911019,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500911045,"pid":471169,"hostname":"ubuntu","timestamp":1761500911045,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[]},"__target":"_nekebkJ_WyceqQTAAAR","__token":"2","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500919376,"pid":471169,"hostname":"ubuntu","timestamp":1761500919376,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":0.6666666666666666,"clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","name":"909beat01.ogg","__token":"3","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500921223,"pid":471169,"hostname":"ubuntu","timestamp":1761500921223,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500741617_rpz0rna","startTimeInSeconds":0.3333333333333333},"__token":"4","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500922256,"pid":471169,"hostname":"ubuntu","timestamp":1761500922256,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500742384_ifk23ix","startTimeInSeconds":0.16666666666666666},"__token":"5","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500926408,"pid":471169,"hostname":"ubuntu","timestamp":1761500926408,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"6","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500927496,"pid":471169,"hostname":"ubuntu","timestamp":1761500927496,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"7","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500928176,"pid":471169,"hostname":"ubuntu","timestamp":1761500928176,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"8","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955114,"pid":471169,"hostname":"ubuntu","timestamp":1761500955114,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3385416666666667,"__token":"2","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955115,"pid":471169,"hostname":"ubuntu","timestamp":1761500955115,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3385416666666667,"__token":"3","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955200,"pid":471169,"hostname":"ubuntu","timestamp":1761500955200,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3489583333333333,"__token":"4","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955244,"pid":471169,"hostname":"ubuntu","timestamp":1761500955244,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.359375,"__token":"5","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955259,"pid":471169,"hostname":"ubuntu","timestamp":1761500955259,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3802083333333333,"__token":"6","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955277,"pid":471169,"hostname":"ubuntu","timestamp":1761500955277,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.3802083333333333,"__token":"7","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955730,"pid":471169,"hostname":"ubuntu","timestamp":1761500955730,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.546875,"__token":"8","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955752,"pid":471169,"hostname":"ubuntu","timestamp":1761500955752,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.5677083333333334,"__token":"9","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955776,"pid":471169,"hostname":"ubuntu","timestamp":1761500955776,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.578125,"__token":"10","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955793,"pid":471169,"hostname":"ubuntu","timestamp":1761500955793,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.609375,"__token":"11","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955812,"pid":471169,"hostname":"ubuntu","timestamp":1761500955812,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.640625,"__token":"12","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955827,"pid":471169,"hostname":"ubuntu","timestamp":1761500955827,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6510416666666666,"__token":"13","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955847,"pid":471169,"hostname":"ubuntu","timestamp":1761500955847,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6822916666666666,"__token":"14","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955864,"pid":471169,"hostname":"ubuntu","timestamp":1761500955864,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6927083333333334,"__token":"15","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955881,"pid":471169,"hostname":"ubuntu","timestamp":1761500955881,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7239583333333334,"__token":"16","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955952,"pid":471169,"hostname":"ubuntu","timestamp":1761500955952,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7447916666666666,"__token":"17","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955973,"pid":471169,"hostname":"ubuntu","timestamp":1761500955973,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7552083333333334,"__token":"18","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500955973,"pid":471169,"hostname":"ubuntu","timestamp":1761500955973,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.765625,"__token":"19","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956226,"pid":471169,"hostname":"ubuntu","timestamp":1761500956226,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.984375,"__token":"20","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956243,"pid":471169,"hostname":"ubuntu","timestamp":1761500956243,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.9947916666666666,"__token":"21","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956277,"pid":471169,"hostname":"ubuntu","timestamp":1761500956277,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.0052083333333333,"__token":"22","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956296,"pid":471169,"hostname":"ubuntu","timestamp":1761500956296,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.015625,"__token":"23","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956312,"pid":471169,"hostname":"ubuntu","timestamp":1761500956312,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.0260416666666667,"__token":"24","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956332,"pid":471169,"hostname":"ubuntu","timestamp":1761500956332,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.046875,"__token":"25","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956344,"pid":471169,"hostname":"ubuntu","timestamp":1761500956344,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.0677083333333333,"__token":"26","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956364,"pid":471169,"hostname":"ubuntu","timestamp":1761500956364,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.109375,"__token":"27","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956377,"pid":471169,"hostname":"ubuntu","timestamp":1761500956377,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1302083333333333,"__token":"28","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956397,"pid":471169,"hostname":"ubuntu","timestamp":1761500956397,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1614583333333333,"__token":"29","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956411,"pid":471169,"hostname":"ubuntu","timestamp":1761500956411,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.171875,"__token":"30","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956430,"pid":471169,"hostname":"ubuntu","timestamp":1761500956430,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1927083333333333,"__token":"31","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956444,"pid":471169,"hostname":"ubuntu","timestamp":1761500956444,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.203125,"__token":"32","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956465,"pid":471169,"hostname":"ubuntu","timestamp":1761500956465,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2239583333333333,"__token":"33","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956480,"pid":471169,"hostname":"ubuntu","timestamp":1761500956480,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.234375,"__token":"34","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956698,"pid":471169,"hostname":"ubuntu","timestamp":1761500956698,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.546875,"__token":"35","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956710,"pid":471169,"hostname":"ubuntu","timestamp":1761500956710,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5677083333333333,"__token":"36","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956726,"pid":471169,"hostname":"ubuntu","timestamp":1761500956726,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.578125,"__token":"37","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956746,"pid":471169,"hostname":"ubuntu","timestamp":1761500956746,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5989583333333333,"__token":"38","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956780,"pid":471169,"hostname":"ubuntu","timestamp":1761500956780,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.609375,"__token":"39","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956793,"pid":471169,"hostname":"ubuntu","timestamp":1761500956793,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6197916666666667,"__token":"40","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956809,"pid":471169,"hostname":"ubuntu","timestamp":1761500956809,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.640625,"__token":"41","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500956827,"pid":471169,"hostname":"ubuntu","timestamp":1761500956827,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6510416666666667,"__token":"42","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500960434,"pid":471169,"hostname":"ubuntu","timestamp":1761500960434,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.083333333333334,"__token":"43","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500961168,"pid":471169,"hostname":"ubuntu","timestamp":1761500961168,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":11.458333333333334,"__token":"44","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500966145,"pid":471169,"hostname":"ubuntu","timestamp":1761500966145,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"START_AUDIO_PLAYBACK","seekTime":1.6510416666666667,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":11.458333333333334},"__token":"45","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","scheduleAtServerMs":1761500966333,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500972719,"pid":471169,"hostname":"ubuntu","timestamp":1761500972719,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":4.041666666666667,"__token":"46","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761500986882,"pid":471169,"hostname":"ubuntu","timestamp":1761500986882,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"47","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038132,"pid":471169,"hostname":"ubuntu","timestamp":1761501038132,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3958333333333335,"__token":"48","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038260,"pid":471169,"hostname":"ubuntu","timestamp":1761501038260,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3958333333333335,"__token":"49","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038275,"pid":471169,"hostname":"ubuntu","timestamp":1761501038275,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4375,"__token":"50","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038292,"pid":471169,"hostname":"ubuntu","timestamp":1761501038292,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.6458333333333335,"__token":"51","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038308,"pid":471169,"hostname":"ubuntu","timestamp":1761501038308,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.8541666666666665,"__token":"52","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038325,"pid":471169,"hostname":"ubuntu","timestamp":1761501038325,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.0208333333333335,"__token":"53","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038342,"pid":471169,"hostname":"ubuntu","timestamp":1761501038342,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.0625,"__token":"54","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038358,"pid":471169,"hostname":"ubuntu","timestamp":1761501038358,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.1458333333333335,"__token":"55","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038375,"pid":471169,"hostname":"ubuntu","timestamp":1761501038375,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.2708333333333335,"__token":"56","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038458,"pid":471169,"hostname":"ubuntu","timestamp":1761501038458,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3125,"__token":"57","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038475,"pid":471169,"hostname":"ubuntu","timestamp":1761501038475,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3125,"__token":"58","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038492,"pid":471169,"hostname":"ubuntu","timestamp":1761501038492,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3958333333333335,"__token":"59","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038636,"pid":471169,"hostname":"ubuntu","timestamp":1761501038636,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.4375,"__token":"60","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501038693,"pid":471169,"hostname":"ubuntu","timestamp":1761501038693,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.5208333333333335,"__token":"61","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039020,"pid":471169,"hostname":"ubuntu","timestamp":1761501039020,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.5208333333333335,"__token":"62","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039036,"pid":471169,"hostname":"ubuntu","timestamp":1761501039036,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.4375,"__token":"63","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039044,"pid":471169,"hostname":"ubuntu","timestamp":1761501039044,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3958333333333335,"__token":"64","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039060,"pid":471169,"hostname":"ubuntu","timestamp":1761501039060,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3541666666666665,"__token":"65","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039076,"pid":471169,"hostname":"ubuntu","timestamp":1761501039076,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.3125,"__token":"66","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039092,"pid":471169,"hostname":"ubuntu","timestamp":1761501039092,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.2708333333333335,"__token":"67","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039113,"pid":471169,"hostname":"ubuntu","timestamp":1761501039113,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":3.0625,"__token":"68","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039125,"pid":471169,"hostname":"ubuntu","timestamp":1761501039125,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.9375,"__token":"69","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039142,"pid":471169,"hostname":"ubuntu","timestamp":1761501039142,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.7708333333333335,"__token":"70","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039158,"pid":471169,"hostname":"ubuntu","timestamp":1761501039158,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.6458333333333335,"__token":"71","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039175,"pid":471169,"hostname":"ubuntu","timestamp":1761501039175,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4791666666666665,"__token":"72","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039191,"pid":471169,"hostname":"ubuntu","timestamp":1761501039191,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.2291666666666665,"__token":"73","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039208,"pid":471169,"hostname":"ubuntu","timestamp":1761501039208,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.1041666666666665,"__token":"74","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039228,"pid":471169,"hostname":"ubuntu","timestamp":1761501039228,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.9375,"__token":"75","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039242,"pid":471169,"hostname":"ubuntu","timestamp":1761501039242,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.8125,"__token":"76","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039260,"pid":471169,"hostname":"ubuntu","timestamp":1761501039260,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.7291666666666667,"__token":"77","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039275,"pid":471169,"hostname":"ubuntu","timestamp":1761501039275,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6875,"__token":"78","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039295,"pid":471169,"hostname":"ubuntu","timestamp":1761501039295,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6041666666666667,"__token":"79","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039309,"pid":471169,"hostname":"ubuntu","timestamp":1761501039309,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5208333333333333,"__token":"80","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039327,"pid":471169,"hostname":"ubuntu","timestamp":1761501039327,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4791666666666667,"__token":"81","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039342,"pid":471169,"hostname":"ubuntu","timestamp":1761501039342,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4375,"__token":"82","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039358,"pid":471169,"hostname":"ubuntu","timestamp":1761501039358,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3541666666666667,"__token":"83","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039375,"pid":471169,"hostname":"ubuntu","timestamp":1761501039375,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3125,"__token":"84","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039395,"pid":471169,"hostname":"ubuntu","timestamp":1761501039395,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2708333333333333,"__token":"85","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039408,"pid":471169,"hostname":"ubuntu","timestamp":1761501039408,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2291666666666667,"__token":"86","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039460,"pid":471169,"hostname":"ubuntu","timestamp":1761501039460,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1875,"__token":"87","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039636,"pid":471169,"hostname":"ubuntu","timestamp":1761501039636,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2291666666666667,"__token":"88","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039643,"pid":471169,"hostname":"ubuntu","timestamp":1761501039643,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3125,"__token":"89","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039661,"pid":471169,"hostname":"ubuntu","timestamp":1761501039661,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3541666666666667,"__token":"90","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039692,"pid":471169,"hostname":"ubuntu","timestamp":1761501039692,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4375,"__token":"91","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039900,"pid":471169,"hostname":"ubuntu","timestamp":1761501039900,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4791666666666667,"__token":"92","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039958,"pid":471169,"hostname":"ubuntu","timestamp":1761501039958,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5625,"__token":"93","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501039980,"pid":471169,"hostname":"ubuntu","timestamp":1761501039980,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5625,"__token":"94","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501040009,"pid":471169,"hostname":"ubuntu","timestamp":1761501040008,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6041666666666667,"__token":"95","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501040025,"pid":471169,"hostname":"ubuntu","timestamp":1761501040025,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6458333333333333,"__token":"96","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501040041,"pid":471169,"hostname":"ubuntu","timestamp":1761501040041,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6875,"__token":"97","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501040724,"pid":471169,"hostname":"ubuntu","timestamp":1761501040724,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6875,"__token":"98","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041068,"pid":471169,"hostname":"ubuntu","timestamp":1761501041068,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.7291666666666667,"__token":"99","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041084,"pid":471169,"hostname":"ubuntu","timestamp":1761501041084,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.7708333333333333,"__token":"100","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041108,"pid":471169,"hostname":"ubuntu","timestamp":1761501041108,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.8125,"__token":"101","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041125,"pid":471169,"hostname":"ubuntu","timestamp":1761501041125,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.9375,"__token":"102","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041141,"pid":471169,"hostname":"ubuntu","timestamp":1761501041141,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.0625,"__token":"103","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041158,"pid":471169,"hostname":"ubuntu","timestamp":1761501041158,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.1458333333333335,"__token":"104","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041175,"pid":471169,"hostname":"ubuntu","timestamp":1761501041175,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.1875,"__token":"105","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041191,"pid":471169,"hostname":"ubuntu","timestamp":1761501041191,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.2708333333333335,"__token":"106","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041209,"pid":471169,"hostname":"ubuntu","timestamp":1761501041209,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3541666666666665,"__token":"107","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041226,"pid":471169,"hostname":"ubuntu","timestamp":1761501041226,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4791666666666665,"__token":"108","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041241,"pid":471169,"hostname":"ubuntu","timestamp":1761501041241,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.5208333333333335,"__token":"109","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041291,"pid":471169,"hostname":"ubuntu","timestamp":1761501041291,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.5625,"__token":"110","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041500,"pid":471169,"hostname":"ubuntu","timestamp":1761501041500,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.5208333333333335,"__token":"111","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041508,"pid":471169,"hostname":"ubuntu","timestamp":1761501041508,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4375,"__token":"112","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041524,"pid":471169,"hostname":"ubuntu","timestamp":1761501041524,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3541666666666665,"__token":"113","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041547,"pid":471169,"hostname":"ubuntu","timestamp":1761501041547,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.0625,"__token":"114","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041582,"pid":471169,"hostname":"ubuntu","timestamp":1761501041582,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.8541666666666667,"__token":"115","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041599,"pid":471169,"hostname":"ubuntu","timestamp":1761501041599,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5625,"__token":"116","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041652,"pid":471169,"hostname":"ubuntu","timestamp":1761501041652,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3541666666666667,"__token":"117","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041652,"pid":471169,"hostname":"ubuntu","timestamp":1761501041652,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.1041666666666667,"__token":"118","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041652,"pid":471169,"hostname":"ubuntu","timestamp":1761501041652,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.9791666666666666,"__token":"119","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041652,"pid":471169,"hostname":"ubuntu","timestamp":1761501041652,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.8541666666666666,"__token":"120","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041685,"pid":471169,"hostname":"ubuntu","timestamp":1761501041685,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7708333333333334,"__token":"121","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041686,"pid":471169,"hostname":"ubuntu","timestamp":1761501041686,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.7291666666666666,"__token":"122","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041690,"pid":471169,"hostname":"ubuntu","timestamp":1761501041690,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6041666666666666,"__token":"123","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041708,"pid":471169,"hostname":"ubuntu","timestamp":1761501041708,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.4791666666666667,"__token":"124","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041725,"pid":471169,"hostname":"ubuntu","timestamp":1761501041725,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.2708333333333333,"__token":"125","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041741,"pid":471169,"hostname":"ubuntu","timestamp":1761501041741,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.10416666666666667,"__token":"126","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041758,"pid":471169,"hostname":"ubuntu","timestamp":1761501041758,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.020833333333333332,"__token":"127","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041775,"pid":471169,"hostname":"ubuntu","timestamp":1761501041775,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.10416666666666667,"__token":"128","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041791,"pid":471169,"hostname":"ubuntu","timestamp":1761501041791,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.3125,"__token":"129","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041807,"pid":471169,"hostname":"ubuntu","timestamp":1761501041807,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.4375,"__token":"130","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041825,"pid":471169,"hostname":"ubuntu","timestamp":1761501041825,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.5208333333333334,"__token":"131","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041841,"pid":471169,"hostname":"ubuntu","timestamp":1761501041841,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.5625,"__token":"132","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041858,"pid":471169,"hostname":"ubuntu","timestamp":1761501041858,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.6041666666666666,"__token":"133","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041907,"pid":471169,"hostname":"ubuntu","timestamp":1761501041907,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.6458333333333334,"__token":"134","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501041925,"pid":471169,"hostname":"ubuntu","timestamp":1761501041925,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.6875,"__token":"135","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042041,"pid":471169,"hostname":"ubuntu","timestamp":1761501042041,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.3958333333333333,"__token":"136","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042057,"pid":471169,"hostname":"ubuntu","timestamp":1761501042057,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":-0.10416666666666667,"__token":"137","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042076,"pid":471169,"hostname":"ubuntu","timestamp":1761501042076,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.10416666666666667,"__token":"138","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042091,"pid":471169,"hostname":"ubuntu","timestamp":1761501042091,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.2708333333333333,"__token":"139","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042108,"pid":471169,"hostname":"ubuntu","timestamp":1761501042108,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.4375,"__token":"140","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042124,"pid":471169,"hostname":"ubuntu","timestamp":1761501042124,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.6458333333333334,"__token":"141","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042141,"pid":471169,"hostname":"ubuntu","timestamp":1761501042141,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":0.8125,"__token":"142","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042158,"pid":471169,"hostname":"ubuntu","timestamp":1761501042158,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.0208333333333333,"__token":"143","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042175,"pid":471169,"hostname":"ubuntu","timestamp":1761501042175,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.2291666666666667,"__token":"144","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042191,"pid":471169,"hostname":"ubuntu","timestamp":1761501042191,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.3958333333333333,"__token":"145","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042208,"pid":471169,"hostname":"ubuntu","timestamp":1761501042208,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.4375,"__token":"146","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042225,"pid":471169,"hostname":"ubuntu","timestamp":1761501042225,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5208333333333333,"__token":"147","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042241,"pid":471169,"hostname":"ubuntu","timestamp":1761501042241,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.5625,"__token":"148","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042258,"pid":471169,"hostname":"ubuntu","timestamp":1761501042258,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.6458333333333333,"__token":"149","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042291,"pid":471169,"hostname":"ubuntu","timestamp":1761501042291,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.7708333333333333,"__token":"150","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042307,"pid":471169,"hostname":"ubuntu","timestamp":1761501042307,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":1.8541666666666667,"__token":"151","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042325,"pid":471169,"hostname":"ubuntu","timestamp":1761501042325,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.0625,"__token":"152","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042341,"pid":471169,"hostname":"ubuntu","timestamp":1761501042341,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.1875,"__token":"153","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042358,"pid":471169,"hostname":"ubuntu","timestamp":1761501042358,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.2291666666666665,"__token":"154","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042375,"pid":471169,"hostname":"ubuntu","timestamp":1761501042375,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3541666666666665,"__token":"155","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042393,"pid":471169,"hostname":"ubuntu","timestamp":1761501042393,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.3958333333333335,"__token":"156","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042408,"pid":471169,"hostname":"ubuntu","timestamp":1761501042408,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4375,"__token":"157","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042426,"pid":471169,"hostname":"ubuntu","timestamp":1761501042426,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.4791666666666665,"__token":"158","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042457,"pid":471169,"hostname":"ubuntu","timestamp":1761501042457,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.5625,"__token":"159","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042475,"pid":471169,"hostname":"ubuntu","timestamp":1761501042475,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.6041666666666665,"__token":"160","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501042491,"pid":471169,"hostname":"ubuntu","timestamp":1761501042491,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_SEEK_TIME","seekTime":2.7291666666666665,"__token":"161","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501044372,"pid":471169,"hostname":"ubuntu","timestamp":1761501044372,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":2.125,"__token":"162","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501045461,"pid":471169,"hostname":"ubuntu","timestamp":1761501045461,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"163","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501047037,"pid":471169,"hostname":"ubuntu","timestamp":1761501047037,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"164","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501047524,"pid":471169,"hostname":"ubuntu","timestamp":1761501047524,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"165","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501047989,"pid":471169,"hostname":"ubuntu","timestamp":1761501047989,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"166","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501048364,"pid":471169,"hostname":"ubuntu","timestamp":1761501048364,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"167","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501049589,"pid":471169,"hostname":"ubuntu","timestamp":1761501049589,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"START_AUDIO_PLAYBACK","seekTime":2.7291666666666665,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667},"__token":"168","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","scheduleAtServerMs":1761501049766,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501054406,"pid":471169,"hostname":"ubuntu","timestamp":1761501054406,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"169","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501106392,"pid":471169,"hostname":"ubuntu","timestamp":1761501106392,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500741617_rpz0rna","startTimeInSeconds":0.3333333333333333},"__token":"170","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501107695,"pid":471169,"hostname":"ubuntu","timestamp":1761501107695,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":3.5},"__token":"171","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501108608,"pid":471169,"hostname":"ubuntu","timestamp":1761501108608,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":2.333333333333333},"__token":"172","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501110159,"pid":471169,"hostname":"ubuntu","timestamp":1761501110159,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"173","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501110911,"pid":471169,"hostname":"ubuntu","timestamp":1761501110911,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667},"__token":"174","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","scheduleAtServerMs":1761501111099,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501112503,"pid":471169,"hostname":"ubuntu","timestamp":1761501112503,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":false,"__token":"175","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501113039,"pid":471169,"hostname":"ubuntu","timestamp":1761501113039,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"START_AUDIO_PLAYBACK","seekTime":1.410666666666657,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667},"__token":"176","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","scheduleAtServerMs":1761501113226,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501113745,"pid":471169,"hostname":"ubuntu","timestamp":1761501113745,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":false,"__token":"177","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501125082,"pid":471169,"hostname":"ubuntu","timestamp":1761501125082,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"9","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501125697,"pid":471169,"hostname":"ubuntu","timestamp":1761501125697,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"10","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501127306,"pid":471169,"hostname":"ubuntu","timestamp":1761501127306,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"11","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501127969,"pid":471169,"hostname":"ubuntu","timestamp":1761501127969,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"12","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501129993,"pid":471169,"hostname":"ubuntu","timestamp":1761501129993,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"13","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501130825,"pid":471169,"hostname":"ubuntu","timestamp":1761501130825,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.791666666666667,"__token":"14","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501155098,"pid":471169,"hostname":"ubuntu","timestamp":1761501155098,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":0.6666666666666666},"__token":"15","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501155947,"pid":471169,"hostname":"ubuntu","timestamp":1761501155947,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"trackId":"track_1761500380591_lfbbzcl","startTimeInSeconds":0},"__token":"16","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501162231,"pid":471169,"hostname":"ubuntu","timestamp":1761501162231,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/break01.ogg","trackId":"track_1761500741617_rpz0rna","startTimeInSeconds":7.333333333333333,"clipId":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","name":"break01.ogg","__token":"17","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501177898,"pid":471169,"hostname":"ubuntu","timestamp":1761501177898,"socketId":"nOvgbJjfga1G8ZlRAAAT","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"nOvgbJjfga1G8ZlRAAAT","__senderName":"Alicer-nOvg"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501177924,"pid":471169,"hostname":"ubuntu","timestamp":1761501177924,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"nOvgbJjfga1G8ZlRAAAT","__token":"178","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501177925,"pid":471169,"hostname":"ubuntu","timestamp":1761501177925,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"nOvgbJjfga1G8ZlRAAAT","__token":"18","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501232502,"pid":471169,"hostname":"ubuntu","timestamp":1761501232502,"socketId":"Ivy-iYbsX-CKPC01AAAV","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Ivy-iYbsX-CKPC01AAAV","__senderName":"Alicer-Ivy-"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501232528,"pid":471169,"hostname":"ubuntu","timestamp":1761501232528,"socketId":"_nekebkJ_WyceqQTAAAR","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"Ivy-iYbsX-CKPC01AAAV","__token":"179","__senderId":"_nekebkJ_WyceqQTAAAR","__senderName":"Alicer-_nek"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501232529,"pid":471169,"hostname":"ubuntu","timestamp":1761501232529,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"Ivy-iYbsX-CKPC01AAAV","__token":"19","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501534373,"pid":471169,"hostname":"ubuntu","timestamp":1761501534373,"socketId":"vISwAgZtNfBFhOXDAAAX","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"vISwAgZtNfBFhOXDAAAX","__senderName":"Alicer-vISw"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501534399,"pid":471169,"hostname":"ubuntu","timestamp":1761501534399,"socketId":"Ivy-iYbsX-CKPC01AAAV","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"vISwAgZtNfBFhOXDAAAX","__token":"2","__senderId":"Ivy-iYbsX-CKPC01AAAV","__senderName":"Alicer-Ivy-"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501534400,"pid":471169,"hostname":"ubuntu","timestamp":1761501534400,"socketId":"UD9ArAYOA2pDTalvAAAP","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9519166666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4391875,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"vISwAgZtNfBFhOXDAAAX","__token":"20","__senderId":"UD9ArAYOA2pDTalvAAAP","__senderName":"Alicer-UD9A"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501587457,"pid":471169,"hostname":"ubuntu","timestamp":1761501587457,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501587482,"pid":471169,"hostname":"ubuntu","timestamp":1761501587482,"socketId":"vISwAgZtNfBFhOXDAAAX","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"IoQs_u3DI-tAWSgQAAAZ","__token":"2","__senderId":"vISwAgZtNfBFhOXDAAAX","__senderName":"Alicer-vISw"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501587484,"pid":471169,"hostname":"ubuntu","timestamp":1761501587484,"socketId":"Ivy-iYbsX-CKPC01AAAV","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"IoQs_u3DI-tAWSgQAAAZ","__token":"3","__senderId":"Ivy-iYbsX-CKPC01AAAV","__senderName":"Alicer-Ivy-"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501591164,"pid":471169,"hostname":"ubuntu","timestamp":1761501591164,"socketId":"vISwAgZtNfBFhOXDAAAX","action":{"type":"SET_SEEK_TIME","seekTime":1.8177083333333333,"__token":"3","__senderId":"vISwAgZtNfBFhOXDAAAX","__senderName":"Alicer-vISw","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501591164,"pid":471169,"hostname":"ubuntu","timestamp":1761501591164,"socketId":"vISwAgZtNfBFhOXDAAAX","action":{"type":"SET_SEEK_TIME","seekTime":1.8177083333333333,"__token":"4","__senderId":"vISwAgZtNfBFhOXDAAAX","__senderName":"Alicer-vISw","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501593094,"pid":471169,"hostname":"ubuntu","timestamp":1761501593094,"socketId":"w3Fsa6PHR6dDYPGRAAAb","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"w3Fsa6PHR6dDYPGRAAAb","__senderName":"Alicer-w3Fs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501593120,"pid":471169,"hostname":"ubuntu","timestamp":1761501593120,"socketId":"Ivy-iYbsX-CKPC01AAAV","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"w3Fsa6PHR6dDYPGRAAAb","__token":"4","__senderId":"Ivy-iYbsX-CKPC01AAAV","__senderName":"Alicer-Ivy-"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501593121,"pid":471169,"hostname":"ubuntu","timestamp":1761501593121,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"w3Fsa6PHR6dDYPGRAAAb","__token":"2","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501617780,"pid":471169,"hostname":"ubuntu","timestamp":1761501617780,"socketId":"l559LBAgtdF-AKZQAAAd","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"l559LBAgtdF-AKZQAAAd","__senderName":"Alicer-l559"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501617846,"pid":471169,"hostname":"ubuntu","timestamp":1761501617846,"socketId":"w3Fsa6PHR6dDYPGRAAAb","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"l559LBAgtdF-AKZQAAAd","__token":"2","__senderId":"w3Fsa6PHR6dDYPGRAAAb","__senderName":"Alicer-w3Fs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501617847,"pid":471169,"hostname":"ubuntu","timestamp":1761501617847,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"l559LBAgtdF-AKZQAAAd","__token":"3","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501650662,"pid":471169,"hostname":"ubuntu","timestamp":1761501650662,"socketId":"l559LBAgtdF-AKZQAAAd","action":{"type":"SET_SEEK_TIME","seekTime":9.692708333333334,"__token":"2","__senderId":"l559LBAgtdF-AKZQAAAd","__senderName":"Alicer-l559","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501650666,"pid":471169,"hostname":"ubuntu","timestamp":1761501650666,"socketId":"l559LBAgtdF-AKZQAAAd","action":{"type":"SET_SEEK_TIME","seekTime":9.692708333333334,"__token":"3","__senderId":"l559LBAgtdF-AKZQAAAd","__senderName":"Alicer-l559","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501872188,"pid":471169,"hostname":"ubuntu","timestamp":1761501872188,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501872216,"pid":471169,"hostname":"ubuntu","timestamp":1761501872216,"socketId":"w3Fsa6PHR6dDYPGRAAAb","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"h7UrKcXDpNY6Bl68AAAf","__token":"3","__senderId":"w3Fsa6PHR6dDYPGRAAAb","__senderName":"Alicer-w3Fs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501872218,"pid":471169,"hostname":"ubuntu","timestamp":1761501872218,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"h7UrKcXDpNY6Bl68AAAf","__token":"4","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501874557,"pid":471169,"hostname":"ubuntu","timestamp":1761501874557,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"2","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501875317,"pid":471169,"hostname":"ubuntu","timestamp":1761501875317,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"3","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501875997,"pid":471169,"hostname":"ubuntu","timestamp":1761501875997,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"4","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501878670,"pid":471169,"hostname":"ubuntu","timestamp":1761501878670,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"5","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501879397,"pid":471169,"hostname":"ubuntu","timestamp":1761501879397,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"6","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501879917,"pid":471169,"hostname":"ubuntu","timestamp":1761501879917,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"7","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501880581,"pid":471169,"hostname":"ubuntu","timestamp":1761501880581,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"8","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501881653,"pid":471169,"hostname":"ubuntu","timestamp":1761501881653,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"9","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501882029,"pid":471169,"hostname":"ubuntu","timestamp":1761501882029,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"10","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501884317,"pid":471169,"hostname":"ubuntu","timestamp":1761501884317,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"11","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501884709,"pid":471169,"hostname":"ubuntu","timestamp":1761501884709,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"12","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885189,"pid":471169,"hostname":"ubuntu","timestamp":1761501885189,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.984375,"__token":"13","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885501,"pid":471169,"hostname":"ubuntu","timestamp":1761501885501,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.973958333333333,"__token":"14","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885517,"pid":471169,"hostname":"ubuntu","timestamp":1761501885517,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.953125,"__token":"15","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885536,"pid":471169,"hostname":"ubuntu","timestamp":1761501885536,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.942708333333333,"__token":"16","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885551,"pid":471169,"hostname":"ubuntu","timestamp":1761501885551,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.932291666666667,"__token":"17","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885570,"pid":471169,"hostname":"ubuntu","timestamp":1761501885570,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.890625,"__token":"18","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885604,"pid":471169,"hostname":"ubuntu","timestamp":1761501885604,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.869791666666667,"__token":"19","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885618,"pid":471169,"hostname":"ubuntu","timestamp":1761501885618,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.838541666666667,"__token":"20","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885638,"pid":471169,"hostname":"ubuntu","timestamp":1761501885638,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.828125,"__token":"21","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885654,"pid":471169,"hostname":"ubuntu","timestamp":1761501885654,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.796875,"__token":"22","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885671,"pid":471169,"hostname":"ubuntu","timestamp":1761501885671,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.776041666666667,"__token":"23","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885687,"pid":471169,"hostname":"ubuntu","timestamp":1761501885687,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.755208333333333,"__token":"24","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885704,"pid":471169,"hostname":"ubuntu","timestamp":1761501885704,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.734375,"__token":"25","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885738,"pid":471169,"hostname":"ubuntu","timestamp":1761501885738,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.713541666666667,"__token":"26","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885751,"pid":471169,"hostname":"ubuntu","timestamp":1761501885751,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.703125,"__token":"27","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885771,"pid":471169,"hostname":"ubuntu","timestamp":1761501885771,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.682291666666667,"__token":"28","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885788,"pid":471169,"hostname":"ubuntu","timestamp":1761501885788,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.671875,"__token":"29","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885804,"pid":471169,"hostname":"ubuntu","timestamp":1761501885804,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.630208333333333,"__token":"30","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885821,"pid":471169,"hostname":"ubuntu","timestamp":1761501885821,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.598958333333333,"__token":"31","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885838,"pid":471169,"hostname":"ubuntu","timestamp":1761501885838,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.536458333333333,"__token":"32","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885855,"pid":471169,"hostname":"ubuntu","timestamp":1761501885855,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.515625,"__token":"33","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885871,"pid":471169,"hostname":"ubuntu","timestamp":1761501885871,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.484375,"__token":"34","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885890,"pid":471169,"hostname":"ubuntu","timestamp":1761501885890,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.473958333333333,"__token":"35","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885905,"pid":471169,"hostname":"ubuntu","timestamp":1761501885905,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.463541666666667,"__token":"36","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885921,"pid":471169,"hostname":"ubuntu","timestamp":1761501885921,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.432291666666667,"__token":"37","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885941,"pid":471169,"hostname":"ubuntu","timestamp":1761501885941,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.401041666666667,"__token":"38","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885959,"pid":471169,"hostname":"ubuntu","timestamp":1761501885959,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.369791666666667,"__token":"39","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885968,"pid":471169,"hostname":"ubuntu","timestamp":1761501885968,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.359375,"__token":"40","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501885987,"pid":471169,"hostname":"ubuntu","timestamp":1761501885987,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.338541666666667,"__token":"41","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886001,"pid":471169,"hostname":"ubuntu","timestamp":1761501886001,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.328125,"__token":"42","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886020,"pid":471169,"hostname":"ubuntu","timestamp":1761501886020,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.296875,"__token":"43","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886034,"pid":471169,"hostname":"ubuntu","timestamp":1761501886034,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.276041666666667,"__token":"44","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886051,"pid":471169,"hostname":"ubuntu","timestamp":1761501886051,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.223958333333333,"__token":"45","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886068,"pid":471169,"hostname":"ubuntu","timestamp":1761501886068,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.171875,"__token":"46","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886088,"pid":471169,"hostname":"ubuntu","timestamp":1761501886088,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.151041666666667,"__token":"47","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886105,"pid":471169,"hostname":"ubuntu","timestamp":1761501886105,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.140625,"__token":"48","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886121,"pid":471169,"hostname":"ubuntu","timestamp":1761501886121,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.130208333333333,"__token":"49","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886167,"pid":471169,"hostname":"ubuntu","timestamp":1761501886167,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.119791666666667,"__token":"50","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886204,"pid":471169,"hostname":"ubuntu","timestamp":1761501886204,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.109375,"__token":"51","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886228,"pid":471169,"hostname":"ubuntu","timestamp":1761501886228,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.098958333333333,"__token":"52","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886267,"pid":471169,"hostname":"ubuntu","timestamp":1761501886267,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.088541666666667,"__token":"53","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886283,"pid":471169,"hostname":"ubuntu","timestamp":1761501886283,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.078125,"__token":"54","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886304,"pid":471169,"hostname":"ubuntu","timestamp":1761501886304,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.067708333333333,"__token":"55","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886321,"pid":471169,"hostname":"ubuntu","timestamp":1761501886321,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.057291666666667,"__token":"56","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886336,"pid":471169,"hostname":"ubuntu","timestamp":1761501886336,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.046875,"__token":"57","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886352,"pid":471169,"hostname":"ubuntu","timestamp":1761501886352,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.036458333333333,"__token":"58","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886372,"pid":471169,"hostname":"ubuntu","timestamp":1761501886372,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.026041666666667,"__token":"59","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886387,"pid":471169,"hostname":"ubuntu","timestamp":1761501886387,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.015625,"__token":"60","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886404,"pid":471169,"hostname":"ubuntu","timestamp":1761501886404,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.005208333333333,"__token":"61","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886420,"pid":471169,"hostname":"ubuntu","timestamp":1761501886420,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.984375,"__token":"62","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886437,"pid":471169,"hostname":"ubuntu","timestamp":1761501886437,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.963541666666667,"__token":"63","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886454,"pid":471169,"hostname":"ubuntu","timestamp":1761501886454,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.942708333333333,"__token":"64","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886485,"pid":471169,"hostname":"ubuntu","timestamp":1761501886485,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.911458333333333,"__token":"65","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886504,"pid":471169,"hostname":"ubuntu","timestamp":1761501886504,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.828125,"__token":"66","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886517,"pid":471169,"hostname":"ubuntu","timestamp":1761501886517,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.703125,"__token":"67","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886539,"pid":471169,"hostname":"ubuntu","timestamp":1761501886539,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.380208333333333,"__token":"68","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886552,"pid":471169,"hostname":"ubuntu","timestamp":1761501886552,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":4.046875,"__token":"69","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886571,"pid":471169,"hostname":"ubuntu","timestamp":1761501886571,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.8072916666666665,"__token":"70","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886629,"pid":471169,"hostname":"ubuntu","timestamp":1761501886629,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.5989583333333335,"__token":"71","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886630,"pid":471169,"hostname":"ubuntu","timestamp":1761501886629,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.4322916666666665,"__token":"72","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886630,"pid":471169,"hostname":"ubuntu","timestamp":1761501886630,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.359375,"__token":"73","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886635,"pid":471169,"hostname":"ubuntu","timestamp":1761501886635,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.3385416666666665,"__token":"74","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886651,"pid":471169,"hostname":"ubuntu","timestamp":1761501886651,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.3177083333333335,"__token":"75","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886680,"pid":471169,"hostname":"ubuntu","timestamp":1761501886680,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.2864583333333335,"__token":"76","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886692,"pid":471169,"hostname":"ubuntu","timestamp":1761501886692,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.1927083333333335,"__token":"77","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886702,"pid":471169,"hostname":"ubuntu","timestamp":1761501886702,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":3.0989583333333335,"__token":"78","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886725,"pid":471169,"hostname":"ubuntu","timestamp":1761501886725,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.953125,"__token":"79","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886739,"pid":471169,"hostname":"ubuntu","timestamp":1761501886739,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.8385416666666665,"__token":"80","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886756,"pid":471169,"hostname":"ubuntu","timestamp":1761501886756,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.734375,"__token":"81","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886773,"pid":471169,"hostname":"ubuntu","timestamp":1761501886773,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.640625,"__token":"82","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886787,"pid":471169,"hostname":"ubuntu","timestamp":1761501886787,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.5677083333333335,"__token":"83","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886804,"pid":471169,"hostname":"ubuntu","timestamp":1761501886804,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.4947916666666665,"__token":"84","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886822,"pid":471169,"hostname":"ubuntu","timestamp":1761501886822,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.4427083333333335,"__token":"85","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886837,"pid":471169,"hostname":"ubuntu","timestamp":1761501886837,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.4010416666666665,"__token":"86","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886856,"pid":471169,"hostname":"ubuntu","timestamp":1761501886856,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.328125,"__token":"87","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886871,"pid":471169,"hostname":"ubuntu","timestamp":1761501886871,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.2447916666666665,"__token":"88","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886887,"pid":471169,"hostname":"ubuntu","timestamp":1761501886887,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":2.0260416666666665,"__token":"89","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886906,"pid":471169,"hostname":"ubuntu","timestamp":1761501886906,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.9947916666666667,"__token":"90","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886922,"pid":471169,"hostname":"ubuntu","timestamp":1761501886922,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.984375,"__token":"91","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886939,"pid":471169,"hostname":"ubuntu","timestamp":1761501886939,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.9739583333333333,"__token":"92","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501886984,"pid":471169,"hostname":"ubuntu","timestamp":1761501886984,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.9635416666666667,"__token":"93","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887100,"pid":471169,"hostname":"ubuntu","timestamp":1761501887100,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.9010416666666667,"__token":"94","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887117,"pid":471169,"hostname":"ubuntu","timestamp":1761501887117,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.859375,"__token":"95","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887134,"pid":471169,"hostname":"ubuntu","timestamp":1761501887134,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.8385416666666667,"__token":"96","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887150,"pid":471169,"hostname":"ubuntu","timestamp":1761501887150,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.828125,"__token":"97","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887171,"pid":471169,"hostname":"ubuntu","timestamp":1761501887171,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.796875,"__token":"98","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887187,"pid":471169,"hostname":"ubuntu","timestamp":1761501887187,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.765625,"__token":"99","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887201,"pid":471169,"hostname":"ubuntu","timestamp":1761501887201,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.6614583333333333,"__token":"100","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887219,"pid":471169,"hostname":"ubuntu","timestamp":1761501887219,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.515625,"__token":"101","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887235,"pid":471169,"hostname":"ubuntu","timestamp":1761501887235,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.4114583333333333,"__token":"102","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887254,"pid":471169,"hostname":"ubuntu","timestamp":1761501887254,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.3802083333333333,"__token":"103","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887279,"pid":471169,"hostname":"ubuntu","timestamp":1761501887278,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.3385416666666667,"__token":"104","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887300,"pid":471169,"hostname":"ubuntu","timestamp":1761501887300,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.3177083333333333,"__token":"105","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887317,"pid":471169,"hostname":"ubuntu","timestamp":1761501887317,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.2447916666666667,"__token":"106","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887333,"pid":471169,"hostname":"ubuntu","timestamp":1761501887333,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.140625,"__token":"107","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887354,"pid":471169,"hostname":"ubuntu","timestamp":1761501887354,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":1.015625,"__token":"108","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887371,"pid":471169,"hostname":"ubuntu","timestamp":1761501887371,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.9114583333333334,"__token":"109","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887389,"pid":471169,"hostname":"ubuntu","timestamp":1761501887389,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.828125,"__token":"110","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887404,"pid":471169,"hostname":"ubuntu","timestamp":1761501887404,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.6822916666666666,"__token":"111","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887417,"pid":471169,"hostname":"ubuntu","timestamp":1761501887417,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.546875,"__token":"112","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887439,"pid":471169,"hostname":"ubuntu","timestamp":1761501887439,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.4322916666666667,"__token":"113","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887454,"pid":471169,"hostname":"ubuntu","timestamp":1761501887454,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.3177083333333333,"__token":"114","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887471,"pid":471169,"hostname":"ubuntu","timestamp":1761501887471,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.19270833333333334,"__token":"115","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887488,"pid":471169,"hostname":"ubuntu","timestamp":1761501887488,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.08854166666666667,"__token":"116","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887504,"pid":471169,"hostname":"ubuntu","timestamp":1761501887504,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.026041666666666668,"__token":"117","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501887520,"pid":471169,"hostname":"ubuntu","timestamp":1761501887520,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":0.015625,"__token":"118","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501890204,"pid":471169,"hostname":"ubuntu","timestamp":1761501890204,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0.015625,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":8},"__token":"119","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","scheduleAtServerMs":1761501890391,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501893484,"pid":471169,"hostname":"ubuntu","timestamp":1761501893484,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.942708333333333,"__token":"120","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501909269,"pid":471169,"hostname":"ubuntu","timestamp":1761501909269,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"121","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501912013,"pid":471169,"hostname":"ubuntu","timestamp":1761501912013,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"122","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501913470,"pid":471169,"hostname":"ubuntu","timestamp":1761501913470,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"123","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501941759,"pid":471169,"hostname":"ubuntu","timestamp":1761501941759,"socketId":"f42j1xbeDna3iPu6AAAh","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"f42j1xbeDna3iPu6AAAh","__senderName":"Alicer-f42j"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501941785,"pid":471169,"hostname":"ubuntu","timestamp":1761501941785,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"f42j1xbeDna3iPu6AAAh","__token":"124","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501941787,"pid":471169,"hostname":"ubuntu","timestamp":1761501941787,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"f42j1xbeDna3iPu6AAAh","__token":"5","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501946014,"pid":471169,"hostname":"ubuntu","timestamp":1761501946014,"socketId":"61h4jzJh_gwDlb1bAAAj","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"61h4jzJh_gwDlb1bAAAj","__senderName":"Alicer-61h4"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501946041,"pid":471169,"hostname":"ubuntu","timestamp":1761501946041,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"61h4jzJh_gwDlb1bAAAj","__token":"125","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501946042,"pid":471169,"hostname":"ubuntu","timestamp":1761501946042,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"61h4jzJh_gwDlb1bAAAj","__token":"6","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501949038,"pid":471169,"hostname":"ubuntu","timestamp":1761501949037,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501949064,"pid":471169,"hostname":"ubuntu","timestamp":1761501949064,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"AcLieHU_6weRJAcBAAAl","__token":"7","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761501949065,"pid":471169,"hostname":"ubuntu","timestamp":1761501949065,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"AcLieHU_6weRJAcBAAAl","__token":"126","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502131192,"pid":471169,"hostname":"ubuntu","timestamp":1761502131192,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":6.104166666666668,"__token":"228","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502135376,"pid":471169,"hostname":"ubuntu","timestamp":1761502135376,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":3.604166666666668,"__token":"229","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269687,"pid":471169,"hostname":"ubuntu","timestamp":1761502269687,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.692789713541667,"__token":"295","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269701,"pid":471169,"hostname":"ubuntu","timestamp":1761502269701,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.734456380208333,"__token":"296","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269721,"pid":471169,"hostname":"ubuntu","timestamp":1761502269721,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.755289713541667,"__token":"297","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269734,"pid":471169,"hostname":"ubuntu","timestamp":1761502269734,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.776123046875,"__token":"298","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269741,"pid":471169,"hostname":"ubuntu","timestamp":1761502269741,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.859456380208333,"__token":"299","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269749,"pid":471169,"hostname":"ubuntu","timestamp":1761502269749,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.859456380208333,"__token":"300","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269758,"pid":471169,"hostname":"ubuntu","timestamp":1761502269758,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.901123046875,"__token":"301","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269777,"pid":471169,"hostname":"ubuntu","timestamp":1761502269777,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":5.942789713541667,"__token":"302","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269790,"pid":471169,"hostname":"ubuntu","timestamp":1761502269790,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.005289713541667,"__token":"303","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269797,"pid":471169,"hostname":"ubuntu","timestamp":1761502269797,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.046956380208333,"__token":"304","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269810,"pid":471169,"hostname":"ubuntu","timestamp":1761502269810,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.088623046875,"__token":"305","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269816,"pid":471169,"hostname":"ubuntu","timestamp":1761502269816,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.192789713541667,"__token":"306","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269827,"pid":471169,"hostname":"ubuntu","timestamp":1761502269827,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.359456380208333,"__token":"307","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269830,"pid":471169,"hostname":"ubuntu","timestamp":1761502269830,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.401123046875,"__token":"308","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269845,"pid":471169,"hostname":"ubuntu","timestamp":1761502269845,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.421956380208333,"__token":"309","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269846,"pid":471169,"hostname":"ubuntu","timestamp":1761502269846,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.484456380208333,"__token":"310","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269863,"pid":471169,"hostname":"ubuntu","timestamp":1761502269863,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.505289713541667,"__token":"311","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269878,"pid":471169,"hostname":"ubuntu","timestamp":1761502269878,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.567789713541667,"__token":"312","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269909,"pid":471169,"hostname":"ubuntu","timestamp":1761502269909,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.588623046875,"__token":"313","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269926,"pid":471169,"hostname":"ubuntu","timestamp":1761502269926,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.630289713541667,"__token":"314","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269934,"pid":471169,"hostname":"ubuntu","timestamp":1761502269934,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.713623046875,"__token":"315","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269943,"pid":471169,"hostname":"ubuntu","timestamp":1761502269943,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.838623046875,"__token":"316","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269950,"pid":471169,"hostname":"ubuntu","timestamp":1761502269950,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.921956380208333,"__token":"317","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269961,"pid":471169,"hostname":"ubuntu","timestamp":1761502269961,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":6.984456380208333,"__token":"318","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269966,"pid":471169,"hostname":"ubuntu","timestamp":1761502269966,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.046956380208333,"__token":"319","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269975,"pid":471169,"hostname":"ubuntu","timestamp":1761502269975,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.130289713541667,"__token":"320","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269981,"pid":471169,"hostname":"ubuntu","timestamp":1761502269981,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.151123046875,"__token":"321","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502269998,"pid":471169,"hostname":"ubuntu","timestamp":1761502269998,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.213623046875,"__token":"322","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502270014,"pid":471169,"hostname":"ubuntu","timestamp":1761502270014,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.234456380208333,"__token":"323","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502270058,"pid":471169,"hostname":"ubuntu","timestamp":1761502270058,"socketId":"h7UrKcXDpNY6Bl68AAAf","action":{"type":"SET_SEEK_TIME","seekTime":7.296956380208333,"__token":"324","__senderId":"h7UrKcXDpNY6Bl68AAAf","__senderName":"Alicer-h7Ur","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502304555,"pid":471169,"hostname":"ubuntu","timestamp":1761502304555,"socketId":"x3fha2qluyVdPW2DAAAn","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"x3fha2qluyVdPW2DAAAn","__senderName":"Alicer-x3fh"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502304601,"pid":471169,"hostname":"ubuntu","timestamp":1761502304601,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"x3fha2qluyVdPW2DAAAn","__token":"8","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502304603,"pid":471169,"hostname":"ubuntu","timestamp":1761502304603,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"x3fha2qluyVdPW2DAAAn","__token":"2","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502344379,"pid":471169,"hostname":"ubuntu","timestamp":1761502344379,"socketId":"eq_5Dvch_VGgB1M5AAAr","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"eq_5Dvch_VGgB1M5AAAr","__senderName":"Alicer-eq_5"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502344412,"pid":471169,"hostname":"ubuntu","timestamp":1761502344411,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"eq_5Dvch_VGgB1M5AAAr","__token":"9","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502344413,"pid":471169,"hostname":"ubuntu","timestamp":1761502344413,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"eq_5Dvch_VGgB1M5AAAr","__token":"3","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502385456,"pid":471169,"hostname":"ubuntu","timestamp":1761502385456,"socketId":"eq_5Dvch_VGgB1M5AAAr","action":{"type":"SET_SEEK_TIME","seekTime":2.9023640950520835,"__token":"2","__senderId":"eq_5Dvch_VGgB1M5AAAr","__senderName":"Alicer-eq_5","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502385457,"pid":471169,"hostname":"ubuntu","timestamp":1761502385457,"socketId":"eq_5Dvch_VGgB1M5AAAr","action":{"type":"SET_SEEK_TIME","seekTime":2.9023640950520835,"__token":"3","__senderId":"eq_5Dvch_VGgB1M5AAAr","__senderName":"Alicer-eq_5","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502391296,"pid":471169,"hostname":"ubuntu","timestamp":1761502391296,"socketId":"AlXjZC1HrzeoKiHuAAAt","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"AlXjZC1HrzeoKiHuAAAt","__senderName":"Alicer-AlXj"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502391321,"pid":471169,"hostname":"ubuntu","timestamp":1761502391321,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"AlXjZC1HrzeoKiHuAAAt","__token":"10","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502391322,"pid":471169,"hostname":"ubuntu","timestamp":1761502391322,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"AlXjZC1HrzeoKiHuAAAt","__token":"4","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502417447,"pid":471169,"hostname":"ubuntu","timestamp":1761502417447,"socketId":"Ds1xa337oyEqdsfDAAAv","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Ds1xa337oyEqdsfDAAAv","__senderName":"Alicer-Ds1x"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502417476,"pid":471169,"hostname":"ubuntu","timestamp":1761502417476,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"Ds1xa337oyEqdsfDAAAv","__token":"11","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502417477,"pid":471169,"hostname":"ubuntu","timestamp":1761502417477,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"Ds1xa337oyEqdsfDAAAv","__token":"5","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502528257,"pid":471169,"hostname":"ubuntu","timestamp":1761502528257,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502528286,"pid":471169,"hostname":"ubuntu","timestamp":1761502528286,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"Iqq9RuP1KAuqEWVjAAA1","__token":"12","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502528287,"pid":471169,"hostname":"ubuntu","timestamp":1761502528287,"socketId":"AcLieHU_6weRJAcBAAAl","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"Iqq9RuP1KAuqEWVjAAA1","__token":"6","__senderId":"AcLieHU_6weRJAcBAAAl","__senderName":"Alicer-AcLi"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502541738,"pid":471169,"hostname":"ubuntu","timestamp":1761502541738,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502541769,"pid":471169,"hostname":"ubuntu","timestamp":1761502541769,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"WGmY5NSX0VXEutG_AAA3","__token":"2","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502541770,"pid":471169,"hostname":"ubuntu","timestamp":1761502541770,"socketId":"IoQs_u3DI-tAWSgQAAAZ","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875}]},"__target":"WGmY5NSX0VXEutG_AAA3","__token":"13","__senderId":"IoQs_u3DI-tAWSgQAAAZ","__senderName":"Alicer-IoQs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502549199,"pid":471169,"hostname":"ubuntu","timestamp":1761502549199,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502549227,"pid":471169,"hostname":"ubuntu","timestamp":1761502549227,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"GkjX18Sx-LDU6N6jAAA5","__token":"3","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502549228,"pid":471169,"hostname":"ubuntu","timestamp":1761502549228,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666}]},"__target":"GkjX18Sx-LDU6N6jAAA5","__token":"2","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502575141,"pid":471169,"hostname":"ubuntu","timestamp":1761502575141,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"5","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502575684,"pid":471169,"hostname":"ubuntu","timestamp":1761502575684,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"6","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502579653,"pid":471169,"hostname":"ubuntu","timestamp":1761502579653,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":1.895833333333333,"__token":"7","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502595245,"pid":471169,"hostname":"ubuntu","timestamp":1761502595245,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"SET_SEEK_TIME","seekTime":0.7447916666666666,"__token":"2","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502598999,"pid":471169,"hostname":"ubuntu","timestamp":1761502598999,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0.7447916666666666,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":1.895833333333333},"__token":"3","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","scheduleAtServerMs":1761502599186,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502600377,"pid":471169,"hostname":"ubuntu","timestamp":1761502600377,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502674611,"pid":471169,"hostname":"ubuntu","timestamp":1761502674611,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"cc0ad9d6-4ad5-4f35-8649-479776243df5","props":{"__operation":"slice","sliceTimeInTimeline":2.6666666666666665},"__token":"4","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502689281,"pid":471169,"hostname":"ubuntu","timestamp":1761502689281,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"5","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502690257,"pid":471169,"hostname":"ubuntu","timestamp":1761502690257,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"6","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502691369,"pid":471169,"hostname":"ubuntu","timestamp":1761502691369,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"7","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502694585,"pid":471169,"hostname":"ubuntu","timestamp":1761502694585,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":1.0208333333333333,"loopEndTime":8,"__token":"8","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502695577,"pid":471169,"hostname":"ubuntu","timestamp":1761502695577,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":2.15625,"loopEndTime":8,"__token":"9","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502698732,"pid":471169,"hostname":"ubuntu","timestamp":1761502698732,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":1.4791666666666665,"loopEndTime":8,"__token":"5","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502700619,"pid":471169,"hostname":"ubuntu","timestamp":1761502700619,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":1.0104166666666665,"loopEndTime":8,"__token":"6","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761502705099,"pid":471169,"hostname":"ubuntu","timestamp":1761502705099,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":1.3020833333333333,"loopEndTime":8,"__token":"7","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507535390,"pid":471169,"hostname":"ubuntu","timestamp":1761507535390,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":6.932291666666667,"__token":"11","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507536140,"pid":471169,"hostname":"ubuntu","timestamp":1761507536140,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":6.244791666666667,"__token":"12","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507536668,"pid":471169,"hostname":"ubuntu","timestamp":1761507536668,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":5.380208333333333,"__token":"13","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507537252,"pid":471169,"hostname":"ubuntu","timestamp":1761507537252,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":4.817708333333333,"__token":"14","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507537852,"pid":471169,"hostname":"ubuntu","timestamp":1761507537852,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":4.192708333333333,"__token":"15","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507558829,"pid":471169,"hostname":"ubuntu","timestamp":1761507558829,"socketId":"Iqq9RuP1KAuqEWVjAAA1","action":{"type":"SET_SEEK_TIME","seekTime":4.557291666666667,"__token":"16","__senderId":"Iqq9RuP1KAuqEWVjAAA1","__senderName":"Alicer-Iqq9","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507562229,"pid":471169,"hostname":"ubuntu","timestamp":1761507562229,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507562255,"pid":471169,"hostname":"ubuntu","timestamp":1761507562255,"socketId":"GkjX18Sx-LDU6N6jAAA5","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875},{"id":"66fd2139-81bf-492c-a838-4e6c3e96c511","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"2E2JyHKP_XkFxLW4AAA7","__token":"8","__senderId":"GkjX18Sx-LDU6N6jAAA5","__senderName":"Alicer-GkjX"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507562256,"pid":471169,"hostname":"ubuntu","timestamp":1761507562256,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"5ba02dc4-c490-47b4-9a83-7035d4aa5c08","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"2E2JyHKP_XkFxLW4AAA7","__token":"10","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507564850,"pid":471169,"hostname":"ubuntu","timestamp":1761507564850,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"2","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507572461,"pid":471169,"hostname":"ubuntu","timestamp":1761507572461,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507572489,"pid":471169,"hostname":"ubuntu","timestamp":1761507572489,"socketId":"WGmY5NSX0VXEutG_AAA3","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"5ba02dc4-c490-47b4-9a83-7035d4aa5c08","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"W2Ey9VSpXkEXXSAoAAA9","__token":"11","__senderId":"WGmY5NSX0VXEutG_AAA3","__senderName":"Alicer-WGmY"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507572490,"pid":471169,"hostname":"ubuntu","timestamp":1761507572490,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"66fd2139-81bf-492c-a838-4e6c3e96c511","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"W2Ey9VSpXkEXXSAoAAA9","__token":"4","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507576246,"pid":471169,"hostname":"ubuntu","timestamp":1761507576246,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"2","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507584100,"pid":471169,"hostname":"ubuntu","timestamp":1761507584100,"socketId":"bA9Xw-79AuUPV7F5AAA_","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"bA9Xw-79AuUPV7F5AAA_","__senderName":"Alicer-bA9X"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507584126,"pid":471169,"hostname":"ubuntu","timestamp":1761507584126,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4497916666666666},{"id":"66fd2139-81bf-492c-a838-4e6c3e96c511","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"bA9Xw-79AuUPV7F5AAA_","__token":"5","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507584128,"pid":471169,"hostname":"ubuntu","timestamp":1761507584128,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":"track_1761500380591_lfbbzcl","name":"Pista de Áudio 1"},{"id":"track_1761500741617_rpz0rna","name":"Pista de Áudio 2"},{"id":"track_1761500742384_ifk23ix","name":"Pista de Áudio 3"},{"id":"track_1761500743176_q3xiqem","name":"Pista de Áudio 4"}],"clips":[{"id":"cc0ad9d6-4ad5-4f35-8649-479776243df5","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":2.6666666666666665,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665},{"id":"e421fbb6-a541-4342-8be5-33f28ee3cb0f","trackId":"track_1761500741617_rpz0rna","name":"break01.ogg","sourcePath":"src/samples/beats/break01.ogg","startTimeInSeconds":7.333333333333333,"durationInSeconds":1.4497916666666666,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":1.4391875},{"id":"5ba02dc4-c490-47b4-9a83-7035d4aa5c08","trackId":"track_1761500380591_lfbbzcl","name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":2.6666666666666665,"durationInSeconds":1.2937708333333333,"offset":2.6666666666666665,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9519166666666665}]},"__target":"bA9Xw-79AuUPV7F5AAA_","__token":"30","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507587832,"pid":471169,"hostname":"ubuntu","timestamp":1761507587832,"socketId":"bA9Xw-79AuUPV7F5AAA_","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"2","__senderId":"bA9Xw-79AuUPV7F5AAA_","__senderName":"Alicer-bA9X","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507591919,"pid":471169,"hostname":"ubuntu","timestamp":1761507591919,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.484375,"__token":"62","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507591998,"pid":471169,"hostname":"ubuntu","timestamp":1761507591998,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4739583333333335,"__token":"63","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592023,"pid":471169,"hostname":"ubuntu","timestamp":1761507592023,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4635416666666665,"__token":"64","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592030,"pid":471169,"hostname":"ubuntu","timestamp":1761507592030,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.453125,"__token":"65","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592045,"pid":471169,"hostname":"ubuntu","timestamp":1761507592045,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4427083333333335,"__token":"66","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592062,"pid":471169,"hostname":"ubuntu","timestamp":1761507592062,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4114583333333335,"__token":"67","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592079,"pid":471169,"hostname":"ubuntu","timestamp":1761507592079,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.3697916666666665,"__token":"68","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592095,"pid":471169,"hostname":"ubuntu","timestamp":1761507592095,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.3385416666666665,"__token":"69","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592112,"pid":471169,"hostname":"ubuntu","timestamp":1761507592112,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.265625,"__token":"70","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592129,"pid":471169,"hostname":"ubuntu","timestamp":1761507592129,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.203125,"__token":"71","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592146,"pid":471169,"hostname":"ubuntu","timestamp":1761507592146,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.140625,"__token":"72","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592163,"pid":471169,"hostname":"ubuntu","timestamp":1761507592163,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.046875,"__token":"73","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592180,"pid":471169,"hostname":"ubuntu","timestamp":1761507592180,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9947916666666665,"__token":"74","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592197,"pid":471169,"hostname":"ubuntu","timestamp":1761507592197,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.953125,"__token":"75","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592216,"pid":471169,"hostname":"ubuntu","timestamp":1761507592216,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9322916666666665,"__token":"76","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592230,"pid":471169,"hostname":"ubuntu","timestamp":1761507592230,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.921875,"__token":"77","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592246,"pid":471169,"hostname":"ubuntu","timestamp":1761507592246,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9114583333333335,"__token":"78","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592262,"pid":471169,"hostname":"ubuntu","timestamp":1761507592262,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9010416666666665,"__token":"79","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592279,"pid":471169,"hostname":"ubuntu","timestamp":1761507592279,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.890625,"__token":"80","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592295,"pid":471169,"hostname":"ubuntu","timestamp":1761507592295,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8802083333333335,"__token":"81","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592379,"pid":471169,"hostname":"ubuntu","timestamp":1761507592379,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8802083333333335,"__token":"82","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592454,"pid":471169,"hostname":"ubuntu","timestamp":1761507592454,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.859375,"__token":"83","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592702,"pid":471169,"hostname":"ubuntu","timestamp":1761507592702,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.859375,"__token":"84","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592750,"pid":471169,"hostname":"ubuntu","timestamp":1761507592750,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8697916666666665,"__token":"85","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592774,"pid":471169,"hostname":"ubuntu","timestamp":1761507592774,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8802083333333335,"__token":"86","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592790,"pid":471169,"hostname":"ubuntu","timestamp":1761507592790,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.8802083333333335,"__token":"87","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592798,"pid":471169,"hostname":"ubuntu","timestamp":1761507592798,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.890625,"__token":"88","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592806,"pid":471169,"hostname":"ubuntu","timestamp":1761507592806,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9010416666666665,"__token":"89","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592814,"pid":471169,"hostname":"ubuntu","timestamp":1761507592814,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9114583333333335,"__token":"90","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592827,"pid":471169,"hostname":"ubuntu","timestamp":1761507592827,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9322916666666665,"__token":"91","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592844,"pid":471169,"hostname":"ubuntu","timestamp":1761507592844,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.9635416666666665,"__token":"92","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592862,"pid":471169,"hostname":"ubuntu","timestamp":1761507592862,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.015625,"__token":"93","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592878,"pid":471169,"hostname":"ubuntu","timestamp":1761507592878,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.1197916666666665,"__token":"94","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592895,"pid":471169,"hostname":"ubuntu","timestamp":1761507592895,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.2760416666666665,"__token":"95","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592912,"pid":471169,"hostname":"ubuntu","timestamp":1761507592912,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.4114583333333335,"__token":"96","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592928,"pid":471169,"hostname":"ubuntu","timestamp":1761507592928,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.5677083333333335,"__token":"97","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592947,"pid":471169,"hostname":"ubuntu","timestamp":1761507592947,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7239583333333335,"__token":"98","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592963,"pid":471169,"hostname":"ubuntu","timestamp":1761507592963,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7552083333333335,"__token":"99","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592980,"pid":471169,"hostname":"ubuntu","timestamp":1761507592980,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7760416666666665,"__token":"100","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507592996,"pid":471169,"hostname":"ubuntu","timestamp":1761507592996,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7864583333333335,"__token":"101","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593028,"pid":471169,"hostname":"ubuntu","timestamp":1761507593028,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.828125,"__token":"102","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593047,"pid":471169,"hostname":"ubuntu","timestamp":1761507593047,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.8489583333333335,"__token":"103","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593061,"pid":471169,"hostname":"ubuntu","timestamp":1761507593061,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.859375,"__token":"104","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593096,"pid":471169,"hostname":"ubuntu","timestamp":1761507593096,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.8697916666666665,"__token":"105","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593319,"pid":471169,"hostname":"ubuntu","timestamp":1761507593319,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.859375,"__token":"106","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593327,"pid":471169,"hostname":"ubuntu","timestamp":1761507593327,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.8177083333333335,"__token":"107","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593333,"pid":471169,"hostname":"ubuntu","timestamp":1761507593333,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7760416666666665,"__token":"108","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593353,"pid":471169,"hostname":"ubuntu","timestamp":1761507593353,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.7135416666666665,"__token":"109","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593363,"pid":471169,"hostname":"ubuntu","timestamp":1761507593363,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.5677083333333335,"__token":"110","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593379,"pid":471169,"hostname":"ubuntu","timestamp":1761507593379,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.3802083333333335,"__token":"111","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593395,"pid":471169,"hostname":"ubuntu","timestamp":1761507593395,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.203125,"__token":"112","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593415,"pid":471169,"hostname":"ubuntu","timestamp":1761507593415,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":3.046875,"__token":"113","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593430,"pid":471169,"hostname":"ubuntu","timestamp":1761507593430,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.890625,"__token":"114","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593447,"pid":471169,"hostname":"ubuntu","timestamp":1761507593447,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.734375,"__token":"115","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593463,"pid":471169,"hostname":"ubuntu","timestamp":1761507593463,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.5052083333333335,"__token":"116","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593480,"pid":471169,"hostname":"ubuntu","timestamp":1761507593480,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.359375,"__token":"117","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593496,"pid":471169,"hostname":"ubuntu","timestamp":1761507593496,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.265625,"__token":"118","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593512,"pid":471169,"hostname":"ubuntu","timestamp":1761507593512,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.1302083333333335,"__token":"119","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593529,"pid":471169,"hostname":"ubuntu","timestamp":1761507593529,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":2.0364583333333335,"__token":"120","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593546,"pid":471169,"hostname":"ubuntu","timestamp":1761507593546,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.953125,"__token":"121","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593563,"pid":471169,"hostname":"ubuntu","timestamp":1761507593563,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.890625,"__token":"122","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593579,"pid":471169,"hostname":"ubuntu","timestamp":1761507593579,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.8489583333333333,"__token":"123","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593597,"pid":471169,"hostname":"ubuntu","timestamp":1761507593597,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.8072916666666667,"__token":"124","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593654,"pid":471169,"hostname":"ubuntu","timestamp":1761507593654,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.765625,"__token":"125","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593654,"pid":471169,"hostname":"ubuntu","timestamp":1761507593654,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.734375,"__token":"126","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593654,"pid":471169,"hostname":"ubuntu","timestamp":1761507593654,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.7239583333333333,"__token":"127","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593661,"pid":471169,"hostname":"ubuntu","timestamp":1761507593661,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.703125,"__token":"128","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593687,"pid":471169,"hostname":"ubuntu","timestamp":1761507593687,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.6927083333333333,"__token":"129","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593716,"pid":471169,"hostname":"ubuntu","timestamp":1761507593716,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.6822916666666667,"__token":"130","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593728,"pid":471169,"hostname":"ubuntu","timestamp":1761507593728,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.6614583333333333,"__token":"131","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593745,"pid":471169,"hostname":"ubuntu","timestamp":1761507593745,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.640625,"__token":"132","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593762,"pid":471169,"hostname":"ubuntu","timestamp":1761507593762,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.5989583333333333,"__token":"133","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593779,"pid":471169,"hostname":"ubuntu","timestamp":1761507593779,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.578125,"__token":"134","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593795,"pid":471169,"hostname":"ubuntu","timestamp":1761507593795,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.5364583333333333,"__token":"135","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593811,"pid":471169,"hostname":"ubuntu","timestamp":1761507593811,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.4947916666666667,"__token":"136","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593830,"pid":471169,"hostname":"ubuntu","timestamp":1761507593830,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.4635416666666667,"__token":"137","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593845,"pid":471169,"hostname":"ubuntu","timestamp":1761507593845,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.4322916666666667,"__token":"138","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593862,"pid":471169,"hostname":"ubuntu","timestamp":1761507593862,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.4114583333333333,"__token":"139","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593879,"pid":471169,"hostname":"ubuntu","timestamp":1761507593879,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.359375,"__token":"140","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593895,"pid":471169,"hostname":"ubuntu","timestamp":1761507593895,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.3385416666666667,"__token":"141","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593912,"pid":471169,"hostname":"ubuntu","timestamp":1761507593912,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.3177083333333333,"__token":"142","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593929,"pid":471169,"hostname":"ubuntu","timestamp":1761507593929,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.265625,"__token":"143","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593945,"pid":471169,"hostname":"ubuntu","timestamp":1761507593945,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.234375,"__token":"144","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593962,"pid":471169,"hostname":"ubuntu","timestamp":1761507593962,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.2135416666666667,"__token":"145","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507593978,"pid":471169,"hostname":"ubuntu","timestamp":1761507593978,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.1822916666666667,"__token":"146","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594012,"pid":471169,"hostname":"ubuntu","timestamp":1761507594012,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.1510416666666667,"__token":"147","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594046,"pid":471169,"hostname":"ubuntu","timestamp":1761507594046,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.140625,"__token":"148","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594064,"pid":471169,"hostname":"ubuntu","timestamp":1761507594064,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.1302083333333333,"__token":"149","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594211,"pid":471169,"hostname":"ubuntu","timestamp":1761507594211,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.1197916666666667,"__token":"150","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594228,"pid":471169,"hostname":"ubuntu","timestamp":1761507594228,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.109375,"__token":"151","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594245,"pid":471169,"hostname":"ubuntu","timestamp":1761507594245,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0989583333333333,"__token":"152","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594261,"pid":471169,"hostname":"ubuntu","timestamp":1761507594261,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0885416666666667,"__token":"153","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594286,"pid":471169,"hostname":"ubuntu","timestamp":1761507594286,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0677083333333333,"__token":"154","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594328,"pid":471169,"hostname":"ubuntu","timestamp":1761507594328,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0572916666666667,"__token":"155","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594390,"pid":471169,"hostname":"ubuntu","timestamp":1761507594390,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0260416666666667,"__token":"156","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594397,"pid":471169,"hostname":"ubuntu","timestamp":1761507594397,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.015625,"__token":"157","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594423,"pid":471169,"hostname":"ubuntu","timestamp":1761507594423,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":1.0052083333333333,"__token":"158","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594445,"pid":471169,"hostname":"ubuntu","timestamp":1761507594445,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.9947916666666666,"__token":"159","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594461,"pid":471169,"hostname":"ubuntu","timestamp":1761507594461,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.984375,"__token":"160","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594478,"pid":471169,"hostname":"ubuntu","timestamp":1761507594478,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.953125,"__token":"161","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594495,"pid":471169,"hostname":"ubuntu","timestamp":1761507594495,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.9322916666666666,"__token":"162","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594512,"pid":471169,"hostname":"ubuntu","timestamp":1761507594512,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.9114583333333334,"__token":"163","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594528,"pid":471169,"hostname":"ubuntu","timestamp":1761507594528,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.9010416666666666,"__token":"164","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594544,"pid":471169,"hostname":"ubuntu","timestamp":1761507594544,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8697916666666666,"__token":"165","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594561,"pid":471169,"hostname":"ubuntu","timestamp":1761507594561,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8489583333333334,"__token":"166","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594578,"pid":471169,"hostname":"ubuntu","timestamp":1761507594578,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8385416666666666,"__token":"167","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594595,"pid":471169,"hostname":"ubuntu","timestamp":1761507594595,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.828125,"__token":"168","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594611,"pid":471169,"hostname":"ubuntu","timestamp":1761507594611,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8177083333333334,"__token":"169","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594629,"pid":471169,"hostname":"ubuntu","timestamp":1761507594629,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.8072916666666666,"__token":"170","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594646,"pid":471169,"hostname":"ubuntu","timestamp":1761507594646,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.796875,"__token":"171","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594662,"pid":471169,"hostname":"ubuntu","timestamp":1761507594662,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.7864583333333334,"__token":"172","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594678,"pid":471169,"hostname":"ubuntu","timestamp":1761507594678,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.7760416666666666,"__token":"173","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594712,"pid":471169,"hostname":"ubuntu","timestamp":1761507594712,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.765625,"__token":"174","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594728,"pid":471169,"hostname":"ubuntu","timestamp":1761507594728,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.7447916666666666,"__token":"175","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594745,"pid":471169,"hostname":"ubuntu","timestamp":1761507594745,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.734375,"__token":"176","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594761,"pid":471169,"hostname":"ubuntu","timestamp":1761507594761,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.7135416666666666,"__token":"177","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594777,"pid":471169,"hostname":"ubuntu","timestamp":1761507594777,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.6927083333333334,"__token":"178","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594795,"pid":471169,"hostname":"ubuntu","timestamp":1761507594795,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.671875,"__token":"179","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594811,"pid":471169,"hostname":"ubuntu","timestamp":1761507594811,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.6510416666666666,"__token":"180","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594845,"pid":471169,"hostname":"ubuntu","timestamp":1761507594845,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.6197916666666666,"__token":"181","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594862,"pid":471169,"hostname":"ubuntu","timestamp":1761507594862,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.5989583333333334,"__token":"182","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594878,"pid":471169,"hostname":"ubuntu","timestamp":1761507594878,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.546875,"__token":"183","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594895,"pid":471169,"hostname":"ubuntu","timestamp":1761507594895,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.5052083333333334,"__token":"184","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594912,"pid":471169,"hostname":"ubuntu","timestamp":1761507594912,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4739583333333333,"__token":"185","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594928,"pid":471169,"hostname":"ubuntu","timestamp":1761507594928,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4010416666666667,"__token":"186","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594946,"pid":471169,"hostname":"ubuntu","timestamp":1761507594946,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.328125,"__token":"187","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594961,"pid":471169,"hostname":"ubuntu","timestamp":1761507594961,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.2552083333333333,"__token":"188","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594979,"pid":471169,"hostname":"ubuntu","timestamp":1761507594979,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.21354166666666666,"__token":"189","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507594996,"pid":471169,"hostname":"ubuntu","timestamp":1761507594996,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.15104166666666666,"__token":"190","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595012,"pid":471169,"hostname":"ubuntu","timestamp":1761507595012,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.06770833333333333,"__token":"191","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595031,"pid":471169,"hostname":"ubuntu","timestamp":1761507595031,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.015625,"__token":"192","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595045,"pid":471169,"hostname":"ubuntu","timestamp":1761507595045,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.109375,"__token":"193","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595063,"pid":471169,"hostname":"ubuntu","timestamp":1761507595063,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.19270833333333334,"__token":"194","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595080,"pid":471169,"hostname":"ubuntu","timestamp":1761507595080,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.3072916666666667,"__token":"195","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595095,"pid":471169,"hostname":"ubuntu","timestamp":1761507595095,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.359375,"__token":"196","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595111,"pid":471169,"hostname":"ubuntu","timestamp":1761507595111,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.421875,"__token":"197","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595128,"pid":471169,"hostname":"ubuntu","timestamp":1761507595128,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.453125,"__token":"198","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595167,"pid":471169,"hostname":"ubuntu","timestamp":1761507595167,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.4635416666666667,"__token":"199","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595168,"pid":471169,"hostname":"ubuntu","timestamp":1761507595168,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.4947916666666667,"__token":"200","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595871,"pid":471169,"hostname":"ubuntu","timestamp":1761507595871,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.484375,"__token":"201","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595878,"pid":471169,"hostname":"ubuntu","timestamp":1761507595878,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.4635416666666667,"__token":"202","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595886,"pid":471169,"hostname":"ubuntu","timestamp":1761507595886,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.453125,"__token":"203","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595895,"pid":471169,"hostname":"ubuntu","timestamp":1761507595895,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.421875,"__token":"204","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595911,"pid":471169,"hostname":"ubuntu","timestamp":1761507595911,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.3697916666666667,"__token":"205","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595927,"pid":471169,"hostname":"ubuntu","timestamp":1761507595927,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.3385416666666667,"__token":"206","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595944,"pid":471169,"hostname":"ubuntu","timestamp":1761507595944,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.296875,"__token":"207","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595961,"pid":471169,"hostname":"ubuntu","timestamp":1761507595961,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.22395833333333334,"__token":"208","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595977,"pid":471169,"hostname":"ubuntu","timestamp":1761507595977,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":-0.13020833333333334,"__token":"209","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507595994,"pid":471169,"hostname":"ubuntu","timestamp":1761507595994,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.005208333333333333,"__token":"210","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596011,"pid":471169,"hostname":"ubuntu","timestamp":1761507596011,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.13020833333333334,"__token":"211","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596027,"pid":471169,"hostname":"ubuntu","timestamp":1761507596027,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.21354166666666666,"__token":"212","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596044,"pid":471169,"hostname":"ubuntu","timestamp":1761507596044,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.3072916666666667,"__token":"213","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596061,"pid":471169,"hostname":"ubuntu","timestamp":1761507596061,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.359375,"__token":"214","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596079,"pid":471169,"hostname":"ubuntu","timestamp":1761507596079,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.3802083333333333,"__token":"215","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596095,"pid":471169,"hostname":"ubuntu","timestamp":1761507596095,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.390625,"__token":"216","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596112,"pid":471169,"hostname":"ubuntu","timestamp":1761507596112,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4010416666666667,"__token":"217","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596128,"pid":471169,"hostname":"ubuntu","timestamp":1761507596128,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4010416666666667,"__token":"218","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596144,"pid":471169,"hostname":"ubuntu","timestamp":1761507596144,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4114583333333333,"__token":"219","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596174,"pid":471169,"hostname":"ubuntu","timestamp":1761507596174,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.421875,"__token":"220","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596181,"pid":471169,"hostname":"ubuntu","timestamp":1761507596181,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4322916666666667,"__token":"221","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596270,"pid":471169,"hostname":"ubuntu","timestamp":1761507596270,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4427083333333333,"__token":"222","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596295,"pid":471169,"hostname":"ubuntu","timestamp":1761507596295,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.453125,"__token":"223","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507596479,"pid":471169,"hostname":"ubuntu","timestamp":1761507596479,"socketId":"W2Ey9VSpXkEXXSAoAAA9","action":{"type":"SET_SEEK_TIME","seekTime":0.4635416666666667,"__token":"224","__senderId":"W2Ey9VSpXkEXXSAoAAA9","__senderName":"Alicer-W2Ey","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507603448,"pid":471169,"hostname":"ubuntu","timestamp":1761507603448,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.026041666666667,"__token":"11","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507603455,"pid":471169,"hostname":"ubuntu","timestamp":1761507603455,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.036458333333333,"__token":"12","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507603582,"pid":471169,"hostname":"ubuntu","timestamp":1761507603582,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.057291666666667,"__token":"13","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507603630,"pid":471169,"hostname":"ubuntu","timestamp":1761507603630,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.067708333333333,"__token":"14","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507603646,"pid":471169,"hostname":"ubuntu","timestamp":1761507603646,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.088541666666667,"__token":"15","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604456,"pid":471169,"hostname":"ubuntu","timestamp":1761507604456,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.088541666666667,"__token":"16","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604583,"pid":471169,"hostname":"ubuntu","timestamp":1761507604583,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.067708333333333,"__token":"17","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604598,"pid":471169,"hostname":"ubuntu","timestamp":1761507604598,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.046875,"__token":"18","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604606,"pid":471169,"hostname":"ubuntu","timestamp":1761507604606,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.026041666666667,"__token":"19","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604614,"pid":471169,"hostname":"ubuntu","timestamp":1761507604614,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":6.015625,"__token":"20","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604622,"pid":471169,"hostname":"ubuntu","timestamp":1761507604622,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.994791666666667,"__token":"21","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604630,"pid":471169,"hostname":"ubuntu","timestamp":1761507604630,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.973958333333333,"__token":"22","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604642,"pid":471169,"hostname":"ubuntu","timestamp":1761507604642,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.953125,"__token":"23","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604647,"pid":471169,"hostname":"ubuntu","timestamp":1761507604647,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.942708333333333,"__token":"24","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604655,"pid":471169,"hostname":"ubuntu","timestamp":1761507604655,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.901041666666667,"__token":"25","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604662,"pid":471169,"hostname":"ubuntu","timestamp":1761507604662,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.869791666666667,"__token":"26","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604671,"pid":471169,"hostname":"ubuntu","timestamp":1761507604671,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.838541666666667,"__token":"27","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604680,"pid":471169,"hostname":"ubuntu","timestamp":1761507604680,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.796875,"__token":"28","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604687,"pid":471169,"hostname":"ubuntu","timestamp":1761507604687,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.744791666666667,"__token":"29","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604695,"pid":471169,"hostname":"ubuntu","timestamp":1761507604695,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.713541666666667,"__token":"30","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604702,"pid":471169,"hostname":"ubuntu","timestamp":1761507604702,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.692708333333333,"__token":"31","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604711,"pid":471169,"hostname":"ubuntu","timestamp":1761507604711,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.651041666666667,"__token":"32","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604719,"pid":471169,"hostname":"ubuntu","timestamp":1761507604719,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.619791666666667,"__token":"33","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604731,"pid":471169,"hostname":"ubuntu","timestamp":1761507604731,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.578125,"__token":"34","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604736,"pid":471169,"hostname":"ubuntu","timestamp":1761507604736,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.557291666666667,"__token":"35","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604752,"pid":471169,"hostname":"ubuntu","timestamp":1761507604752,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.536458333333333,"__token":"36","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604753,"pid":471169,"hostname":"ubuntu","timestamp":1761507604753,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.515625,"__token":"37","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604766,"pid":471169,"hostname":"ubuntu","timestamp":1761507604766,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.505208333333333,"__token":"38","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507604798,"pid":471169,"hostname":"ubuntu","timestamp":1761507604798,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.484375,"__token":"39","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605231,"pid":471169,"hostname":"ubuntu","timestamp":1761507605231,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.484375,"__token":"40","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605270,"pid":471169,"hostname":"ubuntu","timestamp":1761507605270,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.473958333333333,"__token":"41","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605278,"pid":471169,"hostname":"ubuntu","timestamp":1761507605278,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.442708333333333,"__token":"42","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605286,"pid":471169,"hostname":"ubuntu","timestamp":1761507605286,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.411458333333333,"__token":"43","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605294,"pid":471169,"hostname":"ubuntu","timestamp":1761507605294,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.390625,"__token":"44","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605302,"pid":471169,"hostname":"ubuntu","timestamp":1761507605302,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.359375,"__token":"45","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605312,"pid":471169,"hostname":"ubuntu","timestamp":1761507605312,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.307291666666667,"__token":"46","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605318,"pid":471169,"hostname":"ubuntu","timestamp":1761507605318,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.223958333333333,"__token":"47","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605328,"pid":471169,"hostname":"ubuntu","timestamp":1761507605328,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.161458333333333,"__token":"48","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605335,"pid":471169,"hostname":"ubuntu","timestamp":1761507605335,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.088541666666667,"__token":"49","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605343,"pid":471169,"hostname":"ubuntu","timestamp":1761507605343,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":5.026041666666667,"__token":"50","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605350,"pid":471169,"hostname":"ubuntu","timestamp":1761507605350,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.953125,"__token":"51","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605366,"pid":471169,"hostname":"ubuntu","timestamp":1761507605366,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.911458333333333,"__token":"52","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605368,"pid":471169,"hostname":"ubuntu","timestamp":1761507605368,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.859375,"__token":"53","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605419,"pid":471169,"hostname":"ubuntu","timestamp":1761507605419,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.828125,"__token":"54","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605419,"pid":471169,"hostname":"ubuntu","timestamp":1761507605419,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.796875,"__token":"55","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605421,"pid":471169,"hostname":"ubuntu","timestamp":1761507605421,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.776041666666667,"__token":"56","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605423,"pid":471169,"hostname":"ubuntu","timestamp":1761507605423,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.765625,"__token":"57","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605423,"pid":471169,"hostname":"ubuntu","timestamp":1761507605423,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.755208333333333,"__token":"58","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605424,"pid":471169,"hostname":"ubuntu","timestamp":1761507605424,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.744791666666667,"__token":"59","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605432,"pid":471169,"hostname":"ubuntu","timestamp":1761507605432,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.734375,"__token":"60","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605448,"pid":471169,"hostname":"ubuntu","timestamp":1761507605448,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.723958333333333,"__token":"61","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605512,"pid":471169,"hostname":"ubuntu","timestamp":1761507605512,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.713541666666667,"__token":"62","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605512,"pid":471169,"hostname":"ubuntu","timestamp":1761507605512,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.703125,"__token":"63","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605534,"pid":471169,"hostname":"ubuntu","timestamp":1761507605534,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.682291666666667,"__token":"64","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605588,"pid":471169,"hostname":"ubuntu","timestamp":1761507605588,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.671875,"__token":"65","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605588,"pid":471169,"hostname":"ubuntu","timestamp":1761507605588,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.661458333333333,"__token":"66","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605588,"pid":471169,"hostname":"ubuntu","timestamp":1761507605588,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.651041666666667,"__token":"67","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605588,"pid":471169,"hostname":"ubuntu","timestamp":1761507605588,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.630208333333333,"__token":"68","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605617,"pid":471169,"hostname":"ubuntu","timestamp":1761507605617,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.619791666666667,"__token":"69","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605626,"pid":471169,"hostname":"ubuntu","timestamp":1761507605626,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.609375,"__token":"70","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605626,"pid":471169,"hostname":"ubuntu","timestamp":1761507605626,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.598958333333333,"__token":"71","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605627,"pid":471169,"hostname":"ubuntu","timestamp":1761507605627,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.567708333333333,"__token":"72","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605631,"pid":471169,"hostname":"ubuntu","timestamp":1761507605631,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.526041666666667,"__token":"73","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605638,"pid":471169,"hostname":"ubuntu","timestamp":1761507605638,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.494791666666667,"__token":"74","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605647,"pid":471169,"hostname":"ubuntu","timestamp":1761507605647,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.442708333333333,"__token":"75","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605671,"pid":471169,"hostname":"ubuntu","timestamp":1761507605671,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.401041666666667,"__token":"76","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605672,"pid":471169,"hostname":"ubuntu","timestamp":1761507605672,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.359375,"__token":"77","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605672,"pid":471169,"hostname":"ubuntu","timestamp":1761507605672,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.328125,"__token":"78","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605680,"pid":471169,"hostname":"ubuntu","timestamp":1761507605680,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.296875,"__token":"79","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605686,"pid":471169,"hostname":"ubuntu","timestamp":1761507605686,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.265625,"__token":"80","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605703,"pid":471169,"hostname":"ubuntu","timestamp":1761507605703,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.234375,"__token":"81","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605720,"pid":471169,"hostname":"ubuntu","timestamp":1761507605720,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.203125,"__token":"82","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605734,"pid":471169,"hostname":"ubuntu","timestamp":1761507605734,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.192708333333333,"__token":"83","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605763,"pid":471169,"hostname":"ubuntu","timestamp":1761507605763,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.171875,"__token":"84","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605766,"pid":471169,"hostname":"ubuntu","timestamp":1761507605766,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.151041666666667,"__token":"85","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605783,"pid":471169,"hostname":"ubuntu","timestamp":1761507605783,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.140625,"__token":"86","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605800,"pid":471169,"hostname":"ubuntu","timestamp":1761507605800,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.130208333333333,"__token":"87","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605807,"pid":471169,"hostname":"ubuntu","timestamp":1761507605807,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.109375,"__token":"88","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605814,"pid":471169,"hostname":"ubuntu","timestamp":1761507605814,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.098958333333333,"__token":"89","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605832,"pid":471169,"hostname":"ubuntu","timestamp":1761507605832,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.088541666666667,"__token":"90","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605838,"pid":471169,"hostname":"ubuntu","timestamp":1761507605838,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.078125,"__token":"91","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605864,"pid":471169,"hostname":"ubuntu","timestamp":1761507605864,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.067708333333333,"__token":"92","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605870,"pid":471169,"hostname":"ubuntu","timestamp":1761507605870,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.057291666666667,"__token":"93","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605878,"pid":471169,"hostname":"ubuntu","timestamp":1761507605878,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.046875,"__token":"94","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605896,"pid":471169,"hostname":"ubuntu","timestamp":1761507605896,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.026041666666667,"__token":"95","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605903,"pid":471169,"hostname":"ubuntu","timestamp":1761507605903,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":4.015625,"__token":"96","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605910,"pid":471169,"hostname":"ubuntu","timestamp":1761507605910,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.9947916666666665,"__token":"97","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605918,"pid":471169,"hostname":"ubuntu","timestamp":1761507605918,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.9635416666666665,"__token":"98","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605929,"pid":471169,"hostname":"ubuntu","timestamp":1761507605929,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.9427083333333335,"__token":"99","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605936,"pid":471169,"hostname":"ubuntu","timestamp":1761507605936,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.921875,"__token":"100","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605945,"pid":471169,"hostname":"ubuntu","timestamp":1761507605945,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.9010416666666665,"__token":"101","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605950,"pid":471169,"hostname":"ubuntu","timestamp":1761507605950,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.890625,"__token":"102","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605964,"pid":471169,"hostname":"ubuntu","timestamp":1761507605964,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8697916666666665,"__token":"103","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605966,"pid":471169,"hostname":"ubuntu","timestamp":1761507605966,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.859375,"__token":"104","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507605997,"pid":471169,"hostname":"ubuntu","timestamp":1761507605997,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8489583333333335,"__token":"105","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606001,"pid":471169,"hostname":"ubuntu","timestamp":1761507606001,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8385416666666665,"__token":"106","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606001,"pid":471169,"hostname":"ubuntu","timestamp":1761507606001,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.828125,"__token":"107","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606006,"pid":471169,"hostname":"ubuntu","timestamp":1761507606006,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8177083333333335,"__token":"108","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606016,"pid":471169,"hostname":"ubuntu","timestamp":1761507606016,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.8072916666666665,"__token":"109","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606066,"pid":471169,"hostname":"ubuntu","timestamp":1761507606066,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.796875,"__token":"110","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606066,"pid":471169,"hostname":"ubuntu","timestamp":1761507606066,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.765625,"__token":"111","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606070,"pid":471169,"hostname":"ubuntu","timestamp":1761507606070,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.7552083333333335,"__token":"112","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606071,"pid":471169,"hostname":"ubuntu","timestamp":1761507606071,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.734375,"__token":"113","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606072,"pid":471169,"hostname":"ubuntu","timestamp":1761507606072,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.7239583333333335,"__token":"114","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606080,"pid":471169,"hostname":"ubuntu","timestamp":1761507606080,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.7135416666666665,"__token":"115","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606086,"pid":471169,"hostname":"ubuntu","timestamp":1761507606086,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.6927083333333335,"__token":"116","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606102,"pid":471169,"hostname":"ubuntu","timestamp":1761507606102,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.6822916666666665,"__token":"117","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606113,"pid":471169,"hostname":"ubuntu","timestamp":1761507606113,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.6614583333333335,"__token":"118","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606119,"pid":471169,"hostname":"ubuntu","timestamp":1761507606119,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.6302083333333335,"__token":"119","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606131,"pid":471169,"hostname":"ubuntu","timestamp":1761507606131,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.5885416666666665,"__token":"120","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606136,"pid":471169,"hostname":"ubuntu","timestamp":1761507606136,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.546875,"__token":"121","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606143,"pid":471169,"hostname":"ubuntu","timestamp":1761507606143,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.4739583333333335,"__token":"122","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606151,"pid":471169,"hostname":"ubuntu","timestamp":1761507606151,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.421875,"__token":"123","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606159,"pid":471169,"hostname":"ubuntu","timestamp":1761507606159,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.3489583333333335,"__token":"124","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606167,"pid":471169,"hostname":"ubuntu","timestamp":1761507606167,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.296875,"__token":"125","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606188,"pid":471169,"hostname":"ubuntu","timestamp":1761507606188,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.2552083333333335,"__token":"126","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606189,"pid":471169,"hostname":"ubuntu","timestamp":1761507606189,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.1927083333333335,"__token":"127","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606199,"pid":471169,"hostname":"ubuntu","timestamp":1761507606199,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.1510416666666665,"__token":"128","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606200,"pid":471169,"hostname":"ubuntu","timestamp":1761507606200,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.1302083333333335,"__token":"129","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606208,"pid":471169,"hostname":"ubuntu","timestamp":1761507606208,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.109375,"__token":"130","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606215,"pid":471169,"hostname":"ubuntu","timestamp":1761507606215,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.078125,"__token":"131","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606225,"pid":471169,"hostname":"ubuntu","timestamp":1761507606225,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.0677083333333335,"__token":"132","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606248,"pid":471169,"hostname":"ubuntu","timestamp":1761507606248,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.0572916666666665,"__token":"133","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606248,"pid":471169,"hostname":"ubuntu","timestamp":1761507606248,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.046875,"__token":"134","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606269,"pid":471169,"hostname":"ubuntu","timestamp":1761507606269,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.0364583333333335,"__token":"135","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606289,"pid":471169,"hostname":"ubuntu","timestamp":1761507606289,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.0260416666666665,"__token":"136","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606367,"pid":471169,"hostname":"ubuntu","timestamp":1761507606367,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":3.015625,"__token":"137","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606414,"pid":471169,"hostname":"ubuntu","timestamp":1761507606414,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.9947916666666665,"__token":"138","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606454,"pid":471169,"hostname":"ubuntu","timestamp":1761507606454,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.984375,"__token":"139","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606496,"pid":471169,"hostname":"ubuntu","timestamp":1761507606496,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.9635416666666665,"__token":"140","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606518,"pid":471169,"hostname":"ubuntu","timestamp":1761507606518,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.953125,"__token":"141","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606546,"pid":471169,"hostname":"ubuntu","timestamp":1761507606546,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.9322916666666665,"__token":"142","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507606599,"pid":471169,"hostname":"ubuntu","timestamp":1761507606599,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.921875,"__token":"143","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607182,"pid":471169,"hostname":"ubuntu","timestamp":1761507607182,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.9114583333333335,"__token":"144","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607190,"pid":471169,"hostname":"ubuntu","timestamp":1761507607190,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.890625,"__token":"145","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607198,"pid":471169,"hostname":"ubuntu","timestamp":1761507607198,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.859375,"__token":"146","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607206,"pid":471169,"hostname":"ubuntu","timestamp":1761507607206,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.8489583333333335,"__token":"147","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607214,"pid":471169,"hostname":"ubuntu","timestamp":1761507607214,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.828125,"__token":"148","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607223,"pid":471169,"hostname":"ubuntu","timestamp":1761507607223,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.8177083333333335,"__token":"149","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607231,"pid":471169,"hostname":"ubuntu","timestamp":1761507607231,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.7864583333333335,"__token":"150","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607239,"pid":471169,"hostname":"ubuntu","timestamp":1761507607239,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.7552083333333335,"__token":"151","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607247,"pid":471169,"hostname":"ubuntu","timestamp":1761507607247,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.7239583333333335,"__token":"152","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607255,"pid":471169,"hostname":"ubuntu","timestamp":1761507607255,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.6927083333333335,"__token":"153","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607263,"pid":471169,"hostname":"ubuntu","timestamp":1761507607263,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.671875,"__token":"154","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607271,"pid":471169,"hostname":"ubuntu","timestamp":1761507607271,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.640625,"__token":"155","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607281,"pid":471169,"hostname":"ubuntu","timestamp":1761507607281,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.6302083333333335,"__token":"156","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607297,"pid":471169,"hostname":"ubuntu","timestamp":1761507607297,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.609375,"__token":"157","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607312,"pid":471169,"hostname":"ubuntu","timestamp":1761507607312,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.5989583333333335,"__token":"158","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607391,"pid":471169,"hostname":"ubuntu","timestamp":1761507607391,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.578125,"__token":"159","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607422,"pid":471169,"hostname":"ubuntu","timestamp":1761507607422,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.5677083333333335,"__token":"160","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607438,"pid":471169,"hostname":"ubuntu","timestamp":1761507607438,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.546875,"__token":"161","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607462,"pid":471169,"hostname":"ubuntu","timestamp":1761507607462,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.5364583333333335,"__token":"162","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607469,"pid":471169,"hostname":"ubuntu","timestamp":1761507607469,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.515625,"__token":"163","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607489,"pid":471169,"hostname":"ubuntu","timestamp":1761507607489,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.5052083333333335,"__token":"164","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607500,"pid":471169,"hostname":"ubuntu","timestamp":1761507607500,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.484375,"__token":"165","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607534,"pid":471169,"hostname":"ubuntu","timestamp":1761507607534,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.4739583333333335,"__token":"166","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607591,"pid":471169,"hostname":"ubuntu","timestamp":1761507607591,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.453125,"__token":"167","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607622,"pid":471169,"hostname":"ubuntu","timestamp":1761507607622,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.4427083333333335,"__token":"168","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607638,"pid":471169,"hostname":"ubuntu","timestamp":1761507607638,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.421875,"__token":"169","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607647,"pid":471169,"hostname":"ubuntu","timestamp":1761507607647,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.4114583333333335,"__token":"170","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607654,"pid":471169,"hostname":"ubuntu","timestamp":1761507607654,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.390625,"__token":"171","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607664,"pid":471169,"hostname":"ubuntu","timestamp":1761507607664,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.3697916666666665,"__token":"172","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607690,"pid":471169,"hostname":"ubuntu","timestamp":1761507607690,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.3489583333333335,"__token":"173","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607704,"pid":471169,"hostname":"ubuntu","timestamp":1761507607704,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.3385416666666665,"__token":"174","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607705,"pid":471169,"hostname":"ubuntu","timestamp":1761507607705,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.3177083333333335,"__token":"175","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607706,"pid":471169,"hostname":"ubuntu","timestamp":1761507607706,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.296875,"__token":"176","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607706,"pid":471169,"hostname":"ubuntu","timestamp":1761507607706,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2760416666666665,"__token":"177","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607715,"pid":471169,"hostname":"ubuntu","timestamp":1761507607715,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.265625,"__token":"178","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607718,"pid":471169,"hostname":"ubuntu","timestamp":1761507607718,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2552083333333335,"__token":"179","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607728,"pid":471169,"hostname":"ubuntu","timestamp":1761507607728,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2447916666666665,"__token":"180","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607822,"pid":471169,"hostname":"ubuntu","timestamp":1761507607822,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.234375,"__token":"181","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607830,"pid":471169,"hostname":"ubuntu","timestamp":1761507607830,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2239583333333335,"__token":"182","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607838,"pid":471169,"hostname":"ubuntu","timestamp":1761507607838,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.2135416666666665,"__token":"183","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607846,"pid":471169,"hostname":"ubuntu","timestamp":1761507607846,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1927083333333335,"__token":"184","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607854,"pid":471169,"hostname":"ubuntu","timestamp":1761507607854,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1822916666666665,"__token":"185","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607862,"pid":471169,"hostname":"ubuntu","timestamp":1761507607862,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.171875,"__token":"186","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607882,"pid":471169,"hostname":"ubuntu","timestamp":1761507607882,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1614583333333335,"__token":"187","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607897,"pid":471169,"hostname":"ubuntu","timestamp":1761507607897,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1510416666666665,"__token":"188","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607902,"pid":471169,"hostname":"ubuntu","timestamp":1761507607902,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1302083333333335,"__token":"189","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607935,"pid":471169,"hostname":"ubuntu","timestamp":1761507607935,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.1197916666666665,"__token":"190","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607943,"pid":471169,"hostname":"ubuntu","timestamp":1761507607943,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.109375,"__token":"191","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607950,"pid":471169,"hostname":"ubuntu","timestamp":1761507607950,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0989583333333335,"__token":"192","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607966,"pid":471169,"hostname":"ubuntu","timestamp":1761507607966,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0885416666666665,"__token":"193","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607982,"pid":471169,"hostname":"ubuntu","timestamp":1761507607982,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.078125,"__token":"194","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507607998,"pid":471169,"hostname":"ubuntu","timestamp":1761507607998,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0677083333333335,"__token":"195","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608022,"pid":471169,"hostname":"ubuntu","timestamp":1761507608022,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0572916666666665,"__token":"196","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608039,"pid":471169,"hostname":"ubuntu","timestamp":1761507608039,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.046875,"__token":"197","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608047,"pid":471169,"hostname":"ubuntu","timestamp":1761507608047,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0364583333333335,"__token":"198","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608064,"pid":471169,"hostname":"ubuntu","timestamp":1761507608064,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0260416666666665,"__token":"199","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608071,"pid":471169,"hostname":"ubuntu","timestamp":1761507608071,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.015625,"__token":"200","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608087,"pid":471169,"hostname":"ubuntu","timestamp":1761507608087,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":2.0052083333333335,"__token":"201","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608103,"pid":471169,"hostname":"ubuntu","timestamp":1761507608103,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.9947916666666667,"__token":"202","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608127,"pid":471169,"hostname":"ubuntu","timestamp":1761507608127,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.984375,"__token":"203","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608159,"pid":471169,"hostname":"ubuntu","timestamp":1761507608159,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.9739583333333333,"__token":"204","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608166,"pid":471169,"hostname":"ubuntu","timestamp":1761507608166,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.953125,"__token":"205","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608175,"pid":471169,"hostname":"ubuntu","timestamp":1761507608175,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.9427083333333333,"__token":"206","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608183,"pid":471169,"hostname":"ubuntu","timestamp":1761507608183,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.921875,"__token":"207","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608192,"pid":471169,"hostname":"ubuntu","timestamp":1761507608192,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.9010416666666667,"__token":"208","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608199,"pid":471169,"hostname":"ubuntu","timestamp":1761507608199,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.8802083333333333,"__token":"209","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608209,"pid":471169,"hostname":"ubuntu","timestamp":1761507608209,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.8489583333333333,"__token":"210","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608215,"pid":471169,"hostname":"ubuntu","timestamp":1761507608215,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.828125,"__token":"211","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608225,"pid":471169,"hostname":"ubuntu","timestamp":1761507608225,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.8072916666666667,"__token":"212","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608232,"pid":471169,"hostname":"ubuntu","timestamp":1761507608232,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.796875,"__token":"213","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608239,"pid":471169,"hostname":"ubuntu","timestamp":1761507608239,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.7760416666666667,"__token":"214","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608304,"pid":471169,"hostname":"ubuntu","timestamp":1761507608304,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.765625,"__token":"215","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608406,"pid":471169,"hostname":"ubuntu","timestamp":1761507608406,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.7447916666666667,"__token":"216","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608448,"pid":471169,"hostname":"ubuntu","timestamp":1761507608448,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.734375,"__token":"217","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608966,"pid":471169,"hostname":"ubuntu","timestamp":1761507608966,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.7135416666666667,"__token":"218","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507608995,"pid":471169,"hostname":"ubuntu","timestamp":1761507608995,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.703125,"__token":"219","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609007,"pid":471169,"hostname":"ubuntu","timestamp":1761507609007,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.6822916666666667,"__token":"220","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609072,"pid":471169,"hostname":"ubuntu","timestamp":1761507609072,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.671875,"__token":"221","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609102,"pid":471169,"hostname":"ubuntu","timestamp":1761507609102,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.6614583333333333,"__token":"222","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609111,"pid":471169,"hostname":"ubuntu","timestamp":1761507609111,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.6510416666666667,"__token":"223","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609118,"pid":471169,"hostname":"ubuntu","timestamp":1761507609118,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.640625,"__token":"224","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609143,"pid":471169,"hostname":"ubuntu","timestamp":1761507609143,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.6302083333333333,"__token":"225","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609161,"pid":471169,"hostname":"ubuntu","timestamp":1761507609161,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.609375,"__token":"226","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609202,"pid":471169,"hostname":"ubuntu","timestamp":1761507609202,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5885416666666667,"__token":"227","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609202,"pid":471169,"hostname":"ubuntu","timestamp":1761507609202,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5885416666666667,"__token":"228","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609204,"pid":471169,"hostname":"ubuntu","timestamp":1761507609204,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.578125,"__token":"229","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609239,"pid":471169,"hostname":"ubuntu","timestamp":1761507609239,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5677083333333333,"__token":"230","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609246,"pid":471169,"hostname":"ubuntu","timestamp":1761507609246,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5572916666666667,"__token":"231","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609366,"pid":471169,"hostname":"ubuntu","timestamp":1761507609366,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.546875,"__token":"232","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609407,"pid":471169,"hostname":"ubuntu","timestamp":1761507609407,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5364583333333333,"__token":"233","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609423,"pid":471169,"hostname":"ubuntu","timestamp":1761507609423,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5260416666666667,"__token":"234","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609455,"pid":471169,"hostname":"ubuntu","timestamp":1761507609455,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.515625,"__token":"235","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609471,"pid":471169,"hostname":"ubuntu","timestamp":1761507609471,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.5052083333333333,"__token":"236","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609480,"pid":471169,"hostname":"ubuntu","timestamp":1761507609480,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4947916666666667,"__token":"237","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609498,"pid":471169,"hostname":"ubuntu","timestamp":1761507609498,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.484375,"__token":"238","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609512,"pid":471169,"hostname":"ubuntu","timestamp":1761507609512,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4739583333333333,"__token":"239","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609528,"pid":471169,"hostname":"ubuntu","timestamp":1761507609528,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4635416666666667,"__token":"240","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609544,"pid":471169,"hostname":"ubuntu","timestamp":1761507609544,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.453125,"__token":"241","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609550,"pid":471169,"hostname":"ubuntu","timestamp":1761507609550,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4427083333333333,"__token":"242","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609559,"pid":471169,"hostname":"ubuntu","timestamp":1761507609559,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.421875,"__token":"243","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609577,"pid":471169,"hostname":"ubuntu","timestamp":1761507609577,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.4010416666666667,"__token":"244","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609583,"pid":471169,"hostname":"ubuntu","timestamp":1761507609583,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.390625,"__token":"245","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609596,"pid":471169,"hostname":"ubuntu","timestamp":1761507609596,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3697916666666667,"__token":"246","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609599,"pid":471169,"hostname":"ubuntu","timestamp":1761507609599,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.359375,"__token":"247","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609616,"pid":471169,"hostname":"ubuntu","timestamp":1761507609616,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3489583333333333,"__token":"248","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609655,"pid":471169,"hostname":"ubuntu","timestamp":1761507609655,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3385416666666667,"__token":"249","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609665,"pid":471169,"hostname":"ubuntu","timestamp":1761507609665,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.328125,"__token":"250","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609666,"pid":471169,"hostname":"ubuntu","timestamp":1761507609666,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3177083333333333,"__token":"251","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609719,"pid":471169,"hostname":"ubuntu","timestamp":1761507609719,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.3072916666666667,"__token":"252","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609727,"pid":471169,"hostname":"ubuntu","timestamp":1761507609727,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.296875,"__token":"253","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609902,"pid":471169,"hostname":"ubuntu","timestamp":1761507609902,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.2864583333333333,"__token":"254","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609911,"pid":471169,"hostname":"ubuntu","timestamp":1761507609911,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.2447916666666667,"__token":"255","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609918,"pid":471169,"hostname":"ubuntu","timestamp":1761507609918,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.2135416666666667,"__token":"256","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609928,"pid":471169,"hostname":"ubuntu","timestamp":1761507609928,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.1822916666666667,"__token":"257","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609934,"pid":471169,"hostname":"ubuntu","timestamp":1761507609934,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.1302083333333333,"__token":"258","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609944,"pid":471169,"hostname":"ubuntu","timestamp":1761507609944,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0989583333333333,"__token":"259","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609951,"pid":471169,"hostname":"ubuntu","timestamp":1761507609951,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0677083333333333,"__token":"260","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609959,"pid":471169,"hostname":"ubuntu","timestamp":1761507609959,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0572916666666667,"__token":"261","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609966,"pid":471169,"hostname":"ubuntu","timestamp":1761507609966,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0364583333333333,"__token":"262","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609979,"pid":471169,"hostname":"ubuntu","timestamp":1761507609979,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0260416666666667,"__token":"263","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507609983,"pid":471169,"hostname":"ubuntu","timestamp":1761507609983,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.015625,"__token":"264","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507610231,"pid":471169,"hostname":"ubuntu","timestamp":1761507610231,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":1.0052083333333333,"__token":"265","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507610255,"pid":471169,"hostname":"ubuntu","timestamp":1761507610255,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.984375,"__token":"266","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507610319,"pid":471169,"hostname":"ubuntu","timestamp":1761507610319,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.9739583333333334,"__token":"267","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507610423,"pid":471169,"hostname":"ubuntu","timestamp":1761507610423,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.9635416666666666,"__token":"268","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507610543,"pid":471169,"hostname":"ubuntu","timestamp":1761507610543,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.953125,"__token":"269","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507610550,"pid":471169,"hostname":"ubuntu","timestamp":1761507610550,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.953125,"__token":"270","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507610592,"pid":471169,"hostname":"ubuntu","timestamp":1761507610592,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.9427083333333334,"__token":"271","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507610598,"pid":471169,"hostname":"ubuntu","timestamp":1761507610598,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.9427083333333334,"__token":"272","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761507610622,"pid":471169,"hostname":"ubuntu","timestamp":1761507610622,"socketId":"2E2JyHKP_XkFxLW4AAA7","action":{"type":"SET_SEEK_TIME","seekTime":0.921875,"__token":"273","__senderId":"2E2JyHKP_XkFxLW4AAA7","__senderName":"Alicer-2E2J","__syncMode":"global"},"msg":"action_received"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"level":30,"time":1761502437711,"pid":471169,"hostname":"ubuntu","timestamp":1761502437711,"socketId":"Eb4alu4X-wXwL0nzAAAz","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"Eb4alu4X-wXwL0nzAAAz","__senderName":"Alicer-Eb4a"},"msg":"action_received"}
|
||||
|
|
@ -1,265 +0,0 @@
|
|||
{"level":30,"time":1761516165534,"pid":741858,"hostname":"ubuntu","timestamp":1761516165534,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516167343,"pid":741858,"hostname":"ubuntu","timestamp":1761516167343,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"2","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516176890,"pid":741858,"hostname":"ubuntu","timestamp":1761516176890,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516239586,"pid":741858,"hostname":"ubuntu","timestamp":1761516239586,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761516170845_jslcqce","__token":"2","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516243178,"pid":741858,"hostname":"ubuntu","timestamp":1761516243178,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1761516174436_k148qeg","__token":"3","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516244242,"pid":741858,"hostname":"ubuntu","timestamp":1761516244242,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"4","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516245682,"pid":741858,"hostname":"ubuntu","timestamp":1761516245682,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":8,"__token":"5","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516246162,"pid":741858,"hostname":"ubuntu","timestamp":1761516246162,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"6","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516254587,"pid":741858,"hostname":"ubuntu","timestamp":1761516254587,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.625,"__token":"7","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516268004,"pid":741858,"hostname":"ubuntu","timestamp":1761516268004,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.666666666666666,"__token":"8","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280165,"pid":741858,"hostname":"ubuntu","timestamp":1761516280165,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":10.127644856770834,"__token":"9","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280275,"pid":741858,"hostname":"ubuntu","timestamp":1761516280275,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":10.117228190104166,"__token":"10","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280291,"pid":741858,"hostname":"ubuntu","timestamp":1761516280291,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":10.1068115234375,"__token":"11","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280301,"pid":741858,"hostname":"ubuntu","timestamp":1761516280301,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":10.085978190104166,"__token":"12","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280318,"pid":741858,"hostname":"ubuntu","timestamp":1761516280318,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":10.065144856770834,"__token":"13","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280335,"pid":741858,"hostname":"ubuntu","timestamp":1761516280335,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":10.033894856770834,"__token":"14","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280354,"pid":741858,"hostname":"ubuntu","timestamp":1761516280354,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.9818115234375,"__token":"15","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280369,"pid":741858,"hostname":"ubuntu","timestamp":1761516280369,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.929728190104166,"__token":"16","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280385,"pid":741858,"hostname":"ubuntu","timestamp":1761516280385,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.898478190104166,"__token":"17","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280404,"pid":741858,"hostname":"ubuntu","timestamp":1761516280404,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.877644856770834,"__token":"18","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280421,"pid":741858,"hostname":"ubuntu","timestamp":1761516280421,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.867228190104166,"__token":"19","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280435,"pid":741858,"hostname":"ubuntu","timestamp":1761516280435,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.8568115234375,"__token":"20","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280523,"pid":741858,"hostname":"ubuntu","timestamp":1761516280523,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.846394856770834,"__token":"21","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280539,"pid":741858,"hostname":"ubuntu","timestamp":1761516280539,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.8255615234375,"__token":"22","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280563,"pid":741858,"hostname":"ubuntu","timestamp":1761516280563,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.815144856770834,"__token":"23","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280570,"pid":741858,"hostname":"ubuntu","timestamp":1761516280570,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.804728190104166,"__token":"24","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280587,"pid":741858,"hostname":"ubuntu","timestamp":1761516280587,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.7943115234375,"__token":"25","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280603,"pid":741858,"hostname":"ubuntu","timestamp":1761516280603,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.773478190104166,"__token":"26","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280620,"pid":741858,"hostname":"ubuntu","timestamp":1761516280620,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.7630615234375,"__token":"27","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280636,"pid":741858,"hostname":"ubuntu","timestamp":1761516280636,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.752644856770834,"__token":"28","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280670,"pid":741858,"hostname":"ubuntu","timestamp":1761516280670,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.710978190104166,"__token":"29","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280685,"pid":741858,"hostname":"ubuntu","timestamp":1761516280685,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.7005615234375,"__token":"30","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280701,"pid":741858,"hostname":"ubuntu","timestamp":1761516280701,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.6693115234375,"__token":"31","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280719,"pid":741858,"hostname":"ubuntu","timestamp":1761516280719,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.658894856770834,"__token":"32","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280736,"pid":741858,"hostname":"ubuntu","timestamp":1761516280736,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.6380615234375,"__token":"33","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280804,"pid":741858,"hostname":"ubuntu","timestamp":1761516280804,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.6380615234375,"__token":"34","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280820,"pid":741858,"hostname":"ubuntu","timestamp":1761516280820,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.617228190104166,"__token":"35","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280879,"pid":741858,"hostname":"ubuntu","timestamp":1761516280879,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.6068115234375,"__token":"36","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280884,"pid":741858,"hostname":"ubuntu","timestamp":1761516280884,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.596394856770834,"__token":"37","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280951,"pid":741858,"hostname":"ubuntu","timestamp":1761516280951,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.585978190104166,"__token":"38","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516280971,"pid":741858,"hostname":"ubuntu","timestamp":1761516280971,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.554728190104166,"__token":"39","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281219,"pid":741858,"hostname":"ubuntu","timestamp":1761516281219,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.5443115234375,"__token":"40","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281233,"pid":741858,"hostname":"ubuntu","timestamp":1761516281233,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.533894856770834,"__token":"41","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281251,"pid":741858,"hostname":"ubuntu","timestamp":1761516281251,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.5130615234375,"__token":"42","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281275,"pid":741858,"hostname":"ubuntu","timestamp":1761516281275,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.502644856770834,"__token":"43","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281291,"pid":741858,"hostname":"ubuntu","timestamp":1761516281291,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.4818115234375,"__token":"44","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281316,"pid":741858,"hostname":"ubuntu","timestamp":1761516281316,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.460978190104166,"__token":"45","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281335,"pid":741858,"hostname":"ubuntu","timestamp":1761516281335,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.440144856770834,"__token":"46","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281351,"pid":741858,"hostname":"ubuntu","timestamp":1761516281351,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.429728190104166,"__token":"47","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281368,"pid":741858,"hostname":"ubuntu","timestamp":1761516281368,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.408894856770834,"__token":"48","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281385,"pid":741858,"hostname":"ubuntu","timestamp":1761516281385,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.3880615234375,"__token":"49","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281401,"pid":741858,"hostname":"ubuntu","timestamp":1761516281401,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.377644856770834,"__token":"50","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281417,"pid":741858,"hostname":"ubuntu","timestamp":1761516281417,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.3568115234375,"__token":"51","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281437,"pid":741858,"hostname":"ubuntu","timestamp":1761516281437,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.346394856770834,"__token":"52","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281453,"pid":741858,"hostname":"ubuntu","timestamp":1761516281453,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.335978190104166,"__token":"53","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281467,"pid":741858,"hostname":"ubuntu","timestamp":1761516281467,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.3255615234375,"__token":"54","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281486,"pid":741858,"hostname":"ubuntu","timestamp":1761516281486,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.304728190104166,"__token":"55","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281503,"pid":741858,"hostname":"ubuntu","timestamp":1761516281503,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.283894856770834,"__token":"56","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281523,"pid":741858,"hostname":"ubuntu","timestamp":1761516281523,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.273478190104166,"__token":"57","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281535,"pid":741858,"hostname":"ubuntu","timestamp":1761516281535,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.252644856770834,"__token":"58","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281569,"pid":741858,"hostname":"ubuntu","timestamp":1761516281569,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.2318115234375,"__token":"59","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281584,"pid":741858,"hostname":"ubuntu","timestamp":1761516281584,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.221394856770834,"__token":"60","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281641,"pid":741858,"hostname":"ubuntu","timestamp":1761516281641,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.2005615234375,"__token":"61","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281642,"pid":741858,"hostname":"ubuntu","timestamp":1761516281642,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.179728190104166,"__token":"62","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281642,"pid":741858,"hostname":"ubuntu","timestamp":1761516281642,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.1693115234375,"__token":"63","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281659,"pid":741858,"hostname":"ubuntu","timestamp":1761516281659,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.1380615234375,"__token":"64","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281675,"pid":741858,"hostname":"ubuntu","timestamp":1761516281675,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.127644856770834,"__token":"65","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281702,"pid":741858,"hostname":"ubuntu","timestamp":1761516281702,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.096394856770834,"__token":"66","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281719,"pid":741858,"hostname":"ubuntu","timestamp":1761516281719,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.085978190104166,"__token":"67","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281770,"pid":741858,"hostname":"ubuntu","timestamp":1761516281770,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.065144856770834,"__token":"68","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281787,"pid":741858,"hostname":"ubuntu","timestamp":1761516281787,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.0443115234375,"__token":"69","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281801,"pid":741858,"hostname":"ubuntu","timestamp":1761516281801,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.023478190104166,"__token":"70","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281836,"pid":741858,"hostname":"ubuntu","timestamp":1761516281836,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":9.0130615234375,"__token":"71","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281852,"pid":741858,"hostname":"ubuntu","timestamp":1761516281852,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.9818115234375,"__token":"72","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281869,"pid":741858,"hostname":"ubuntu","timestamp":1761516281869,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.971394856770834,"__token":"73","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281903,"pid":741858,"hostname":"ubuntu","timestamp":1761516281903,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.960978190104166,"__token":"74","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281918,"pid":741858,"hostname":"ubuntu","timestamp":1761516281918,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.940144856770834,"__token":"75","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516281955,"pid":741858,"hostname":"ubuntu","timestamp":1761516281955,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.929728190104166,"__token":"76","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282003,"pid":741858,"hostname":"ubuntu","timestamp":1761516282003,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.908894856770834,"__token":"77","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282021,"pid":741858,"hostname":"ubuntu","timestamp":1761516282021,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.8880615234375,"__token":"78","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282036,"pid":741858,"hostname":"ubuntu","timestamp":1761516282036,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.867228190104166,"__token":"79","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282051,"pid":741858,"hostname":"ubuntu","timestamp":1761516282051,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.867228190104166,"__token":"80","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282067,"pid":741858,"hostname":"ubuntu","timestamp":1761516282067,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.8568115234375,"__token":"81","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282085,"pid":741858,"hostname":"ubuntu","timestamp":1761516282085,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.8255615234375,"__token":"82","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282107,"pid":741858,"hostname":"ubuntu","timestamp":1761516282107,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.815144856770834,"__token":"83","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282135,"pid":741858,"hostname":"ubuntu","timestamp":1761516282135,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.783894856770834,"__token":"84","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282155,"pid":741858,"hostname":"ubuntu","timestamp":1761516282155,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.773478190104166,"__token":"85","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282180,"pid":741858,"hostname":"ubuntu","timestamp":1761516282180,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.752644856770834,"__token":"86","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282201,"pid":741858,"hostname":"ubuntu","timestamp":1761516282201,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.7318115234375,"__token":"87","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282219,"pid":741858,"hostname":"ubuntu","timestamp":1761516282219,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.710978190104166,"__token":"88","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282234,"pid":741858,"hostname":"ubuntu","timestamp":1761516282234,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.7005615234375,"__token":"89","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282269,"pid":741858,"hostname":"ubuntu","timestamp":1761516282269,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.658894856770834,"__token":"90","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282284,"pid":741858,"hostname":"ubuntu","timestamp":1761516282284,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.617228190104166,"__token":"91","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282301,"pid":741858,"hostname":"ubuntu","timestamp":1761516282301,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.596394856770834,"__token":"92","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282320,"pid":741858,"hostname":"ubuntu","timestamp":1761516282320,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.5755615234375,"__token":"93","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282339,"pid":741858,"hostname":"ubuntu","timestamp":1761516282339,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.554728190104166,"__token":"94","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282353,"pid":741858,"hostname":"ubuntu","timestamp":1761516282353,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.5443115234375,"__token":"95","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282369,"pid":741858,"hostname":"ubuntu","timestamp":1761516282369,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.502644856770834,"__token":"96","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282385,"pid":741858,"hostname":"ubuntu","timestamp":1761516282385,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.471394856770834,"__token":"97","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282403,"pid":741858,"hostname":"ubuntu","timestamp":1761516282403,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.460978190104166,"__token":"98","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282420,"pid":741858,"hostname":"ubuntu","timestamp":1761516282420,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.4505615234375,"__token":"99","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282437,"pid":741858,"hostname":"ubuntu","timestamp":1761516282437,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.440144856770834,"__token":"100","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282453,"pid":741858,"hostname":"ubuntu","timestamp":1761516282453,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.408894856770834,"__token":"101","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282469,"pid":741858,"hostname":"ubuntu","timestamp":1761516282469,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.398478190104166,"__token":"102","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282485,"pid":741858,"hostname":"ubuntu","timestamp":1761516282485,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.367228190104166,"__token":"103","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282503,"pid":741858,"hostname":"ubuntu","timestamp":1761516282503,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.346394856770834,"__token":"104","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282519,"pid":741858,"hostname":"ubuntu","timestamp":1761516282519,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.304728190104166,"__token":"105","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282535,"pid":741858,"hostname":"ubuntu","timestamp":1761516282535,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.2943115234375,"__token":"106","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282555,"pid":741858,"hostname":"ubuntu","timestamp":1761516282554,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.2630615234375,"__token":"107","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282569,"pid":741858,"hostname":"ubuntu","timestamp":1761516282569,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.2318115234375,"__token":"108","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282603,"pid":741858,"hostname":"ubuntu","timestamp":1761516282603,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.2005615234375,"__token":"109","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282617,"pid":741858,"hostname":"ubuntu","timestamp":1761516282617,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.190144856770834,"__token":"110","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282653,"pid":741858,"hostname":"ubuntu","timestamp":1761516282653,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.179728190104166,"__token":"111","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282668,"pid":741858,"hostname":"ubuntu","timestamp":1761516282668,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.148478190104166,"__token":"112","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282684,"pid":741858,"hostname":"ubuntu","timestamp":1761516282684,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.1380615234375,"__token":"113","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282717,"pid":741858,"hostname":"ubuntu","timestamp":1761516282717,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.127644856770834,"__token":"114","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282739,"pid":741858,"hostname":"ubuntu","timestamp":1761516282739,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.1068115234375,"__token":"115","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282764,"pid":741858,"hostname":"ubuntu","timestamp":1761516282764,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.096394856770834,"__token":"116","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282785,"pid":741858,"hostname":"ubuntu","timestamp":1761516282785,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.085978190104166,"__token":"117","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282811,"pid":741858,"hostname":"ubuntu","timestamp":1761516282811,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.0755615234375,"__token":"118","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282819,"pid":741858,"hostname":"ubuntu","timestamp":1761516282819,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.054728190104166,"__token":"119","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282884,"pid":741858,"hostname":"ubuntu","timestamp":1761516282884,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.0443115234375,"__token":"120","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282948,"pid":741858,"hostname":"ubuntu","timestamp":1761516282948,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.033894856770834,"__token":"121","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516282987,"pid":741858,"hostname":"ubuntu","timestamp":1761516282987,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":8.002644856770834,"__token":"122","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516283034,"pid":741858,"hostname":"ubuntu","timestamp":1761516283034,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SEEK_TIME","seekTime":7.992228190104167,"__token":"123","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516285916,"pid":741858,"hostname":"ubuntu","timestamp":1761516285916,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"START_AUDIO_PLAYBACK","seekTime":8.002644856770834,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":10.666666666666666},"__token":"124","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","scheduleAtServerMs":1761516286103,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516311070,"pid":741858,"hostname":"ubuntu","timestamp":1761516311070,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"4","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516322727,"pid":741858,"hostname":"ubuntu","timestamp":1761516322727,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":10.666666666666666,"__token":"12","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516324448,"pid":741858,"hostname":"ubuntu","timestamp":1761516324448,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.666666666666666,"__token":"13","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516326366,"pid":741858,"hostname":"ubuntu","timestamp":1761516326366,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"14","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516351175,"pid":741858,"hostname":"ubuntu","timestamp":1761516351175,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"131","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516355775,"pid":741858,"hostname":"ubuntu","timestamp":1761516355775,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"17","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516419676,"pid":741858,"hostname":"ubuntu","timestamp":1761516419676,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"133","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516431539,"pid":741858,"hostname":"ubuntu","timestamp":1761516431539,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_LOOP_STATE","isLoopActive":false,"loopStartTime":0,"loopEndTime":10.666666666666666,"__token":"137","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516432210,"pid":741858,"hostname":"ubuntu","timestamp":1761516432210,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"138","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516432763,"pid":741858,"hostname":"ubuntu","timestamp":1761516432763,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.666666666666666,"__token":"139","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516984582,"pid":741858,"hostname":"ubuntu","timestamp":1761516984582,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":7.296875,"__token":"25","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516984916,"pid":741858,"hostname":"ubuntu","timestamp":1761516984916,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":7.317708333333333,"__token":"26","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516984932,"pid":741858,"hostname":"ubuntu","timestamp":1761516984932,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":7.359375,"__token":"27","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516984948,"pid":741858,"hostname":"ubuntu","timestamp":1761516984948,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":7.380208333333333,"__token":"28","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516984958,"pid":741858,"hostname":"ubuntu","timestamp":1761516984958,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":7.401041666666667,"__token":"29","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516984964,"pid":741858,"hostname":"ubuntu","timestamp":1761516984964,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":7.421875,"__token":"30","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761516984973,"pid":741858,"hostname":"ubuntu","timestamp":1761516984973,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":7.421875,"__token":"31","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517074123,"pid":741858,"hostname":"ubuntu","timestamp":1761517074123,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":5.276041666666667,"__token":"32","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517074337,"pid":741858,"hostname":"ubuntu","timestamp":1761517074337,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":5.276041666666667,"__token":"33","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517074993,"pid":741858,"hostname":"ubuntu","timestamp":1761517074993,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":5.317708333333333,"__token":"34","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517075713,"pid":741858,"hostname":"ubuntu","timestamp":1761517075713,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":5.317708333333333,"__token":"35","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517075848,"pid":741858,"hostname":"ubuntu","timestamp":1761517075848,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":5.338541666666667,"__token":"36","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517075921,"pid":741858,"hostname":"ubuntu","timestamp":1761517075921,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":5.380208333333333,"__token":"37","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517518874,"pid":741858,"hostname":"ubuntu","timestamp":1761517518874,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6302083333333335,"__token":"38","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517519526,"pid":741858,"hostname":"ubuntu","timestamp":1761517519526,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6302083333333335,"__token":"39","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517519653,"pid":741858,"hostname":"ubuntu","timestamp":1761517519653,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.671875,"__token":"40","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517519693,"pid":741858,"hostname":"ubuntu","timestamp":1761517519693,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6927083333333335,"__token":"41","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517520413,"pid":741858,"hostname":"ubuntu","timestamp":1761517520413,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.671875,"__token":"42","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517520830,"pid":741858,"hostname":"ubuntu","timestamp":1761517520830,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6302083333333335,"__token":"43","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517527311,"pid":741858,"hostname":"ubuntu","timestamp":1761517527311,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.7005208333333335,"__token":"44","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517527959,"pid":741858,"hostname":"ubuntu","timestamp":1761517527959,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6380208333333335,"__token":"45","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517528221,"pid":741858,"hostname":"ubuntu","timestamp":1761517528221,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6380208333333335,"__token":"46","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517528486,"pid":741858,"hostname":"ubuntu","timestamp":1761517528486,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6484375,"__token":"47","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517528710,"pid":741858,"hostname":"ubuntu","timestamp":1761517528710,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6588541666666665,"__token":"48","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517529174,"pid":741858,"hostname":"ubuntu","timestamp":1761517529174,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6692708333333335,"__token":"49","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517529191,"pid":741858,"hostname":"ubuntu","timestamp":1761517529191,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.6901041666666665,"__token":"50","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517536358,"pid":741858,"hostname":"ubuntu","timestamp":1761517536358,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":7.072916666666666,"__token":"51","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517539215,"pid":741858,"hostname":"ubuntu","timestamp":1761517539215,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":6.072916666666666,"__token":"52","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517540487,"pid":741858,"hostname":"ubuntu","timestamp":1761517540487,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"START_AUDIO_PLAYBACK","seekTime":2.6901041666666665,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":6.072916666666666},"__token":"53","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","scheduleAtServerMs":1761517540674,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517545294,"pid":741858,"hostname":"ubuntu","timestamp":1761517545294,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"54","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517720759,"pid":741858,"hostname":"ubuntu","timestamp":1761517720759,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.9817708333333335,"__token":"55","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517721600,"pid":741858,"hostname":"ubuntu","timestamp":1761517721600,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.4401041666666665,"__token":"56","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728081,"pid":741858,"hostname":"ubuntu","timestamp":1761517728081,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.0651041666666665,"__token":"57","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728114,"pid":741858,"hostname":"ubuntu","timestamp":1761517728114,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":2.0338541666666665,"__token":"58","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728156,"pid":741858,"hostname":"ubuntu","timestamp":1761517728156,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":1.9609375,"__token":"59","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728157,"pid":741858,"hostname":"ubuntu","timestamp":1761517728157,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":1.8880208333333333,"__token":"60","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728186,"pid":741858,"hostname":"ubuntu","timestamp":1761517728186,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":1.5234375,"__token":"61","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728186,"pid":741858,"hostname":"ubuntu","timestamp":1761517728186,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":0.7421875,"__token":"62","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728207,"pid":741858,"hostname":"ubuntu","timestamp":1761517728207,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.14322916666666666,"__token":"63","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728219,"pid":741858,"hostname":"ubuntu","timestamp":1761517728219,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.7161458333333334,"__token":"64","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728236,"pid":741858,"hostname":"ubuntu","timestamp":1761517728236,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-1.0807291666666667,"__token":"65","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728256,"pid":741858,"hostname":"ubuntu","timestamp":1761517728256,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-1.3098958333333333,"__token":"66","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728271,"pid":741858,"hostname":"ubuntu","timestamp":1761517728271,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-1.4036458333333333,"__token":"67","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517728496,"pid":741858,"hostname":"ubuntu","timestamp":1761517728496,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-1.4140625,"__token":"68","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517732360,"pid":741858,"hostname":"ubuntu","timestamp":1761517732360,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"69","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517733623,"pid":741858,"hostname":"ubuntu","timestamp":1761517733623,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"START_AUDIO_PLAYBACK","seekTime":-1.4036458333333333,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":6.072916666666666},"__token":"70","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","scheduleAtServerMs":1761517733809,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517737527,"pid":741858,"hostname":"ubuntu","timestamp":1761517737527,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"71","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517738256,"pid":741858,"hostname":"ubuntu","timestamp":1761517738256,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":6.072916666666666},"__token":"72","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","scheduleAtServerMs":1761517738441,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761517739640,"pid":741858,"hostname":"ubuntu","timestamp":1761517739640,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"73","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518223959,"pid":741858,"hostname":"ubuntu","timestamp":1761518223959,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":1.2838541666666667,"__token":"74","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518227576,"pid":741858,"hostname":"ubuntu","timestamp":1761518227576,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":"track_1761516170845_jslcqce","startTimeInSeconds":1.8333333333333333,"clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","name":"909beat01.ogg","__token":"75","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518229103,"pid":741858,"hostname":"ubuntu","timestamp":1761518229103,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":0},"__token":"76","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518239839,"pid":741858,"hostname":"ubuntu","timestamp":1761518239839,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":7},"__token":"140","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518241655,"pid":741858,"hostname":"ubuntu","timestamp":1761518241655,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516174436_k148qeg","startTimeInSeconds":7.5},"__token":"141","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518242703,"pid":741858,"hostname":"ubuntu","timestamp":1761518242703,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":9.833333333333332},"__token":"142","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518244135,"pid":741858,"hostname":"ubuntu","timestamp":1761518244135,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516174436_k148qeg","startTimeInSeconds":8.166666666666666},"__token":"143","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518245015,"pid":741858,"hostname":"ubuntu","timestamp":1761518245015,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":5},"__token":"144","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518249791,"pid":741858,"hostname":"ubuntu","timestamp":1761518249791,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":3.833333333333333},"__token":"145","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518251329,"pid":741858,"hostname":"ubuntu","timestamp":1761518251328,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":3.1666666666666665},"__token":"146","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518252400,"pid":741858,"hostname":"ubuntu","timestamp":1761518252400,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":2.833333333333333},"__token":"147","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518256968,"pid":741858,"hostname":"ubuntu","timestamp":1761518256968,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":2.5},"__token":"148","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518258985,"pid":741858,"hostname":"ubuntu","timestamp":1761518258985,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"durationInSeconds":2.875,"pitch":0},"__token":"149","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518260487,"pid":741858,"hostname":"ubuntu","timestamp":1761518260487,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"durationInSeconds":4.020833333333333,"pitch":0},"__token":"150","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518261319,"pid":741858,"hostname":"ubuntu","timestamp":1761518261319,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"durationInSeconds":4.020833333333333,"pitch":0},"__token":"151","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518271504,"pid":741858,"hostname":"ubuntu","timestamp":1761518271504,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"durationInSeconds":2.2083333333333335,"pitch":0},"__token":"152","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518273057,"pid":741858,"hostname":"ubuntu","timestamp":1761518273057,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"durationInSeconds":1.375,"pitch":0},"__token":"153","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518274824,"pid":741858,"hostname":"ubuntu","timestamp":1761518274824,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516174436_k148qeg","startTimeInSeconds":0},"__token":"154","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518275857,"pid":741858,"hostname":"ubuntu","timestamp":1761518275856,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":0},"__token":"155","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518277537,"pid":741858,"hostname":"ubuntu","timestamp":1761518277537,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"START_AUDIO_PLAYBACK","seekTime":1.2838541666666667,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":6.072916666666666},"__token":"156","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","scheduleAtServerMs":1761518277724,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518280568,"pid":741858,"hostname":"ubuntu","timestamp":1761518280568,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"157","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518281768,"pid":741858,"hostname":"ubuntu","timestamp":1761518281768,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":6.072916666666666},"__token":"158","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","scheduleAtServerMs":1761518281955,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518284657,"pid":741858,"hostname":"ubuntu","timestamp":1761518284657,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"159","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518324739,"pid":741858,"hostname":"ubuntu","timestamp":1761518324739,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":6.072916666666666},"__token":"160","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","scheduleAtServerMs":1761518324926,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518326907,"pid":741858,"hostname":"ubuntu","timestamp":1761518326907,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"161","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518333277,"pid":741858,"hostname":"ubuntu","timestamp":1761518333277,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":6.072916666666666},"__token":"77","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","scheduleAtServerMs":1761518333449,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518338493,"pid":741858,"hostname":"ubuntu","timestamp":1761518338493,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":0},"__token":"78","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518341516,"pid":741858,"hostname":"ubuntu","timestamp":1761518341516,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":0},"__token":"79","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518344412,"pid":741858,"hostname":"ubuntu","timestamp":1761518344412,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.6901041666666665,"__token":"80","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518345126,"pid":741858,"hostname":"ubuntu","timestamp":1761518345126,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.6901041666666665,"__token":"81","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518345242,"pid":741858,"hostname":"ubuntu","timestamp":1761518345242,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.7005208333333335,"__token":"82","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518345259,"pid":741858,"hostname":"ubuntu","timestamp":1761518345259,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.7109375,"__token":"83","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518345262,"pid":741858,"hostname":"ubuntu","timestamp":1761518345262,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.7421875,"__token":"84","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518345581,"pid":741858,"hostname":"ubuntu","timestamp":1761518345581,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.7942708333333335,"__token":"85","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518345900,"pid":741858,"hostname":"ubuntu","timestamp":1761518345900,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.8046875,"__token":"86","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518346362,"pid":741858,"hostname":"ubuntu","timestamp":1761518346362,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.1796875,"__token":"87","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518347391,"pid":741858,"hostname":"ubuntu","timestamp":1761518347391,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"trackId":"track_1761516170845_jslcqce","startTimeInSeconds":0},"__token":"88","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518354564,"pid":741858,"hostname":"ubuntu","timestamp":1761518354564,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":6.072916666666666,"__token":"89","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518356613,"pid":741858,"hostname":"ubuntu","timestamp":1761518356613,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":3.3359375,"__token":"90","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518357976,"pid":741858,"hostname":"ubuntu","timestamp":1761518357976,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":0.0859375,"__token":"91","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358091,"pid":741858,"hostname":"ubuntu","timestamp":1761518358091,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":0.06510416666666667,"__token":"92","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358107,"pid":741858,"hostname":"ubuntu","timestamp":1761518358107,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":0.0546875,"__token":"93","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358124,"pid":741858,"hostname":"ubuntu","timestamp":1761518358124,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":0.033854166666666664,"__token":"94","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358141,"pid":741858,"hostname":"ubuntu","timestamp":1761518358141,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":0.013020833333333334,"__token":"95","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358157,"pid":741858,"hostname":"ubuntu","timestamp":1761518358157,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.0390625,"__token":"96","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358174,"pid":741858,"hostname":"ubuntu","timestamp":1761518358174,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.0703125,"__token":"97","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358191,"pid":741858,"hostname":"ubuntu","timestamp":1761518358191,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.1015625,"__token":"98","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358208,"pid":741858,"hostname":"ubuntu","timestamp":1761518358208,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.12239583333333333,"__token":"99","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358226,"pid":741858,"hostname":"ubuntu","timestamp":1761518358226,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.17447916666666666,"__token":"100","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358242,"pid":741858,"hostname":"ubuntu","timestamp":1761518358242,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.1953125,"__token":"101","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358258,"pid":741858,"hostname":"ubuntu","timestamp":1761518358258,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.21614583333333334,"__token":"102","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358275,"pid":741858,"hostname":"ubuntu","timestamp":1761518358275,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.24739583333333334,"__token":"103","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358293,"pid":741858,"hostname":"ubuntu","timestamp":1761518358293,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.2682291666666667,"__token":"104","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358307,"pid":741858,"hostname":"ubuntu","timestamp":1761518358307,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.2786458333333333,"__token":"105","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358323,"pid":741858,"hostname":"ubuntu","timestamp":1761518358323,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.2786458333333333,"__token":"106","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358357,"pid":741858,"hostname":"ubuntu","timestamp":1761518358357,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.3098958333333333,"__token":"107","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358373,"pid":741858,"hostname":"ubuntu","timestamp":1761518358373,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.3203125,"__token":"108","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358389,"pid":741858,"hostname":"ubuntu","timestamp":1761518358389,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.3515625,"__token":"109","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358406,"pid":741858,"hostname":"ubuntu","timestamp":1761518358406,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.3619791666666667,"__token":"110","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358424,"pid":741858,"hostname":"ubuntu","timestamp":1761518358424,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.4036458333333333,"__token":"111","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358457,"pid":741858,"hostname":"ubuntu","timestamp":1761518358457,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.4140625,"__token":"112","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358489,"pid":741858,"hostname":"ubuntu","timestamp":1761518358489,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.4244791666666667,"__token":"113","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518358500,"pid":741858,"hostname":"ubuntu","timestamp":1761518358500,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_SEEK_TIME","seekTime":-0.4348958333333333,"__token":"114","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518363277,"pid":741858,"hostname":"ubuntu","timestamp":1761518363277,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"39607ec2-bf62-4cc8-b699-c667c2124509","props":{"durationInSeconds":3.9791666666666665,"pitch":0},"__token":"115","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518382726,"pid":741858,"hostname":"ubuntu","timestamp":1761518382726,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":7.999999999999999,"__token":"116","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518384489,"pid":741858,"hostname":"ubuntu","timestamp":1761518384489,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/rave_hihat02.ogg","trackId":"track_1761516174436_k148qeg","startTimeInSeconds":4.166666666666666,"clipId":"40abc23d-71e5-448b-be68-75fcd92b079e","name":"rave_hihat02.ogg","__token":"117","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518386326,"pid":741858,"hostname":"ubuntu","timestamp":1761518386326,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"40abc23d-71e5-448b-be68-75fcd92b079e","props":{"trackId":"track_1761516174436_k148qeg","startTimeInSeconds":4},"__token":"118","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518397978,"pid":741858,"hostname":"ubuntu","timestamp":1761518397978,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/jungle01.ogg","trackId":"track_1761516170845_jslcqce","startTimeInSeconds":7.333333333333333,"clipId":"45cd99de-5f00-48c8-a53c-3606544c18ad","name":"jungle01.ogg","__token":"119","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518400601,"pid":741858,"hostname":"ubuntu","timestamp":1761518400601,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"45cd99de-5f00-48c8-a53c-3606544c18ad","props":{"durationInSeconds":0.6979166666666666,"pitch":0},"__token":"120","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518406184,"pid":741858,"hostname":"ubuntu","timestamp":1761518406184,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"40abc23d-71e5-448b-be68-75fcd92b079e","props":{"trackId":"track_1761516174436_k148qeg","startTimeInSeconds":4},"__token":"162","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518407903,"pid":741858,"hostname":"ubuntu","timestamp":1761518407903,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"163","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518408495,"pid":741858,"hostname":"ubuntu","timestamp":1761518408495,"socketId":"wmWsIHi7zbKi_VIvAAAF","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":7.999999999999999},"__token":"164","__senderId":"wmWsIHi7zbKi_VIvAAAF","__senderName":"Alicer-wmWs","scheduleAtServerMs":1761518408682,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518455161,"pid":741858,"hostname":"ubuntu","timestamp":1761518455161,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"121","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518456113,"pid":741858,"hostname":"ubuntu","timestamp":1761518456113,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":7.999999999999999},"__token":"122","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","scheduleAtServerMs":1761518456302,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518470209,"pid":741858,"hostname":"ubuntu","timestamp":1761518470209,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"45cd99de-5f00-48c8-a53c-3606544c18ad","props":{"durationInSeconds":0.53125,"pitch":0},"__token":"123","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518474452,"pid":741858,"hostname":"ubuntu","timestamp":1761518474452,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"40abc23d-71e5-448b-be68-75fcd92b079e","props":{"trackId":"track_1761516174436_k148qeg","startTimeInSeconds":4},"__token":"124","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518478306,"pid":741858,"hostname":"ubuntu","timestamp":1761518478306,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"40abc23d-71e5-448b-be68-75fcd92b079e","props":{"trackId":"track_1761516174436_k148qeg","startTimeInSeconds":4.166666666666666},"__token":"125","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518485716,"pid":741858,"hostname":"ubuntu","timestamp":1761518485716,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"126","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518486891,"pid":741858,"hostname":"ubuntu","timestamp":1761518486891,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":7.999999999999999},"__token":"127","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","scheduleAtServerMs":1761518487078,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761518504230,"pid":741858,"hostname":"ubuntu","timestamp":1761518504230,"socketId":"uzfTaT8dhn0Lm4VUAAAD","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"128","__senderId":"uzfTaT8dhn0Lm4VUAAAD","__senderName":"Alicer-uzfT","__syncMode":"global"},"msg":"action_received"}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1 +0,0 @@
|
|||
{"level":30,"time":1761595005076,"pid":2027524,"hostname":"ubuntu","timestamp":1761595005076,"socketId":"WcQ1QPv3Jm0fT_BVAAAB","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"WcQ1QPv3Jm0fT_BVAAAB","__senderName":"Alicer-WcQ1"},"msg":"action_received"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"level":30,"time":1761595046866,"pid":2028826,"hostname":"ubuntu","timestamp":1761595046866,"socketId":"w6W0H9qK0A8OprB3AAAB","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"w6W0H9qK0A8OprB3AAAB","__senderName":"Alicer-w6W0"},"msg":"action_received"}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1 +0,0 @@
|
|||
{"level":30,"time":1761689737230,"pid":3589288,"hostname":"ubuntu","timestamp":1761689737230,"socketId":"ASQB1EQ3W-aOnI6vAAAD","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"ASQB1EQ3W-aOnI6vAAAD","__senderName":"Alicer-ASQB"},"msg":"action_received"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"level":30,"time":1761690673639,"pid":3605182,"hostname":"ubuntu","timestamp":1761690673638,"socketId":"pCS58062xW8Axkl9AAAB","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"pCS58062xW8Axkl9AAAB","__senderName":"Alicer-pCS5"},"msg":"action_received"}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1,5 +0,0 @@
|
|||
{"level":30,"time":1761613010307,"pid":2330065,"hostname":"ubuntu","timestamp":1761613010307,"socketId":"fRRbf0JwF38jJPpsAAAD","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"4","__senderId":"fRRbf0JwF38jJPpsAAAD","__senderName":"Anônimo-fRRb"},"msg":"action_received"}
|
||||
{"level":30,"time":1761613011730,"pid":2330065,"hostname":"ubuntu","timestamp":1761613011730,"socketId":"fRRbf0JwF38jJPpsAAAD","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"5","__senderId":"fRRbf0JwF38jJPpsAAAD","__senderName":"Anônimo-fRRb"},"msg":"action_received"}
|
||||
{"level":30,"time":1761613031901,"pid":2330065,"hostname":"ubuntu","timestamp":1761613031901,"socketId":"tkcFLLU39_jT51FIAAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"tkcFLLU39_jT51FIAAAF","__senderName":"Alicer-tkcF"},"msg":"action_received"}
|
||||
{"level":30,"time":1761613034668,"pid":2330065,"hostname":"ubuntu","timestamp":1761613034668,"socketId":"tkcFLLU39_jT51FIAAAF","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"2","__senderId":"tkcFLLU39_jT51FIAAAF","__senderName":"Alicer-tkcF","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1761613303975,"pid":2330065,"hostname":"ubuntu","timestamp":1761613303975,"socketId":"poGWuWRFmpwiDLzpAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"poGWuWRFmpwiDLzpAAAH","__senderName":"Alicer-poGW"},"msg":"action_received"}
|
||||
|
|
@ -1 +0,0 @@
|
|||
{"level":30,"time":1762283651011,"pid":2523162,"hostname":"ubuntu","timestamp":1762283651010,"socketId":"2_HkvSElpHCinNvLAAAD","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"2_HkvSElpHCinNvLAAAD","__senderName":"Alicer-2_Hk"},"msg":"action_received"}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1,4 +0,0 @@
|
|||
{"level":30,"time":1762338349098,"pid":3059021,"hostname":"ubuntu","timestamp":1762338349098,"socketId":"Tc5nbWviseZsyqK6AAAV","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderName":"Alicer-6578"},"msg":"action_received"}
|
||||
{"level":30,"time":1762338371674,"pid":3059021,"hostname":"ubuntu","timestamp":1762338371674,"socketId":"Tc5nbWviseZsyqK6AAAV","action":{"type":"TOGGLE_PLAYBACK","__token":"2","__senderId":"Tc5nbWviseZsyqK6AAAV","__senderName":"Alicer-Tc5n","scheduleAtServerMs":1762338371762,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762338372738,"pid":3059021,"hostname":"ubuntu","timestamp":1762338372738,"socketId":"Tc5nbWviseZsyqK6AAAV","action":{"type":"STOP_PLAYBACK","__token":"3","__senderId":"Tc5nbWviseZsyqK6AAAV","__senderName":"Alicer-Tc5n","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762338380431,"pid":3059021,"hostname":"ubuntu","timestamp":1762338380431,"socketId":"Tc5nbWviseZsyqK6AAAV","action":{"type":"SET_SEEK_TIME","seekTime":3.8409620920817056,"__token":"4","__senderId":"Tc5nbWviseZsyqK6AAAV","__senderName":"Alicer-Tc5n","__syncMode":"global"},"msg":"action_received"}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1,24 +0,0 @@
|
|||
{"level":30,"time":1762302188117,"pid":2957627,"hostname":"ubuntu","timestamp":1762302188117,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302195131,"pid":2957627,"hostname":"ubuntu","timestamp":1762302195131,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"TOGGLE_PLAYBACK","__token":"2","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop","scheduleAtServerMs":1762302195320,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302196631,"pid":2957627,"hostname":"ubuntu","timestamp":1762302196631,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"STOP_PLAYBACK","__token":"3","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302235153,"pid":2957627,"hostname":"ubuntu","timestamp":1762302235153,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_B","value":"5","__token":"4","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302236680,"pid":2957627,"hostname":"ubuntu","timestamp":1762302236680,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_B","value":"4","__token":"5","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302240744,"pid":2957627,"hostname":"ubuntu","timestamp":1762302240744,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_A","value":"5","__token":"6","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302242145,"pid":2957627,"hostname":"ubuntu","timestamp":1762302242145,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_A","value":"4","__token":"7","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302246025,"pid":2957627,"hostname":"ubuntu","timestamp":1762302246025,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_A","value":"5","__token":"8","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302248385,"pid":2957627,"hostname":"ubuntu","timestamp":1762302248385,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_A","value":"4","__token":"9","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302253038,"pid":2957627,"hostname":"ubuntu","timestamp":1762302253038,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"ADD_AUDIO_LANE","trackId":"track_1762302178952_wcttlam","__token":"10","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302256405,"pid":2957627,"hostname":"ubuntu","timestamp":1762302256405,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_A","value":"5","__token":"11","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302260775,"pid":2957627,"hostname":"ubuntu","timestamp":1762302260775,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_A","value":"4","__token":"12","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302262125,"pid":2957627,"hostname":"ubuntu","timestamp":1762302262125,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_A","value":"3","__token":"13","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302264521,"pid":2957627,"hostname":"ubuntu","timestamp":1762302264521,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_TIMESIG_A","value":"4","__token":"14","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302276019,"pid":2957627,"hostname":"ubuntu","timestamp":1762302276019,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"15","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302304764,"pid":2957627,"hostname":"ubuntu","timestamp":1762302304764,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.317708333333334,"__token":"16","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302307608,"pid":2957627,"hostname":"ubuntu","timestamp":1762302307608,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_BARS","value":"5","__token":"17","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302310602,"pid":2957627,"hostname":"ubuntu","timestamp":1762302310602,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_BARS","value":"4","__token":"18","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302317921,"pid":2957627,"hostname":"ubuntu","timestamp":1762302317921,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":10.661458333333334,"__token":"19","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302319371,"pid":2957627,"hostname":"ubuntu","timestamp":1762302319371,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":true,"loopStartTime":0,"loopEndTime":10.661458333333334},"__token":"20","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop","scheduleAtServerMs":1762302319558,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302646626,"pid":2957627,"hostname":"ubuntu","timestamp":1762302646626,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_BARS","value":"5","__token":"21","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302647499,"pid":2957627,"hostname":"ubuntu","timestamp":1762302647499,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_BARS","value":"6","__token":"22","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302653247,"pid":2957627,"hostname":"ubuntu","timestamp":1762302653247,"socketId":"FcopcdPtJpq9mvaJAAAL","action":{"type":"SET_BARS","value":"7","__token":"23","__senderId":"FcopcdPtJpq9mvaJAAAL","__senderName":"Alicer-Fcop"},"msg":"action_received"}
|
||||
{"level":30,"time":1762302666979,"pid":2957627,"hostname":"ubuntu","timestamp":1762302666979,"socketId":"nTafb88_mh2uUp2iAAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"nTafb88_mh2uUp2iAAAN","__senderName":"Alicer-nTaf"},"msg":"action_received"}
|
||||
|
|
@ -1,15 +0,0 @@
|
|||
{"level":30,"time":1762304721819,"pid":3059021,"hostname":"ubuntu","timestamp":1762304721818,"socketId":"5Aipxv7gPJTN-Z8_AAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"5Aipxv7gPJTN-Z8_AAAN","__senderName":"Alicer-5Aip"},"msg":"action_received"}
|
||||
{"level":30,"time":1762304723523,"pid":3059021,"hostname":"ubuntu","timestamp":1762304723523,"socketId":"5Aipxv7gPJTN-Z8_AAAN","action":{"type":"TOGGLE_NOTE","trackIndex":0,"patternIndex":0,"stepIndex":0,"isActive":true,"__token":"2","__senderId":"5Aipxv7gPJTN-Z8_AAAN","__senderName":"Alicer-5Aip"},"msg":"action_received"}
|
||||
{"level":30,"time":1762304724302,"pid":3059021,"hostname":"ubuntu","timestamp":1762304724302,"socketId":"5Aipxv7gPJTN-Z8_AAAN","action":{"type":"TOGGLE_NOTE","trackIndex":0,"patternIndex":0,"stepIndex":0,"isActive":false,"__token":"3","__senderId":"5Aipxv7gPJTN-Z8_AAAN","__senderName":"Alicer-5Aip"},"msg":"action_received"}
|
||||
{"level":30,"time":1762304847366,"pid":3059021,"hostname":"ubuntu","timestamp":1762304847366,"socketId":"4LF0oJrOV5v0tipSAAAP","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"4LF0oJrOV5v0tipSAAAP","__senderName":"Alicer-4LF0"},"msg":"action_received"}
|
||||
{"level":30,"time":1762304848669,"pid":3059021,"hostname":"ubuntu","timestamp":1762304848669,"socketId":"4LF0oJrOV5v0tipSAAAP","action":{"type":"TOGGLE_NOTE","trackIndex":0,"patternIndex":0,"stepIndex":0,"isActive":true,"__token":"2","__senderId":"4LF0oJrOV5v0tipSAAAP","__senderName":"Alicer-4LF0"},"msg":"action_received"}
|
||||
{"level":30,"time":1762304852423,"pid":3059021,"hostname":"ubuntu","timestamp":1762304852423,"socketId":"5Aipxv7gPJTN-Z8_AAAN","action":{"type":"TOGGLE_NOTE","trackIndex":0,"patternIndex":0,"stepIndex":0,"isActive":false,"__token":"4","__senderId":"5Aipxv7gPJTN-Z8_AAAN","__senderName":"Alicer-5Aip"},"msg":"action_received"}
|
||||
{"level":30,"time":1762305077100,"pid":3059021,"hostname":"ubuntu","timestamp":1762305077100,"socketId":"5Aipxv7gPJTN-Z8_AAAN","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"5","__senderId":"5Aipxv7gPJTN-Z8_AAAN","__senderName":"Alicer-5Aip","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762305084928,"pid":3059021,"hostname":"ubuntu","timestamp":1762305084928,"socketId":"5Aipxv7gPJTN-Z8_AAAN","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"7","__senderId":"5Aipxv7gPJTN-Z8_AAAN","__senderName":"Alicer-5Aip","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762305094485,"pid":3059021,"hostname":"ubuntu","timestamp":1762305094485,"socketId":"4LF0oJrOV5v0tipSAAAP","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"4","__senderId":"4LF0oJrOV5v0tipSAAAP","__senderName":"Alicer-4LF0","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762305096017,"pid":3059021,"hostname":"ubuntu","timestamp":1762305096017,"socketId":"4LF0oJrOV5v0tipSAAAP","action":{"type":"START_AUDIO_PLAYBACK","seekTime":0,"loopState":{"isLoopActive":false,"loopStartTime":0,"loopEndTime":8},"__token":"5","__senderId":"4LF0oJrOV5v0tipSAAAP","__senderName":"Alicer-4LF0","scheduleAtServerMs":1762305096205,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762305096754,"pid":3059021,"hostname":"ubuntu","timestamp":1762305096754,"socketId":"4LF0oJrOV5v0tipSAAAP","action":{"type":"STOP_AUDIO_PLAYBACK","rewind":true,"__token":"6","__senderId":"4LF0oJrOV5v0tipSAAAP","__senderName":"Alicer-4LF0","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762305099250,"pid":3059021,"hostname":"ubuntu","timestamp":1762305099250,"socketId":"4LF0oJrOV5v0tipSAAAP","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"7","__senderId":"4LF0oJrOV5v0tipSAAAP","__senderName":"Alicer-4LF0","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762305105386,"pid":3059021,"hostname":"ubuntu","timestamp":1762305105386,"socketId":"5Aipxv7gPJTN-Z8_AAAN","action":{"type":"SET_LOOP_STATE","isLoopActive":true,"loopStartTime":0,"loopEndTime":8,"__token":"9","__senderId":"5Aipxv7gPJTN-Z8_AAAN","__senderName":"Alicer-5Aip","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1762364474581,"pid":3059021,"hostname":"ubuntu","timestamp":1762364474581,"socketId":"aXiMWlUqpNLYd80oAAAh","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"aXiMWlUqpNLYd80oAAAh","__senderName":"Alicer-aXiM"},"msg":"action_received"}
|
||||
{"level":30,"time":1762367359293,"pid":3059021,"hostname":"ubuntu","timestamp":1762367359293,"socketId":"iICsIRAIp2R_6ybWAAAl","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"iICsIRAIp2R_6ybWAAAl","__senderName":"Alicer-iICs"},"msg":"action_received"}
|
||||
Binary file not shown.
File diff suppressed because one or more lines are too long
|
|
@ -1,2 +0,0 @@
|
|||
{"level":30,"time":1762980056562,"pid":2587819,"hostname":"ubuntu","timestamp":1762980056562,"socketId":"QvekitV8wcwavNWAAAGI","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"QvekitV8wcwavNWAAAGI","__senderName":"Alicer-Qvek"},"msg":"action_received"}
|
||||
{"level":30,"time":1762987723672,"pid":2587819,"hostname":"ubuntu","timestamp":1762987723672,"socketId":"KmizFldq5cpxphv5AAGw","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"KmizFldq5cpxphv5AAGw","__senderName":"Alicer-Kmiz"},"msg":"action_received"}
|
||||
File diff suppressed because one or more lines are too long
|
|
@ -1,128 +0,0 @@
|
|||
{"level":30,"time":1763491045108,"pid":1793,"hostname":"ubuntu","timestamp":1763491045107,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491057034,"pid":1793,"hostname":"ubuntu","timestamp":1763491057034,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":0,"patternIndex":0,"stepIndex":2,"isActive":true,"__token":"2","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491059138,"pid":1793,"hostname":"ubuntu","timestamp":1763491059138,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":0,"patternIndex":0,"stepIndex":2,"isActive":false,"__token":"3","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491072652,"pid":1793,"hostname":"ubuntu","timestamp":1763491072652,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_TRACK_SAMPLE","trackIndex":4,"filePath":"src/samples/misc/applause01.ogg","__token":"4","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491074387,"pid":1793,"hostname":"ubuntu","timestamp":1763491074387,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":0,"isActive":true,"__token":"5","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491074892,"pid":1793,"hostname":"ubuntu","timestamp":1763491074892,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":4,"isActive":true,"__token":"6","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491075764,"pid":1793,"hostname":"ubuntu","timestamp":1763491075764,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":9,"isActive":true,"__token":"7","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491076281,"pid":1793,"hostname":"ubuntu","timestamp":1763491076281,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":13,"isActive":true,"__token":"8","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491097395,"pid":1793,"hostname":"ubuntu","timestamp":1763491097395,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_SYNC_MODE","mode":"local","__token":"9","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491103201,"pid":1793,"hostname":"ubuntu","timestamp":1763491103201,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_SEEK_TIME","seekTime":0.7466517857142857,"__token":"11","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491123062,"pid":1793,"hostname":"ubuntu","timestamp":1763491123062,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_PLAYBACK","__token":"12","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG","scheduleAtServerMs":1763491123258,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491141561,"pid":1793,"hostname":"ubuntu","timestamp":1763491141561,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"ADD_TRACK","__token":"13","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491146190,"pid":1793,"hostname":"ubuntu","timestamp":1763491146190,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_TRACK_SAMPLE","trackIndex":6,"filePath":"src/samples/misc/dong03.ogg","__token":"14","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491149194,"pid":1793,"hostname":"ubuntu","timestamp":1763491149194,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":1,"isActive":true,"__token":"15","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491152140,"pid":1793,"hostname":"ubuntu","timestamp":1763491152140,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":4,"isActive":true,"__token":"16","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491153101,"pid":1793,"hostname":"ubuntu","timestamp":1763491153101,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":7,"isActive":true,"__token":"17","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491154132,"pid":1793,"hostname":"ubuntu","timestamp":1763491154132,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":10,"isActive":true,"__token":"18","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491155199,"pid":1793,"hostname":"ubuntu","timestamp":1763491155199,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":13,"isActive":true,"__token":"19","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491156673,"pid":1793,"hostname":"ubuntu","timestamp":1763491156673,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":16,"isActive":true,"__token":"20","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491157729,"pid":1793,"hostname":"ubuntu","timestamp":1763491157729,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":19,"isActive":true,"__token":"21","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491158802,"pid":1793,"hostname":"ubuntu","timestamp":1763491158802,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":22,"isActive":true,"__token":"22","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491159792,"pid":1793,"hostname":"ubuntu","timestamp":1763491159792,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":25,"isActive":true,"__token":"23","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491160787,"pid":1793,"hostname":"ubuntu","timestamp":1763491160787,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":6,"patternIndex":0,"stepIndex":28,"isActive":true,"__token":"24","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491175563,"pid":1793,"hostname":"ubuntu","timestamp":1763491175563,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"ADD_TRACK","__token":"25","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491179839,"pid":1793,"hostname":"ubuntu","timestamp":1763491179839,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_TRACK_SAMPLE","trackIndex":7,"filePath":"src/samples/misc/snaph01.ogg","__token":"26","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491181031,"pid":1793,"hostname":"ubuntu","timestamp":1763491181031,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":0,"isActive":true,"__token":"27","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491182290,"pid":1793,"hostname":"ubuntu","timestamp":1763491182290,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":1,"isActive":true,"__token":"28","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491183889,"pid":1793,"hostname":"ubuntu","timestamp":1763491183889,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":4,"isActive":true,"__token":"29","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491184395,"pid":1793,"hostname":"ubuntu","timestamp":1763491184395,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":5,"isActive":true,"__token":"30","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491185821,"pid":1793,"hostname":"ubuntu","timestamp":1763491185821,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":8,"isActive":true,"__token":"31","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491186383,"pid":1793,"hostname":"ubuntu","timestamp":1763491186383,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":9,"isActive":true,"__token":"32","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491187222,"pid":1793,"hostname":"ubuntu","timestamp":1763491187222,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":12,"isActive":true,"__token":"33","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491188218,"pid":1793,"hostname":"ubuntu","timestamp":1763491188218,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":13,"isActive":true,"__token":"34","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491189098,"pid":1793,"hostname":"ubuntu","timestamp":1763491189098,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":16,"isActive":true,"__token":"35","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491189659,"pid":1793,"hostname":"ubuntu","timestamp":1763491189659,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":17,"isActive":true,"__token":"36","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491190572,"pid":1793,"hostname":"ubuntu","timestamp":1763491190572,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":20,"isActive":true,"__token":"37","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491191035,"pid":1793,"hostname":"ubuntu","timestamp":1763491191035,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":21,"isActive":true,"__token":"38","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491192224,"pid":1793,"hostname":"ubuntu","timestamp":1763491192224,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":23,"isActive":true,"__token":"39","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491192615,"pid":1793,"hostname":"ubuntu","timestamp":1763491192615,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":23,"isActive":false,"__token":"40","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491193129,"pid":1793,"hostname":"ubuntu","timestamp":1763491193129,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":24,"isActive":true,"__token":"41","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491193685,"pid":1793,"hostname":"ubuntu","timestamp":1763491193685,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":25,"isActive":true,"__token":"42","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491194287,"pid":1793,"hostname":"ubuntu","timestamp":1763491194287,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":27,"isActive":true,"__token":"43","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491194788,"pid":1793,"hostname":"ubuntu","timestamp":1763491194788,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":28,"isActive":true,"__token":"44","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491205333,"pid":1793,"hostname":"ubuntu","timestamp":1763491205333,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":1,"isActive":false,"__token":"45","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491206467,"pid":1793,"hostname":"ubuntu","timestamp":1763491206467,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":3,"isActive":true,"__token":"46","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491208361,"pid":1793,"hostname":"ubuntu","timestamp":1763491208361,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":9,"isActive":false,"__token":"47","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491209147,"pid":1793,"hostname":"ubuntu","timestamp":1763491209147,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":11,"isActive":true,"__token":"48","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491210458,"pid":1793,"hostname":"ubuntu","timestamp":1763491210458,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":17,"isActive":false,"__token":"49","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491211030,"pid":1793,"hostname":"ubuntu","timestamp":1763491211030,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":19,"isActive":true,"__token":"50","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491212571,"pid":1793,"hostname":"ubuntu","timestamp":1763491212571,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":25,"isActive":false,"__token":"51","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491212994,"pid":1793,"hostname":"ubuntu","timestamp":1763491212994,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":7,"patternIndex":0,"stepIndex":26,"isActive":true,"__token":"52","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491222828,"pid":1793,"hostname":"ubuntu","timestamp":1763491222828,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"139","__token":"53","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491223271,"pid":1793,"hostname":"ubuntu","timestamp":1763491223271,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"138","__token":"54","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491223499,"pid":1793,"hostname":"ubuntu","timestamp":1763491223499,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"137","__token":"55","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491223722,"pid":1793,"hostname":"ubuntu","timestamp":1763491223722,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"136","__token":"56","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491223889,"pid":1793,"hostname":"ubuntu","timestamp":1763491223889,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"135","__token":"57","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491224077,"pid":1793,"hostname":"ubuntu","timestamp":1763491224077,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"134","__token":"58","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491224210,"pid":1793,"hostname":"ubuntu","timestamp":1763491224210,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"133","__token":"59","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491224355,"pid":1793,"hostname":"ubuntu","timestamp":1763491224355,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"132","__token":"60","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491224537,"pid":1793,"hostname":"ubuntu","timestamp":1763491224537,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"131","__token":"61","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491224658,"pid":1793,"hostname":"ubuntu","timestamp":1763491224658,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"130","__token":"62","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491224819,"pid":1793,"hostname":"ubuntu","timestamp":1763491224819,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"129","__token":"63","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491224996,"pid":1793,"hostname":"ubuntu","timestamp":1763491224996,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"128","__token":"64","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491225130,"pid":1793,"hostname":"ubuntu","timestamp":1763491225130,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"127","__token":"65","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491225298,"pid":1793,"hostname":"ubuntu","timestamp":1763491225298,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"126","__token":"66","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491225439,"pid":1793,"hostname":"ubuntu","timestamp":1763491225439,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"125","__token":"67","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491225602,"pid":1793,"hostname":"ubuntu","timestamp":1763491225602,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"124","__token":"68","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491225803,"pid":1793,"hostname":"ubuntu","timestamp":1763491225803,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"123","__token":"69","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491225995,"pid":1793,"hostname":"ubuntu","timestamp":1763491225995,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"122","__token":"70","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491226162,"pid":1793,"hostname":"ubuntu","timestamp":1763491226162,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"121","__token":"71","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491226350,"pid":1793,"hostname":"ubuntu","timestamp":1763491226350,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"120","__token":"72","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491226507,"pid":1793,"hostname":"ubuntu","timestamp":1763491226507,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"119","__token":"73","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491226675,"pid":1793,"hostname":"ubuntu","timestamp":1763491226675,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"118","__token":"74","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491226858,"pid":1793,"hostname":"ubuntu","timestamp":1763491226858,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"117","__token":"75","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491227730,"pid":1793,"hostname":"ubuntu","timestamp":1763491227729,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"116","__token":"76","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491227922,"pid":1793,"hostname":"ubuntu","timestamp":1763491227922,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"115","__token":"77","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491228090,"pid":1793,"hostname":"ubuntu","timestamp":1763491228090,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"114","__token":"78","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491228252,"pid":1793,"hostname":"ubuntu","timestamp":1763491228252,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"113","__token":"79","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491228411,"pid":1793,"hostname":"ubuntu","timestamp":1763491228411,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"112","__token":"80","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491228580,"pid":1793,"hostname":"ubuntu","timestamp":1763491228580,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"111","__token":"81","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491228738,"pid":1793,"hostname":"ubuntu","timestamp":1763491228738,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"110","__token":"82","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491228907,"pid":1793,"hostname":"ubuntu","timestamp":1763491228907,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"109","__token":"83","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491229086,"pid":1793,"hostname":"ubuntu","timestamp":1763491229086,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"108","__token":"84","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491229258,"pid":1793,"hostname":"ubuntu","timestamp":1763491229257,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"107","__token":"85","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491229427,"pid":1793,"hostname":"ubuntu","timestamp":1763491229427,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"106","__token":"86","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491229602,"pid":1793,"hostname":"ubuntu","timestamp":1763491229602,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"105","__token":"87","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491229787,"pid":1793,"hostname":"ubuntu","timestamp":1763491229787,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"104","__token":"88","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491229970,"pid":1793,"hostname":"ubuntu","timestamp":1763491229970,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"103","__token":"89","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491230178,"pid":1793,"hostname":"ubuntu","timestamp":1763491230178,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"102","__token":"90","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491230362,"pid":1793,"hostname":"ubuntu","timestamp":1763491230362,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"101","__token":"91","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491230529,"pid":1793,"hostname":"ubuntu","timestamp":1763491230529,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"100","__token":"92","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491230713,"pid":1793,"hostname":"ubuntu","timestamp":1763491230713,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"99","__token":"93","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491230897,"pid":1793,"hostname":"ubuntu","timestamp":1763491230897,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"98","__token":"94","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491231091,"pid":1793,"hostname":"ubuntu","timestamp":1763491231091,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"97","__token":"95","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491231279,"pid":1793,"hostname":"ubuntu","timestamp":1763491231279,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"96","__token":"96","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491231458,"pid":1793,"hostname":"ubuntu","timestamp":1763491231458,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"95","__token":"97","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491231653,"pid":1793,"hostname":"ubuntu","timestamp":1763491231653,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"94","__token":"98","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491231844,"pid":1793,"hostname":"ubuntu","timestamp":1763491231844,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"93","__token":"99","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491232051,"pid":1793,"hostname":"ubuntu","timestamp":1763491232051,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"92","__token":"100","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491232226,"pid":1793,"hostname":"ubuntu","timestamp":1763491232226,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"91","__token":"101","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491232425,"pid":1793,"hostname":"ubuntu","timestamp":1763491232425,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"90","__token":"102","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491232592,"pid":1793,"hostname":"ubuntu","timestamp":1763491232592,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"SET_BPM","value":"89","__token":"103","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491238626,"pid":1793,"hostname":"ubuntu","timestamp":1763491238626,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"STOP_PLAYBACK","__token":"104","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG","__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491656531,"pid":1793,"hostname":"ubuntu","timestamp":1763491656531,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491669432,"pid":1793,"hostname":"ubuntu","timestamp":1763491669432,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_PLAYBACK","__token":"2","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1","scheduleAtServerMs":1763491669628,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491674833,"pid":1793,"hostname":"ubuntu","timestamp":1763491674833,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":3,"patternIndex":0,"stepIndex":6,"isActive":true,"__token":"105","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491678409,"pid":1793,"hostname":"ubuntu","timestamp":1763491678409,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_PLAYBACK","__token":"106","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG","scheduleAtServerMs":1763491678607,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491681129,"pid":1793,"hostname":"ubuntu","timestamp":1763491681129,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":2,"patternIndex":0,"stepIndex":16,"isActive":true,"__token":"107","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491683992,"pid":1793,"hostname":"ubuntu","timestamp":1763491683992,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_PLAYBACK","__token":"108","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG","scheduleAtServerMs":1763491684191,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491686056,"pid":1793,"hostname":"ubuntu","timestamp":1763491686056,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":2,"patternIndex":0,"stepIndex":0,"isActive":true,"__token":"109","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491689409,"pid":1793,"hostname":"ubuntu","timestamp":1763491689409,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":2,"patternIndex":0,"stepIndex":4,"isActive":true,"__token":"110","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491690714,"pid":1793,"hostname":"ubuntu","timestamp":1763491690714,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":2,"patternIndex":0,"stepIndex":8,"isActive":true,"__token":"111","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491693806,"pid":1793,"hostname":"ubuntu","timestamp":1763491693806,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":0,"isActive":true,"__token":"3","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491694624,"pid":1793,"hostname":"ubuntu","timestamp":1763491694624,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":2,"patternIndex":0,"stepIndex":4,"isActive":false,"__token":"112","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491695695,"pid":1793,"hostname":"ubuntu","timestamp":1763491695695,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":2,"patternIndex":0,"stepIndex":5,"isActive":true,"__token":"113","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491699112,"pid":1793,"hostname":"ubuntu","timestamp":1763491699112,"socketId":"xgaGUbDtJgAUqFkfAAAB","action":{"type":"TOGGLE_NOTE","trackIndex":2,"patternIndex":0,"stepIndex":14,"isActive":true,"__token":"114","__senderId":"xgaGUbDtJgAUqFkfAAAB","__senderName":"Alicer-xgaG"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491700870,"pid":1793,"hostname":"ubuntu","timestamp":1763491700870,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_PLAYBACK","__token":"4","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1","scheduleAtServerMs":1763491701066,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491708321,"pid":1793,"hostname":"ubuntu","timestamp":1763491708321,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":1,"isActive":true,"__token":"5","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491708749,"pid":1793,"hostname":"ubuntu","timestamp":1763491708749,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":2,"isActive":true,"__token":"6","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491709188,"pid":1793,"hostname":"ubuntu","timestamp":1763491709188,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":3,"isActive":true,"__token":"7","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491713779,"pid":1793,"hostname":"ubuntu","timestamp":1763491713779,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":3,"isActive":false,"__token":"8","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491714176,"pid":1793,"hostname":"ubuntu","timestamp":1763491714176,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":2,"isActive":false,"__token":"9","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491714691,"pid":1793,"hostname":"ubuntu","timestamp":1763491714691,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":1,"isActive":false,"__token":"10","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491715113,"pid":1793,"hostname":"ubuntu","timestamp":1763491715113,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":4,"patternIndex":0,"stepIndex":0,"isActive":false,"__token":"11","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491716352,"pid":1793,"hostname":"ubuntu","timestamp":1763491716352,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":5,"patternIndex":0,"stepIndex":0,"isActive":true,"__token":"12","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491720456,"pid":1793,"hostname":"ubuntu","timestamp":1763491720456,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_NOTE","trackIndex":5,"patternIndex":0,"stepIndex":2,"isActive":true,"__token":"13","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491732916,"pid":1793,"hostname":"ubuntu","timestamp":1763491732916,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"TOGGLE_PLAYBACK","__token":"14","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1","scheduleAtServerMs":1763491733112,"__syncMode":"global"},"msg":"action_received"}
|
||||
{"level":30,"time":1763491735341,"pid":1793,"hostname":"ubuntu","timestamp":1763491735341,"socketId":"WaY1BM2JAzQQ5R8WAAAD","action":{"type":"STOP_PLAYBACK","__token":"15","__senderId":"WaY1BM2JAzQQ5R8WAAAD","__senderName":"Alicer-WaY1","__syncMode":"global"},"msg":"action_received"}
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
{"level":30,"time":1761491772326,"pid":347500,"hostname":"ubuntu","timestamp":1761491772325,"roomName":"sessao-oli2m","socketId":"ioh05ccCOkkbBJ3JAAAB","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"ioh05ccCOkkbBJ3JAAAB","__senderName":"Alicer-ioh0"},"msg":"action_received"}
|
||||
{"level":30,"time":1761491786840,"pid":347500,"hostname":"ubuntu","timestamp":1761491786840,"roomName":"sessao-4gv3w","socketId":"LbqzYFy-7o7cOWjrAAAF","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"LbqzYFy-7o7cOWjrAAAF","__senderName":"Alicer-Lbqz"},"msg":"action_received"}
|
||||
{"level":30,"time":1761491804880,"pid":347500,"hostname":"ubuntu","timestamp":1761491804880,"roomName":"sessao-oli2m","socketId":"_hBGMFgq3FYLMXIPAAAH","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"_hBGMFgq3FYLMXIPAAAH","__senderName":"Alicer-_hBG"},"msg":"action_received"}
|
||||
{"level":30,"time":1761491814257,"pid":347500,"hostname":"ubuntu","timestamp":1761491814257,"roomName":"sessao-oli2m","socketId":"_hBGMFgq3FYLMXIPAAAH","action":{"type":"ADD_AUDIO_CLIP","filePath":"src/samples/beats/909beat01.ogg","trackId":1761491736229,"startTimeInSeconds":0.5,"clipId":"967b8f5c-65f2-4157-99e2-27ffee81b41f","name":"909beat01.ogg","__token":"2","__senderId":"_hBGMFgq3FYLMXIPAAAH","__senderName":"Alicer-_hBG"},"msg":"action_received"}
|
||||
{"level":30,"time":1761491815639,"pid":347500,"hostname":"ubuntu","timestamp":1761491815639,"roomName":"sessao-oli2m","socketId":"_hBGMFgq3FYLMXIPAAAH","action":{"type":"UPDATE_AUDIO_CLIP","clipId":"967b8f5c-65f2-4157-99e2-27ffee81b41f","props":{"trackId":1761491736229,"startTimeInSeconds":0},"__token":"3","__senderId":"_hBGMFgq3FYLMXIPAAAH","__senderName":"Alicer-_hBG"},"msg":"action_received"}
|
||||
{"level":30,"time":1761491832687,"pid":347500,"hostname":"ubuntu","timestamp":1761491832687,"roomName":"sessao-oli2m","socketId":"ioh05ccCOkkbBJ3JAAAB","action":{"type":"STOP_PLAYBACK","__token":"2","__senderId":"ioh05ccCOkkbBJ3JAAAB","__senderName":"Alicer-ioh0","scheduleAtServerMs":1761491832873},"msg":"action_received"}
|
||||
{"level":30,"time":1761491834741,"pid":347500,"hostname":"ubuntu","timestamp":1761491834741,"roomName":"sessao-oli2m","socketId":"yQZhQxD_wL6ARs0PAAAJ","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"yQZhQxD_wL6ARs0PAAAJ","__senderName":"Alicer-yQZh"},"msg":"action_received"}
|
||||
{"level":30,"time":1761491834768,"pid":347500,"hostname":"ubuntu","timestamp":1761491834768,"roomName":"sessao-oli2m","socketId":"_hBGMFgq3FYLMXIPAAAH","action":{"type":"AUDIO_SNAPSHOT","snapshot":{"tracks":[{"id":1761491736229,"name":"Pista de Áudio 1"}],"clips":[{"id":"967b8f5c-65f2-4157-99e2-27ffee81b41f","trackId":1761491736229,"name":"909beat01.ogg","sourcePath":"src/samples/beats/909beat01.ogg","startTimeInSeconds":0,"durationInSeconds":3.9604375,"offset":0,"pitch":0,"volume":0.8,"pan":0,"originalDuration":3.9604375}]},"__target":"yQZhQxD_wL6ARs0PAAAJ","__token":"4","__senderId":"_hBGMFgq3FYLMXIPAAAH","__senderName":"Alicer-_hBG"},"msg":"action_received"}
|
||||
{"level":30,"time":1761491842448,"pid":347500,"hostname":"ubuntu","timestamp":1761491842448,"roomName":"sessao-oli2m","socketId":"yQZhQxD_wL6ARs0PAAAJ","action":{"type":"TOGGLE_NOTE","trackIndex":0,"patternIndex":0,"stepIndex":0,"isActive":true,"__token":"2","__senderId":"yQZhQxD_wL6ARs0PAAAJ","__senderName":"Alicer-yQZh"},"msg":"action_received"}
|
||||
{"level":30,"time":1761491860049,"pid":347500,"hostname":"ubuntu","timestamp":1761491860049,"roomName":"sessao-4gv3w","socketId":"5TrjLq6FKAYwtT8OAAAL","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"5TrjLq6FKAYwtT8OAAAL","__senderName":"Alicer-5Trj"},"msg":"action_received"}
|
||||
{"level":30,"time":1761491864309,"pid":347500,"hostname":"ubuntu","timestamp":1761491864309,"roomName":"sessao-4gv3w","socketId":"H5nIWXJrBdIpKu1fAAAN","action":{"type":"AUDIO_SNAPSHOT_REQUEST","__token":"1","__senderId":"H5nIWXJrBdIpKu1fAAAN","__senderName":"Alicer-H5nI"},"msg":"action_received"}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -42,6 +42,7 @@ export let appState = {
|
|||
pattern: patternState, // <-- AGORA 'patternState' está definido
|
||||
audio: audioState,
|
||||
};
|
||||
window.appState = appState;
|
||||
|
||||
export function resetProjectState() {
|
||||
console.log("Executando resetProjectState completo...");
|
||||
|
|
|
|||
248
creation.html
248
creation.html
|
|
@ -285,6 +285,7 @@
|
|||
<div class="tool-icons">
|
||||
<i class="fa-solid fa-table-cells"></i
|
||||
><i class="fa-solid fa-bars-staggered"></i>
|
||||
<i class="fa-solid fa-music" id="open-piano-roll-btn" title="Abrir Piano Roll"></i>
|
||||
<i
|
||||
class="fa-solid fa-wave-square"
|
||||
id="bounce-pattern-btn"
|
||||
|
|
@ -317,6 +318,39 @@
|
|||
</div>
|
||||
<div id="track-container"></div>
|
||||
</div>
|
||||
<div class="piano-roll-editor" id="piano-roll-editor" style="display: none;">
|
||||
<div class="editor-header">
|
||||
<span>Piano Roll - <span id="piano-roll-instrument-name">Instrumento 1</span></span>
|
||||
<div class="window-controls">
|
||||
<i class="fa-solid fa-xmark" id="close-piano-roll-btn"></i>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="piano-roll-toolbar">
|
||||
<div class="playback-controls">
|
||||
<i class="fa-solid fa-pencil active" title="Draw Tool"></i>
|
||||
<i class="fa-solid fa-eraser" title="Erase Tool"></i>
|
||||
</div>
|
||||
<div class="snap-controls">
|
||||
<label>Snap:</label>
|
||||
<select>
|
||||
<option>1/4</option>
|
||||
<option>1/8</option>
|
||||
<option selected>1/16</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="piano-roll-workspace">
|
||||
<div class="piano-keys-container" id="piano-keys-container">
|
||||
<canvas id="piano-keys-canvas"></canvas>
|
||||
</div>
|
||||
|
||||
<div class="piano-grid-container" id="piano-grid-container">
|
||||
<canvas id="piano-grid-canvas"></canvas>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="audio-editor">
|
||||
<div class="editor-header">
|
||||
<span>Editor de Amostras de Áudio</span>
|
||||
|
|
@ -486,6 +520,220 @@
|
|||
document.body.classList.add("embed-mode");
|
||||
}
|
||||
</script>
|
||||
<script type="module">
|
||||
// Importamos o estado global para ler/salvar notas reais
|
||||
import { appState } from "./assets/js/creations/state.js"; // Ajuste o caminho se necessário
|
||||
import { sendAction } from "./assets/js/creations/socket.js";
|
||||
import { renderAll } from "./assets/js/creations/ui.js";
|
||||
import * as Tone from "https://esm.sh/tone";
|
||||
|
||||
// Variáveis de Controle
|
||||
let currentTrackId = null;
|
||||
const CONSTANTS = {
|
||||
NOTE_HEIGHT: 20,
|
||||
KEY_WIDTH: 60,
|
||||
BEAT_WIDTH: 40,
|
||||
TOTAL_KEYS: 84, // 7 oitavas
|
||||
START_NOTE: 24, // C1
|
||||
TICKS_PER_PIXEL: 0 // Calculado dinamicamente
|
||||
};
|
||||
|
||||
const pianoRollEditor = document.getElementById('piano-roll-editor');
|
||||
const keysCanvas = document.getElementById('piano-keys-canvas');
|
||||
const gridCanvas = document.getElementById('piano-grid-canvas');
|
||||
const keysCtx = keysCanvas.getContext('2d');
|
||||
const gridCtx = gridCanvas.getContext('2d');
|
||||
const gridContainer = document.getElementById('piano-grid-container');
|
||||
const keysContainer = document.getElementById('piano-keys-container');
|
||||
|
||||
// Sintetizador de preview
|
||||
const previewSynth = new Tone.PolySynth(Tone.Synth).toDestination();
|
||||
previewSynth.volume.value = -10;
|
||||
|
||||
// --- FUNÇÃO GLOBAL PARA ABRIR O EDITOR ---
|
||||
window.openPianoRoll = function(trackId) {
|
||||
const track = appState.pattern.tracks.find(t => t.id === trackId);
|
||||
if (!track) return;
|
||||
|
||||
currentTrackId = trackId;
|
||||
document.getElementById('piano-roll-instrument-name').textContent = track.name;
|
||||
|
||||
// Mostra o editor
|
||||
pianoRollEditor.style.display = 'flex';
|
||||
|
||||
// Redimensiona e desenha
|
||||
resizeCanvas();
|
||||
|
||||
// Centraliza o scroll vertical (C5)
|
||||
const middleY = (CONSTANTS.TOTAL_KEYS / 2) * CONSTANTS.NOTE_HEIGHT;
|
||||
gridContainer.scrollTop = middleY - 200;
|
||||
};
|
||||
|
||||
// --- DESENHO E LÓGICA ---
|
||||
|
||||
function resizeCanvas() {
|
||||
const totalHeight = CONSTANTS.TOTAL_KEYS * CONSTANTS.NOTE_HEIGHT;
|
||||
// 64 compassos * 192 ticks / (ticks por beat) * largura... simplificando:
|
||||
// Vamos fixar uma largura grande por enquanto
|
||||
const totalWidth = 3000;
|
||||
|
||||
keysCanvas.width = CONSTANTS.KEY_WIDTH;
|
||||
keysCanvas.height = totalHeight;
|
||||
gridCanvas.width = totalWidth;
|
||||
gridCanvas.height = totalHeight;
|
||||
|
||||
// Importante: Sincronizar a conversão de Pixel <-> Tick
|
||||
// 1 Beat = 48 ticks (em 16th) ou 192 ticks por bar?
|
||||
// No seu file.js: ticksPerStep = 12 (1/16).
|
||||
// Então BEAT_WIDTH (40px) = 4 steps = 48 ticks.
|
||||
CONSTANTS.TICKS_PER_PIXEL = 48 / CONSTANTS.BEAT_WIDTH;
|
||||
|
||||
drawKeys();
|
||||
drawGrid();
|
||||
drawNotes();
|
||||
}
|
||||
|
||||
function drawKeys() {
|
||||
keysCtx.clearRect(0, 0, keysCanvas.width, keysCanvas.height);
|
||||
for (let i = 0; i < CONSTANTS.TOTAL_KEYS; i++) {
|
||||
const midiNote = CONSTANTS.START_NOTE + (CONSTANTS.TOTAL_KEYS - 1 - i);
|
||||
const y = i * CONSTANTS.NOTE_HEIGHT;
|
||||
const isBlack = isBlackKey(midiNote);
|
||||
|
||||
keysCtx.fillStyle = isBlack ? '#333' : '#eee';
|
||||
keysCtx.fillRect(0, y, CONSTANTS.KEY_WIDTH, CONSTANTS.NOTE_HEIGHT);
|
||||
keysCtx.strokeStyle = '#555';
|
||||
keysCtx.strokeRect(0, y, CONSTANTS.KEY_WIDTH, CONSTANTS.NOTE_HEIGHT);
|
||||
|
||||
if (midiNote % 12 === 0) {
|
||||
keysCtx.fillStyle = isBlack ? '#fff' : '#333';
|
||||
keysCtx.font = '10px Arial';
|
||||
keysCtx.fillText('C' + (Math.floor(midiNote / 12) - 1), 35, y + 14);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function drawGrid() {
|
||||
gridCtx.fillStyle = '#292929';
|
||||
gridCtx.fillRect(0, 0, gridCanvas.width, gridCanvas.height);
|
||||
|
||||
// Linhas das notas
|
||||
for (let i = 0; i < CONSTANTS.TOTAL_KEYS; i++) {
|
||||
const midiNote = CONSTANTS.START_NOTE + (CONSTANTS.TOTAL_KEYS - 1 - i);
|
||||
const y = i * CONSTANTS.NOTE_HEIGHT;
|
||||
const isBlack = isBlackKey(midiNote);
|
||||
gridCtx.fillStyle = isBlack ? '#222' : '#2a2a2a';
|
||||
gridCtx.fillRect(0, y, gridCanvas.width, CONSTANTS.NOTE_HEIGHT);
|
||||
gridCtx.strokeStyle = '#333';
|
||||
gridCtx.beginPath(); gridCtx.moveTo(0, y); gridCtx.lineTo(gridCanvas.width, y); gridCtx.stroke();
|
||||
}
|
||||
|
||||
// Linhas verticais (Tempo)
|
||||
for (let x = 0; x < gridCanvas.width; x += CONSTANTS.BEAT_WIDTH) {
|
||||
gridCtx.beginPath();
|
||||
gridCtx.strokeStyle = (x % (CONSTANTS.BEAT_WIDTH * 4) === 0) ? '#666' : '#383838';
|
||||
gridCtx.moveTo(x, 0); gridCtx.lineTo(x, gridCanvas.height); gridCtx.stroke();
|
||||
}
|
||||
}
|
||||
|
||||
function drawNotes() {
|
||||
if (!currentTrackId) return;
|
||||
const track = appState.pattern.tracks.find(t => t.id === currentTrackId);
|
||||
if (!track) return;
|
||||
|
||||
const pattern = track.patterns[track.activePatternIndex];
|
||||
const notes = pattern.notes || [];
|
||||
|
||||
gridCtx.fillStyle = '#ffbb00'; // Cor Laranja
|
||||
gridCtx.strokeStyle = '#000';
|
||||
|
||||
notes.forEach(note => {
|
||||
// Converter MIDI para Y (Invertido)
|
||||
const keyIndex = (CONSTANTS.TOTAL_KEYS - 1) - (note.key - CONSTANTS.START_NOTE);
|
||||
const y = keyIndex * CONSTANTS.NOTE_HEIGHT;
|
||||
|
||||
// Converter Ticks (pos) para X
|
||||
// Se 48 ticks = BEAT_WIDTH (40px) -> pos / 1.2
|
||||
const x = note.pos / CONSTANTS.TICKS_PER_PIXEL;
|
||||
const width = note.len / CONSTANTS.TICKS_PER_PIXEL;
|
||||
|
||||
gridCtx.fillRect(x + 1, y + 1, width - 2, CONSTANTS.NOTE_HEIGHT - 2);
|
||||
gridCtx.strokeRect(x + 1, y + 1, width - 2, CONSTANTS.NOTE_HEIGHT - 2);
|
||||
});
|
||||
}
|
||||
|
||||
// --- INTERAÇÃO: CRIAR NOTAS ---
|
||||
gridCanvas.addEventListener('mousedown', (e) => {
|
||||
if (!currentTrackId) return;
|
||||
|
||||
const rect = gridCanvas.getBoundingClientRect();
|
||||
const x = e.clientX - rect.left;
|
||||
const y = e.clientY - rect.top;
|
||||
|
||||
// 1. Calcular Nota (Y)
|
||||
const keyIndex = Math.floor(y / CONSTANTS.NOTE_HEIGHT);
|
||||
const midiNote = CONSTANTS.START_NOTE + (CONSTANTS.TOTAL_KEYS - 1 - keyIndex);
|
||||
|
||||
// 2. Calcular Posição (X) e Snap
|
||||
// Snap padrão 1/16 = 12 ticks
|
||||
const snapTicks = 12;
|
||||
const rawTicks = x * CONSTANTS.TICKS_PER_PIXEL;
|
||||
const quantizedPos = Math.floor(rawTicks / snapTicks) * snapTicks;
|
||||
|
||||
// 3. Criar Objeto Nota
|
||||
const newNote = {
|
||||
pos: quantizedPos,
|
||||
len: 48, // Duração padrão (1 beat/seminima) - ajuste conforme desejar
|
||||
key: midiNote,
|
||||
vol: 100,
|
||||
pan: 0
|
||||
};
|
||||
|
||||
// 4. Atualizar Estado e Redesenhar
|
||||
const track = appState.pattern.tracks.find(t => t.id === currentTrackId);
|
||||
if (track) {
|
||||
const pattern = track.patterns[track.activePatternIndex];
|
||||
|
||||
// Se não existir array de notas, cria
|
||||
if (!pattern.notes) pattern.notes = [];
|
||||
|
||||
pattern.notes.push(newNote);
|
||||
|
||||
// Toca som
|
||||
const noteName = Tone.Frequency(midiNote, "midi").toNote();
|
||||
previewSynth.triggerAttackRelease(noteName, "8n");
|
||||
|
||||
// Redesenha Piano Roll
|
||||
drawNotes();
|
||||
|
||||
// IMPORTANTE: Atualizar a UI da lista de trilhas (para aparecer a miniatura)
|
||||
// E enviar via Socket para colaboradores
|
||||
renderAll();
|
||||
sendAction({
|
||||
type: "UPDATE_PATTERN_NOTES",
|
||||
trackId: currentTrackId,
|
||||
patternIndex: track.activePatternIndex,
|
||||
notes: pattern.notes
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
// Scroll Sync
|
||||
gridContainer.addEventListener('scroll', () => {
|
||||
keysContainer.scrollTop = gridContainer.scrollTop;
|
||||
});
|
||||
|
||||
// Fechar
|
||||
document.getElementById('close-piano-roll-btn').addEventListener('click', () => {
|
||||
pianoRollEditor.style.display = 'none';
|
||||
currentTrackId = null;
|
||||
});
|
||||
|
||||
function isBlackKey(note) {
|
||||
const n = note % 12;
|
||||
return (n === 1 || n === 3 || n === 6 || n === 8 || n === 10);
|
||||
}
|
||||
</script>
|
||||
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.10.1/jszip.min.js"></script>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue