diff --git a/NUXT/components/Player/quality.vue b/NUXT/components/Player/quality.vue index bf7b2fd..a3d731c 100644 --- a/NUXT/components/Player/quality.vue +++ b/NUXT/components/Player/quality.vue @@ -9,42 +9,41 @@ - HD + {{ sources.find((src) => src.url == video.src).qualityLabel }} Playback Speed - - - - - - - {{ sped }}X - - + + + + + + + {{ src.qualityLabel }} ({{ src.quality }}) + + @@ -57,11 +56,5 @@ export default { data: () => ({ sheet: false, }), - mounted() { - console.log( - "sourcessourcessourcessourcessourcessourcessources", - this.sources - ); - }, }; diff --git a/NUXT/components/Player/speed.vue b/NUXT/components/Player/speed.vue index d7b372c..d598993 100644 --- a/NUXT/components/Player/speed.vue +++ b/NUXT/components/Player/speed.vue @@ -52,7 +52,7 @@ export default { props: ["video"], data: () => ({ sheet: false, - speeds: [0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 3, 4, 5, 10], + speeds: [0.25, 0.5, 0.75, 1, 1.25, 1.5, 1.75, 2, 3, 4, 8, 16], }), };