Minimal example: transcode from MP3 to WMA:
ffmpeg -i input.mp3 output.wma
You can get the list of supported formats with:
ffmpeg -formats
You can get the list of installed codecs with:
<-- shadowDOM widget for the inline version --> | |
<enquiries-ai-widget></enquiries-ai-widget> | |
<script type="module" src="https://ai-chat-app.netlify.app/enquiries-ai-widget.umd.js"></script> | |
<-- iframe widget for the floating mode --> | |
<div id="chatbot-container"> | |
<style> | |
/* Chat Widget Styles */ | |
#chatbot-container { | |
position: fixed; |
import React, { useEffect } from "react"; | |
declare global { | |
namespace JSX { | |
interface IntrinsicElements { | |
'enquiries-ai-widget': React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>; | |
} | |
} | |
} |
import pandas as pd | |
import random | |
# Load the Excel file | |
df = pd.read_excel("qa_pairs.xlsx") | |
# Group by category | |
grouped = df.groupby('Category') | |
train_data = [] |
/** | |
* Detect outside clicks | |
* @param node - The node to detect outside clicks. The callback will be executed when outside of this node click is detected | |
* @param callback - The callback to execute when an outside click is detected | |
* @param excludes - The ids of the nodes to exclude from the outside click detection | |
*/ | |
export function outsideClick( | |
node: Node, | |
{ | |
callback, |
var gulp = require('gulp'); | |
var gutil = require('gulp-util'); | |
var argv = require('minimist')(process.argv); | |
var prompt = require('gulp-prompt'); | |
var rsync = require('gulp-rsync'); | |
var sass = require('gulp-sass'); | |
var autoprefixer = require('gulp-autoprefixer'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var browserSync = require('browser-sync'); | |
var useref = require('gulp-useref'); |
<Configuration status="debug" name="your-project" packages=""> | |
<Appenders> | |
<!-- Console logging --> | |
<Console name="stdout" target="SYSTEM_OUT"> | |
<!-- Console logging pattern --> | |
<PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss} %p %m%n"/> | |
</Console> | |
<!-- Rolling file logging with a new folder for each new month --> |