style: remove emojis from media app format presets
This commit is contained in:
@@ -49,7 +49,7 @@ export function FormatPresets({ inputFormat, onPresetSelect, disabled = false }:
|
|||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
>
|
>
|
||||||
<div className="flex items-center gap-2 w-full">
|
<div className="flex items-center gap-2 w-full">
|
||||||
<span className="text-2xl">{preset.icon}</span>
|
{preset.icon && <span className="text-2xl">{preset.icon}</span>}
|
||||||
<div className="flex-1 min-w-0">
|
<div className="flex-1 min-w-0">
|
||||||
<div className="font-semibold text-sm">{preset.name}</div>
|
<div className="font-semibold text-sm">{preset.name}</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'youtube-video',
|
id: 'youtube-video',
|
||||||
name: 'YouTube Video',
|
name: 'YouTube Video',
|
||||||
description: '1080p MP4, optimized for YouTube',
|
description: '1080p MP4, optimized for YouTube',
|
||||||
icon: '🎬',
|
icon: '',
|
||||||
category: 'video',
|
category: 'video',
|
||||||
outputFormat: 'mp4',
|
outputFormat: 'mp4',
|
||||||
options: {
|
options: {
|
||||||
@@ -35,7 +35,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'instagram-video',
|
id: 'instagram-video',
|
||||||
name: 'Instagram Video',
|
name: 'Instagram Video',
|
||||||
description: 'Square 1:1 format for Instagram',
|
description: 'Square 1:1 format for Instagram',
|
||||||
icon: '📸',
|
icon: '',
|
||||||
category: 'video',
|
category: 'video',
|
||||||
outputFormat: 'mp4',
|
outputFormat: 'mp4',
|
||||||
options: {
|
options: {
|
||||||
@@ -51,7 +51,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'twitter-video',
|
id: 'twitter-video',
|
||||||
name: 'Twitter Video',
|
name: 'Twitter Video',
|
||||||
description: '720p, optimized for Twitter',
|
description: '720p, optimized for Twitter',
|
||||||
icon: '🐦',
|
icon: '',
|
||||||
category: 'video',
|
category: 'video',
|
||||||
outputFormat: 'mp4',
|
outputFormat: 'mp4',
|
||||||
options: {
|
options: {
|
||||||
@@ -67,7 +67,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'web-video',
|
id: 'web-video',
|
||||||
name: 'Web Optimized',
|
name: 'Web Optimized',
|
||||||
description: 'Small file size for web streaming',
|
description: 'Small file size for web streaming',
|
||||||
icon: '🌐',
|
icon: '',
|
||||||
category: 'video',
|
category: 'video',
|
||||||
outputFormat: 'mp4',
|
outputFormat: 'mp4',
|
||||||
options: {
|
options: {
|
||||||
@@ -85,7 +85,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'podcast-audio',
|
id: 'podcast-audio',
|
||||||
name: 'Podcast',
|
name: 'Podcast',
|
||||||
description: 'MP3, optimized for voice',
|
description: 'MP3, optimized for voice',
|
||||||
icon: '🎙️',
|
icon: '',
|
||||||
category: 'audio',
|
category: 'audio',
|
||||||
outputFormat: 'mp3',
|
outputFormat: 'mp3',
|
||||||
options: {
|
options: {
|
||||||
@@ -99,7 +99,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'music-high-quality',
|
id: 'music-high-quality',
|
||||||
name: 'High Quality Music',
|
name: 'High Quality Music',
|
||||||
description: 'MP3, 320kbps for music',
|
description: 'MP3, 320kbps for music',
|
||||||
icon: '🎵',
|
icon: '',
|
||||||
category: 'audio',
|
category: 'audio',
|
||||||
outputFormat: 'mp3',
|
outputFormat: 'mp3',
|
||||||
options: {
|
options: {
|
||||||
@@ -113,7 +113,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'audiobook',
|
id: 'audiobook',
|
||||||
name: 'Audiobook',
|
name: 'Audiobook',
|
||||||
description: 'Mono, small file size',
|
description: 'Mono, small file size',
|
||||||
icon: '📚',
|
icon: '',
|
||||||
category: 'audio',
|
category: 'audio',
|
||||||
outputFormat: 'mp3',
|
outputFormat: 'mp3',
|
||||||
options: {
|
options: {
|
||||||
@@ -129,7 +129,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'web-thumbnail',
|
id: 'web-thumbnail',
|
||||||
name: 'Web Thumbnail',
|
name: 'Web Thumbnail',
|
||||||
description: 'JPG, 800px width, optimized',
|
description: 'JPG, 800px width, optimized',
|
||||||
icon: '🖼️',
|
icon: '',
|
||||||
category: 'image',
|
category: 'image',
|
||||||
outputFormat: 'jpg',
|
outputFormat: 'jpg',
|
||||||
options: {
|
options: {
|
||||||
@@ -141,7 +141,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'hd-image',
|
id: 'hd-image',
|
||||||
name: 'HD Image',
|
name: 'HD Image',
|
||||||
description: 'PNG, high quality, lossless',
|
description: 'PNG, high quality, lossless',
|
||||||
icon: '🎨',
|
icon: '',
|
||||||
category: 'image',
|
category: 'image',
|
||||||
outputFormat: 'png',
|
outputFormat: 'png',
|
||||||
options: {
|
options: {
|
||||||
@@ -152,7 +152,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'social-media-image',
|
id: 'social-media-image',
|
||||||
name: 'Social Media',
|
name: 'Social Media',
|
||||||
description: 'JPG, 1200px, optimized',
|
description: 'JPG, 1200px, optimized',
|
||||||
icon: '📱',
|
icon: '',
|
||||||
category: 'image',
|
category: 'image',
|
||||||
outputFormat: 'jpg',
|
outputFormat: 'jpg',
|
||||||
options: {
|
options: {
|
||||||
@@ -164,7 +164,7 @@ export const FORMAT_PRESETS: FormatPreset[] = [
|
|||||||
id: 'web-optimized-image',
|
id: 'web-optimized-image',
|
||||||
name: 'Web Optimized',
|
name: 'Web Optimized',
|
||||||
description: 'WebP, small file size',
|
description: 'WebP, small file size',
|
||||||
icon: '⚡',
|
icon: '',
|
||||||
category: 'image',
|
category: 'image',
|
||||||
outputFormat: 'webp',
|
outputFormat: 'webp',
|
||||||
options: {
|
options: {
|
||||||
|
|||||||
Reference in New Issue
Block a user