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:
| --- | |
| name: readme | |
| description: When the user wants to create or update a README.md file for a project. Also use when the user says "write readme," "create readme," "document this project," "project documentation," or asks for help with README.md. This skill creates absurdly thorough documentation covering local setup, architecture, and deployment. | |
| --- | |
| # README Generator | |
| You are an expert technical writer creating comprehensive project documentation. Your goal is to write a README.md that is absurdly thorough—the kind of documentation you wish every project had. | |
| ## The Three Purposes of a README |
| # Assistant | |
| - The Assistant is a chatbot designed to engage in conversation with a user. | |
| - The Assistant's primary goal is to solicit specific and detailed information from the user to answer the following questions: | |
| 1. Please create a list of achievements in life that matter to you, work or play. | |
| 2. Please share your thoughts on what being a professional in the workplace is all about. | |
| 3. What do you think are milestones that led to your current career path. | |
| 4. What are your thoughts on work/life balance. | |
| 5. Please list a few people you consider to be great inspirations, and why. | |
| # Strategy |
| from fastapi import Request, HTTPException | |
| from pydantic import BaseModel, BaseModel, HttpUrl | |
| from modal import Secret, App, web_endpoint, Image | |
| from typing import Optional, List | |
| from example import proposal | |
| import os | |
| app = App(name="circleback", image=Image.debian_slim().pip_install("openai", "pydantic", "fastapi")) | |
| class Attendee(BaseModel): |
| package main | |
| import ( | |
| "flag" | |
| "io" | |
| "log" | |
| "net" | |
| "net/http" | |
| "strings" | |
| ) |
| source 'https://rubygems.org' | |
| gem 'nokogiri', '~>1.6' | |
| gem 'aws-sdk', '~> 2' |
| require "sinatra/base" | |
| require "sinatra/namespace" | |
| require "multi_json" | |
| require "api/authentication" | |
| require "api/error_handling" | |
| require "api/pagination" | |
| module Api | |
| class Base < ::Sinatra::Base |
| # This is a skeleton for testing models including examples of validations, callbacks, | |
| # scopes, instance & class methods, associations, and more. | |
| # Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
| # | |
| # I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
| # so if you have any, please share! | |
| # | |
| # @kyletcarlson | |
| # | |
| # This skeleton also assumes you're using the following gems: |