This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Audio and Video Encoding for Pionner DVH-8580AVBT to play movies from USB | |
ffmpeg -i source_video.mp4 \ | |
-c:v libxvid \ | |
-b:v 192k \ | |
-s 640x480 \ | |
-ar 44100 \ | |
-ac 2 \ | |
-b:a 192k \ | |
destination_video.avi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Audio and Video Encoding for Pionner AVH-P3180DVD to play movies from USB/CD | |
ffmpeg -i source_video.mp4 \ | |
-c:v mpeg4 \ | |
-q:v 5 \ | |
-tag:v DIVX \ | |
-s 640x480 \ | |
-c:a libmp3lame \ | |
-q:a 5 \ | |
-ac 2 \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
''' | |
VW XOR Calculator | |
How to use: | |
$ python3 vw_xor_calculator.py --file Car/extract/FD_7100FLASHDATA --start 0x32C --end 0x1234 --key 0xA5A5A5A5 | |
Arguments: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
compare_bins.py - Compare two binary files and print the differences. | |
Usage: | |
python compare_bins.py original.bin modified.bin | |
Example output: | |
Offset 0x1234: 56 → 78 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# URL da playlist | |
PLAYLIST_URL="https://www.youtube.com/watch?v=&list=RDQMryGw58F5QcU" | |
# Diretório de destino para os arquivos | |
DEST_DIR="musicas" | |
mkdir -p "$DEST_DIR" | |
# Baixar a lista de URLs e nomes das faixas |
OlderNewer