style: remove emojis from media app quality presets
This commit is contained in:
@@ -50,7 +50,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'high-quality',
|
||||
name: 'High Quality',
|
||||
description: 'Best quality, larger file size',
|
||||
icon: '⭐',
|
||||
icon: '',
|
||||
options: {
|
||||
videoBitrate: '5M',
|
||||
videoCodec: outputFormat.extension === 'webm' ? 'libvpx' : 'libx264',
|
||||
@@ -62,7 +62,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'balanced',
|
||||
name: 'Balanced',
|
||||
description: 'Good quality, moderate size',
|
||||
icon: '⚖️',
|
||||
icon: '',
|
||||
options: {
|
||||
videoBitrate: '2M',
|
||||
videoCodec: outputFormat.extension === 'webm' ? 'libvpx' : 'libx264',
|
||||
@@ -74,7 +74,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'small-file',
|
||||
name: 'Small File',
|
||||
description: 'Smaller size, lower quality',
|
||||
icon: '📦',
|
||||
icon: '',
|
||||
options: {
|
||||
videoBitrate: '1M',
|
||||
videoCodec: outputFormat.extension === 'webm' ? 'libvpx' : 'libx264',
|
||||
@@ -86,7 +86,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'web-optimized',
|
||||
name: 'Web Optimized',
|
||||
description: 'Fast loading for web',
|
||||
icon: '🌐',
|
||||
icon: '',
|
||||
options: {
|
||||
videoBitrate: '1.5M',
|
||||
videoCodec: 'libvpx',
|
||||
@@ -102,7 +102,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'high-quality',
|
||||
name: 'High Quality',
|
||||
description: 'Best audio quality',
|
||||
icon: '⭐',
|
||||
icon: '',
|
||||
options: {
|
||||
audioBitrate: '320k',
|
||||
audioCodec: outputFormat.extension === 'mp3' ? 'libmp3lame' : 'default',
|
||||
@@ -112,7 +112,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'balanced',
|
||||
name: 'Balanced',
|
||||
description: 'Good quality, smaller size',
|
||||
icon: '⚖️',
|
||||
icon: '',
|
||||
options: {
|
||||
audioBitrate: '192k',
|
||||
audioCodec: outputFormat.extension === 'mp3' ? 'libmp3lame' : 'default',
|
||||
@@ -122,7 +122,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'small-file',
|
||||
name: 'Small File',
|
||||
description: 'Minimum file size',
|
||||
icon: '📦',
|
||||
icon: '',
|
||||
options: {
|
||||
audioBitrate: '128k',
|
||||
audioCodec: outputFormat.extension === 'mp3' ? 'libmp3lame' : 'default',
|
||||
@@ -135,7 +135,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'high-quality',
|
||||
name: 'High Quality',
|
||||
description: 'Best image quality',
|
||||
icon: '⭐',
|
||||
icon: '',
|
||||
options: {
|
||||
imageQuality: 95,
|
||||
},
|
||||
@@ -144,7 +144,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'balanced',
|
||||
name: 'Balanced',
|
||||
description: 'Good quality',
|
||||
icon: '⚖️',
|
||||
icon: '',
|
||||
options: {
|
||||
imageQuality: 85,
|
||||
},
|
||||
@@ -153,7 +153,7 @@ export function ConversionOptionsPanel({
|
||||
id: 'web-optimized',
|
||||
name: 'Web Optimized',
|
||||
description: 'Optimized for web',
|
||||
icon: '🌐',
|
||||
icon: '',
|
||||
options: {
|
||||
imageQuality: 75,
|
||||
},
|
||||
@@ -424,7 +424,7 @@ export function ConversionOptionsPanel({
|
||||
className="flex flex-col h-auto py-3 px-3 text-left items-start"
|
||||
disabled={disabled}
|
||||
>
|
||||
<span className="text-base mb-1">{preset.icon}</span>
|
||||
{preset.icon && <span className="text-base mb-1">{preset.icon}</span>}
|
||||
<span className="text-xs font-medium">{preset.name}</span>
|
||||
<span className="text-xs text-muted-foreground mt-1">{preset.description}</span>
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user