Différences
Ci-dessous, les différences entre deux révisions de la page.
Les deux révisions précédentes Révision précédente Prochaine révision | Révision précédente | ||
materiel:materiel_audiovisuel [2025/10/08 16:10] emoc [Cadre photo Proline PL-DPF1003B] |
materiel:materiel_audiovisuel [2025/10/13 16:47] (Version actuelle) emoc [Cadre photo Proline PL-DPF1003B] |
||
---|---|---|---|
Ligne 68: | Ligne 68: | ||
==== Cadre photo Listo CPN-460 ==== | ==== Cadre photo Listo CPN-460 ==== | ||
- | Caractéristiques | + | **Caractéristiques** |
* avec transfo secteur (5V, 1A) | * avec transfo secteur (5V, 1A) | ||
- | * écran : 15.5 x 8.5 cm | + | * écran : 15.5 x 8.5 cm (diagonale 7" = 18cm), TFT, 480 x 234 |
+ | * pas de son, photo uniquement au format JPEG | ||
+ | * support media : SD, MMC, USB | ||
==== Cadre photo Proline PL-DPF1003B ==== | ==== Cadre photo Proline PL-DPF1003B ==== | ||
- | Caractéristiques : | + | **Caractéristiques :** |
* avec transfo secteur (9V, 1.5A, centre positif) | * avec transfo secteur (9V, 1.5A, centre positif) | ||
* écran : 22.5 x 13 cm, 800 x 480, TFT | * écran : 22.5 x 13 cm, 800 x 480, TFT | ||
Ligne 81: | Ligne 83: | ||
* photo uniquement au format JPEG | * photo uniquement au format JPEG | ||
* sans télécommande | * sans télécommande | ||
+ | |||
+ | On peut mettre le cadre en format portrait, mais on ne peut pas choisir de rotation dans les menus... | ||
+ | |||
+ | Script pour convertir un dossier de png au bon format, ajouter un fond blanc et faire la rotation pour mettre le cadre en format portrait | ||
+ | |||
+ | <code bash> | ||
+ | #!/bin/bash | ||
+ | |||
+ | mkdir -p output | ||
+ | |||
+ | for f in *.png; do | ||
+ | convert "$f" \ | ||
+ | -resize 480x \ | ||
+ | -background white -gravity center -extent 480x800 \ | ||
+ | -rotate +90 \ | ||
+ | "output/${f%.png}.jpg" | ||
+ | done | ||
+ | </code> | ||
===== Photo numérique ===== | ===== Photo numérique ===== | ||