# Uygulama Notları

## 📑 Gedit Metin Editörü

| Renklendirme Tipi | Hangi uzantılar için   |
| ----------------- | ---------------------- |
| `Modelica`        | `ini`, `cfg`, `config` |

## 📺 FFMPEG

### 💱 MP4'ü MP3'e çevirme

{% tabs %}
{% tab title="FFmpeg with Constant Bitrate Encoding (CBR)" %}

```bash
ffmpeg -i video.mp4 -vn \
    -acodec libmp3lame -ac 2 -ab 160k -ar 48000 \
    audio.mp3
```

{% endtab %}

{% tab title="FFmpeg with Variable Bitrate Encoding (VBR)" %}

```bash
ffmpeg -i video.mp4 -vn \
    -acodec libmp3lame -ac 2 -qscale:a 4 -ar 48000 \
    audio.mp3
```

{% endtab %}
{% endtabs %}

{% hint style="warning" %}
The VBR example has a target bitrate of 165 Kbit/s with a bitrate range of 140...185. [Kaynak](https://askubuntu.com/a/84633/898692)
{% endhint %}

### 🦶 MP3 Sıkıştırma

```bash
ffmpeg -i input.file -map 0:a:0 -b:a 96k output.mp3
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.yemreak.com/arsiv/linux/uygulama-notlari.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
