1. 邦楽ぬ。《夜鷹なオトナの音楽談話》
  2. 2023年始まったばかりにして僕..
{ if (!this.player) return; this.time = this.player.currentTime; if (!this.player.paused) { setTimeout(updateTimeFn, this.interval); } }; setTimeout(updateTimeFn, this.interval); gtag('event', 'audio_start', { 'audio_title': '2023年始まったばかりにして僕の今年No.1‼MVはもうレディ・プレイヤー1なXG『SHOOTING STAR』とお茶の間目線での2023年邦楽界隈は \"こんなんなりますけど!?” の6つの傾向', 'audio_url': 'https://listen.style/p/hogaku_nu/hopkltca', 'audio_current_time': this.time }); }); this.player.addEventListener('timeupdate', () => { this.updateProgressBar(); if (this.hasPlayed && Math.floor(this.time / 30) != Math.floor(this.lastPosition / 30)) { this.updatePosition(); } // 95%以上再生で完了リクエスト送信 if (this.player.duration > 0 && this.time > (this.player.duration * 0.95) && !this.completedSent) { this.completedSent = true; this.updatePosition(); } // 巻き戻しリセット if (this.player.duration > 0 && this.time < (this.player.duration * 0.9)) { this.completedSent = false; } }); this.player.addEventListener('pause', () => { this.playing = false; if (this.hasPlayed) { this.updatePosition(); } }); window.addEventListener('beforeunload', () => { if (this.player && !this.player.paused) this.updatePosition(); }); this.player.addEventListener('ratechange', () => { this.updatePlaybackRate(); }); this.player.addEventListener('loadeddata', () => { if (this._loadeddataTriggered) return; this._loadeddataTriggered = true; this.player.currentTime = this.time; this.lastPosition = this.time; this.player.playbackRate = this.speed; }, { once: true }); }, playEpisode(start) { // console.log('play', this.time); if ((start <= this.player.currentTime) && (this.player.currentTime <= (start + 5))) { if (this.player.paused) { this.player.play(); } return; } this.time = start; this.player.currentTime = this.time; this.player.play(); // console.log(this.time); }, togglePlay() { this.player.paused ? this.player.play() : this.player.pause(); }, updatePosition() { this.lastPosition = this.time; fetch('https://listen.style/p/01h8bm1hc3ypgth3gzeskzp576/01h8bm4anekwr72krahh2xkesc/update_position', { method: 'POST', body: JSON.stringify({ time: this.time }), headers: { 'Content-Type': 'application/json','X-CSRF-TOKEN': 'Dg4hCnTmH7wP1nFJ6zEV2NCLi1qxBnQd6dG2XboS'} }); }, updatePlaybackRate() { fetch('https://listen.style/update_playback_rate', { method: 'POST', body: JSON.stringify({ rate: this.player.playbackRate }), headers: { 'Content-Type': 'application/json','X-CSRF-TOKEN': 'Dg4hCnTmH7wP1nFJ6zEV2NCLi1qxBnQd6dG2XboS'} }); }, updateTime(t) { if (t < 0) { t = 0; } else if (this.player.duration < t) { t = Math.max(this.player.duration - 3, 0); } this.time = t; this.player.currentTime = t; this.updateProgressBar(); }, updateProgressBar(percent) { if (!percent) { percent = this.time * 100 / this.player.duration; } this.progressBar.style.width = percent + '%'; this.progressBar.parentElement.setAttribute('aria-valuenow', Math.floor(percent)); }, setupKeyboardShortcuts() { document.addEventListener('keydown', (event) => { const playerElement = document.activeElement.tagName === 'INPUT' || document.activeElement.tagName === 'TEXTAREA' || document.activeElement.isContentEditable; if (playerElement) return; // Ignore key events when input or textarea is focused const shiftNotAllowedShortcuts = ['Space', 'KeyK', 'KeyM', 'ArrowLeft', 'ArrowRight', 'KeyJ', 'KeyL', 'KeyS', 'ArrowUp', 'ArrowDown']; if (shiftNotAllowedShortcuts.includes(event.code) && event.shiftKey) { // If shift is pressed and the shortcut should not allow shift, return return; } switch (event.code) { case 'Space': case 'KeyK': event.preventDefault(); this.togglePlay(); break; case 'KeyM': event.preventDefault(); this.player.muted = !this.player.muted; break; case 'ArrowLeft': event.preventDefault(); this.updateTime(this.time - 5); break; case 'ArrowRight': event.preventDefault(); this.updateTime(this.time + 5); break; case 'KeyJ': event.preventDefault(); this.updateTime(this.time - 10); break; case 'KeyL': event.preventDefault(); this.updateTime(this.time + 10); break; case 'KeyS': event.preventDefault(); this.addStar(); break; case 'Period': // > event.preventDefault(); if (event.shiftKey) { this.speed = Math.min(Math.max(parseFloat(this.speed) + 0.1, 0.5), 4.0); this.speed = parseFloat(this.speed); this.player.playbackRate = this.speed; } break; case 'Comma': // < event.preventDefault(); if (event.shiftKey) { this.speed = Math.min(Math.max(parseFloat(this.speed) - 0.1, 0.5), 4.0); this.speed = parseFloat(this.speed); this.player.playbackRate = this.speed; } break; case 'ArrowUp': event.preventDefault(); this.changeVolume(parseFloat(this.volume) + 0.05); break; case 'ArrowDown': event.preventDefault(); this.changeVolume(parseFloat(this.volume) - 0.05); break; default: break; } }); }, changeVolume(volume) { if (this.player && (volume >= 0 && volume <= 1)) { this.volume = volume; this.player.volume = this.volume; } } }" x-init=" window.addEventListener('notify', event => { showNotification(event.detail.message); }); window.addEventListener('replace-text', event => { replaceText(event.detail.searchString, event.detail.replacementString); }); const mediaQuery = window.matchMedia('(prefers-color-scheme: dark)'); if (mediaQuery.matches) { document.documentElement.classList.add('dark'); } setupKeyboardShortcuts(); ">
2023年始まったばかりにして僕の今年No.1‼MVはもうレディ・プレイヤー1なXG『SHOOTING STAR』とお茶の間目線での2023年邦楽界隈は "こんなんなりますけど!?” の6つの傾向
2023-01-26 1:15:44

2023年始まったばかりにして僕の今年No.1‼MVはもうレディ・プレイヤー1なXG『SHOOTING STAR』とお茶の間目線での2023年邦楽界隈は "こんなんなりますけど!?” の6つの傾向

※NewJeansの「OMG」

 正しくはオーエムジーと読みます。


【今夜の雑談内容、おしながき】

01/XG『SHOOTING STAR』リリースされました

02/戦略がほんとあっぱれ!

03/トレンドの変化を読み取ったメロディ

04/最初からグローバルを目指した洋楽感

05/MVはメタバースを再現したレディ・プレイヤー1

06/これだけ作り込まれたMVが制作できた理由

07/MVのコンセプトはKawaii

08/日本のアイデンティティの集大成

09/トレンドのY2Kも踏まえたファッション

10/どんな風にグローバルで受け入れられていくのか


XG - SHOOTING STAR (Official Music Video)

https://youtu.be/L7spCJxloLY


24:00〜

11/2023年。お茶の間目線で邦楽界隈を見たときに


26:00〜

12/①大人達はお金を用意しておいてください。


31:30〜

13/②かわいい‼カッコイイ!だけの興味で曲を聴くな


36:00〜

14/③今年もTik Tokからヒット曲でる理由はAIフィルター


41:30〜

15/④NewJeansの登場がグローバルでJPOPが聴かれるかのものさしになる


44:00〜

16/⑤ファンダムを活用し作り出すことが必要不可欠


54:00〜

17/⑥やっぱりアニメタイアップ。今年はこの人から生まれるんじゃないかなー


1:00:00〜

18/2023年に僕が注目している5組


1:05:30〜

19/関ジャム出演のいしわたり淳治の言葉から


1:08:00〜

20/最近の音楽について思うがままに…


〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜〜

邦楽ぬ。の色々…

https://linktr.ee/hogaku_nu

感想

まだ感想はありません。最初の1件を書きましょう!

01:15:44

コメント

スクロール