import React from 'react';
export const AudioCodecDropWarning: React.FC = () => {
if (typeof AudioEncoder === 'undefined') {
return (
Your browser doesn't support encoding audio and the audio track
cannot be copied into the new container.
);
}
return (
Your browser doesn't support decoding this audio and the audio track
cannot be copied into the new container.{' '}
);
};