remove file formats

This commit is contained in:
JMARyA 2024-02-29 14:42:27 +01:00
parent b7286a509c
commit aab318b25e
Signed by: jmarya
GPG key ID: 901B2ADDF27C2263
6 changed files with 5 additions and 64 deletions

View file

@ -37,7 +37,7 @@ rga is a line-oriented search tool that allows you to look for a [regex](../../t
## Available Adapters
rga works with _adapters_ that adapt various [file formats](../../files/File%20Formats.md). It comes with a few adapters integrated:
rga works with _adapters_ that adapt various [file formats](../../files/MIME.md). It comes with a few adapters integrated:
```
rga --rga-list-adapters

View file

@ -6,7 +6,7 @@ website: https://mpv.io
flatpak-id: io.mpv.Mpv
---
# MPV
mpv is a based media player. It supports a wide variety of video [file formats](../../files/File%20Formats.md), audio and video [codecs](../../files/media/Codecs.md), and subtitle types. Special input [URL](../../internet/URL.md) types are available to read input from a variety of sources other than disk files. Depending on platform, a variety of different video and audio output methods are supported.
mpv is a based media player. It supports a wide variety of video [file formats](../../files/MIME.md), audio and video [codecs](../../files/media/Codecs.md), and subtitle types. Special input [URL](../../internet/URL.md) types are available to read input from a variety of sources other than disk files. Depending on platform, a variety of different video and audio output methods are supported.
## Usage
Usage: `mpv [options] [file|URL|PLAYLIST|-]`

View file

@ -9,7 +9,7 @@ FFmpeg is a free and open-source software project consisting of a suite of libra
FFmpeg also includes other tools: `ffplay`, a simple media player and `ffprobe`, a command-line tool to display media information. Among included libraries are libavcodec, an audio/video codec library used by many commercial and free software products, libavformat (Lavf), an audio/video container mux and demux library, and libavfilter, a library for enhancing and editing filters through a Gstreamer-like filtergraph.
FFmpeg is part of the workflow of many other software projects, and its libraries are a core part of software media players such as VLC, and has been included in core processing for [YouTube](../../internet/websites/clearnet/YouTube.md) and Bilibili. Encoders and decoders for many audio and video [file formats](../../files/File%20Formats.md) are included, making it highly useful for the transcoding of common and uncommon media files.
FFmpeg is part of the workflow of many other software projects, and its libraries are a core part of software media players such as VLC, and has been included in core processing for [YouTube](../../internet/websites/clearnet/YouTube.md) and Bilibili. Encoders and decoders for many audio and video [file formats](../../files/MIME.md) are included, making it highly useful for the transcoding of common and uncommon media files.
**Example:**
```shell

View file

@ -42,7 +42,7 @@ Log files typically consist of structured or unstructured data, organized in a c
- **Message**: A descriptive message providing details about the event, error, or activity.
- **Source**: Information about the source or origin of the event, such as the application, module, or process responsible.
There are various log [file formats](../files/File%20Formats.md) used in computing environments, each with its own structure and characteristics. Here are some common log file formats:
There are various log file formats used in computing environments, each with its own structure and characteristics. Here are some common log file formats:
- **Plain Text Logs**: Plain text logs are the simplest and most widely used format. Each log entry typically consists of human-readable text, with fields separated by delimiters such as spaces, commas, or tabs. Plain text logs are easy to create, read, and parse, making them a popular choice for logging in many applications.
- **[JSON](../files/JSON.md) Logs**: Logs formatted in [JSON](../files/JSON.md) (JavaScript Object Notation) have a structured format where each log entry is represented as a [JSON](../files/JSON.md) object. [JSON](../files/JSON.md) logs include key-value pairs that provide detailed information about the event, such as timestamp, severity level, message, and additional metadata. [JSON](../files/JSON.md) logs are machine-readable and easily parsed by log analysis tools and frameworks.

View file

@ -1,59 +0,0 @@
---
obj: meta/collection
---
# File Formats
| Extension | Content |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `.7z` | [7z](../applications/cli/compression/p7zip.md) Archive |
| `.apk` | - [Android](../systems/Android.md) package<br>- Package format of the [Alpine Linux](../linux/Alpine%20Linux.md) distribution |
| `.exe` | [Windows](../windows/Windows.md) Application |
| `.html` | [HTML](../internet/HTML.md) File |
| `.png` | [PNG](media/image/PNG.md) File |
| `.webp` | WebP Image |
| `.py` | [Python](../dev/programming/languages/Python.md) Code |
| `.rar` | RAR Archive |
| `.tar` | [TAR](../applications/cli/compression/tar.md) Archive |
| `.zip` | [ZIP](ZIP.md) Archive |
| `.iso` | DVD Image Format |
| `.img` | Raw Disk Image |
| `.db`<br>`.sqlite` | [SQLite](../dev/programming/SQLite.md) |
| `.sql` | [SQL](../dev/programming/languages/SQL.md) Queries |
| `.pdf` | [PDF](PDF.md) File |
| `.psd` | Adobe Photoshop |
| `.xcf` | XCF File ([Gimp](../applications/media/images/GIMP.md)) |
| `.asc` | [ASCII](ASCII.md) Text |
| `.docx` | Office Open [XML](XML.md) document |
| `.log` | [Log File](../dev/Log.md) |
| `.md` | [Markdown](Markdown.md) File |
| `.txt` | Text File |
| `.xml` | [XML](XML.md) File |
| `.otf` | OpenType Font |
| `.ttf` | TrueType Font |
| `.woff` | Web Open Font Format |
| `.svg` | Scalable Vector Graphics |
| `.blend` | [Blender](../applications/3d/Blender.md) File |
| `.obj` | Wavefront .obj file |
| `.desktop` | Linux [Desktop Entry](Desktop%20Entry.md) |
| `.rs` | [Rust](../dev/programming/languages/Rust.md) Code |
| `.kdbx` | [KeePass](../applications/utilities/KeePassXC.md) Database |
| `.wav` | [Wav](media/audio/WAV.md) File |
| `.flac` | [FLAC](media/audio/FLAC.md) Audio |
| `.xspf` | XML Shareable Playlist Format |
| `.m3u` | Playlist File |
| `.csv` | [Comma-seperated values](CSV.md) |
| `.mkv`<br>`.mka` | [Matroska](media/Matroska.md) |
| `.qcow2` | [QEMU](../linux/qemu.md) copy-on-write version 2 Qcow |
| `.json` | [JSON](JSON.md) File |
| `.yaml`<br>`.yml` | [YAML](YAML.md) File |
| `.diff` | text file differences created by [diff](../applications/cli/diff.md) and applied as updates by [patch](../applications/cli/patch.md) |
| `.part` | Partial File |
| `.torrent` | [Torrent](../internet/BitTorrent.md) File |
| `.lrc` | LRC (Lyrics) File |
| `.nfo` | Information Files |
| `.epub` | eBook Format |
| `.srt` | SubRip Subtitle |
| `.ass` | ASS (Advanced SubStation Alpha) Subtitle |
| `.cbz` | [Comic Book Archive](Comic%20Book%20Archive.md). A compressed archive format containing a collection of images or pages that make up a comic book or graphic novel. |
| `.eml` | [Email](../internet/eMail.md) Message File |
| `.toml` | [TOML](TOML.md) |

View file

@ -52,7 +52,7 @@ zip [options] archive.zip file1 file2 folder1
`unzip myarchive.zip file1.txt file2.txt`
## Related File Formats
Zip files are commonly used in other [file formats](File%20Formats.md) as a means of compressing and organizing data. Here are a few examples:
Zip files are commonly used in other [file formats](MIME.md) as a means of compressing and organizing data. Here are a few examples:
- Java Archive (JAR) Files
- OpenDocument Format (ODF) Files
- [Android](../systems/Android.md) Application Package (APK) Files