Posts by dippes
-
-
Hello
I bought a Yamaha Surroundbar today and wanted to connect my Rasp4 via HDMI.
Unfortunately no sound and no picture, so I connected the Raspi directly to the TV again.
Is there anything you can do?
-
all settings in CEC are ok.
What else could I try?
It should work with the previous MC with an Nvida graphics card.
-
I went through step 11 of the instructions again.
The configuration does not survive a restart.
-
-
Hello
When my Raspi 4 boots up, my Panasonic does not automatically switch to HDM1.I have to press the source button on the remote control first.
On my Samsung TV, on the other hand, it works.
Is there anything I can do to make it work on my Panasonic Viesta?
-
It was actually the argon casing.
Disassembled and reassembled, it works.
The adapter board did not have proper contact with the raspi.
-
Hello
I wanted to set my "/storage/.config/rc_keymaps/rc-medion-x10-or2x" in /etc/rc_maps.cfg".
ati_remote rc-medion-x10-or2x rc-medion-x10-or2x
Unfortunately, /etc/rc_maps.cfg is not writable.
Is this even the right place? or does it have to be in "/storage/.config/rc_maps.cfg?
-
Hello,
I have bought a new Raspi 4 and an Argon one m.2.
The problem is that it won't boot up with the HDMI cable plugged into my Samsung TV. If I unplug the cable, the Raspi boots up and I can access the shell with ssh.
It works with my old Panasonic.
What is the problem?
-
Changed CEC from port 0 to port 1 since the Raspi is plugged into Hdmi 1.
After restarting the Raspi, port 0 is set again.
So is Hdmi 1 port 0 ?
Is that so‽
-
Only the Raspi 4 is connected to the TV.
How do I find out the port number?
-
Cec does not work every second start-up. After rebooting the Raspi 4, it usually works again.
Is there anything I can do about this?
-
-
-
I have converted the video from h265 to h 264.
No change.
It must be the format, is there anything I can do?
-
Hello
I have a video which is only displayed in the upper left corner of the TV with Raspi 4 and LibreElec 9.2, but on other players (Kodi-Windows,Kodi-Ubuntu) the video plays correctly.
Code
Display MoreVideo ID : 1 Format : HEVC Format/Info : High Efficiency Video Coding Format-Profil : Main [email protected]@High HDR format : SMPTE ST 2086, HDR10 compatible Codec-ID : V_MPEGH/ISO/HEVC Dauer : 2 h 13 min Bitrate : 5 042 kb/s Breite : 3 840 Pixel Höhe : 2 160 Pixel Bildseitenverhältnis : 16:9 Modus der Bildwiederholungsrate : konstant Bildwiederholungsrate : 23,976 (24000/1001) FPS Color space : YUV Chroma subsampling : 4:2:0 Bit depth : 10 bits Bits/(Pixel*Frame) : 0.025 Stream-Größe : 4,71 GiB (97%) Default : Ja Forced : Nein Color range : Limited Color primaries : BT.2020 Transfer characteristics : PQ Matrix coefficients : BT.2020 non-constant Mastering display color primaries : Display P3 Mastering display luminance : min: 0.0050 cd/m2, max: 4000 cd/m2 Audio ID : 2 Format : AAC LC Format/Info : Advanced Audio Codec Low Complexity Codec-ID : A_AAC-2 Dauer : 2 h 13 min Bitrate : 147 kb/s Kanäle : 6 Kanäle Channel layout : C L R Ls Rs LFE Samplingrate : 48,0 kHz Bildwiederholungsrate : 46,875 FPS (1024 SPF) Compression mode : Lossy Video Verzögerung : 20 ms Stream-Größe : 141 MiB (3%) Sprache : Deutsch Default : Nein Forced : Nein Text #1 ID : 3 Format : UTF-8 Codec-ID : S_TEXT/UTF8 Codec-ID/Info : UTF-8 Plain Text Dauer : 1 h 51 min Bitrate : 1 b/s Count of elements : 40 Stream-Größe : 1,02 KiB (0%) Titel : de_Forced Sprache : Deutsch Default : Nein Forced : Ja Text #2 ID : 4 Format : UTF-8 Codec-ID : S_TEXT/UTF8 Codec-ID/Info : UTF-8 Plain Text Dauer : 2 h 12 min Bitrate : 35 b/s Count of elements : 1204 Stream-Größe : 34,8 KiB (0%) Titel : de_Full Sprache : Deutsch Default : Nein Forced : Nein Text #3 ID : 5 Format : UTF-8 Codec-ID : S_TEXT/UTF8 Codec-ID/Info : UTF-8 Plain Text Dauer : 2 h 13 min Bitrate : 50 b/s Count of elements : 1502 Stream-Größe : 49,4 KiB (0%) Titel : de_Full Sprache : Deutsch Default : Nein Forced : Nein Text #4 ID : 6 Format : UTF-8 Codec-ID : S_TEXT/UTF8 Codec-ID/Info : UTF-8 Plain Text Dauer : 2 h 13 min Bitrate : 46 b/s Count of elements : 1630 Stream-Größe : 45,7 KiB (0%) Titel : en_Full Sprache : Englisch Default : Nein Forced : Nein
Other films with this codek will play correctly.
-
Hello
Try this script, it works reliably for me under Ubuntu.
Maybe also with Libreelec.
Bash
Display More#!/bin/bash logfile="/var/log/musikmount.log" maxversuche=300 ipadresse="192.168.1.48" mountbefehl="mount 192.168.1.48:/mnt/media1/Musik /home/walter/Musik" versuch=1 # warte echo echo "prüfe verbindung ..." | tee -a $logfile zaehler=0 while [ $versuch -lt $maxversuche ];do ping -c 1 "$ipadresse" if [ $? -eq 0 ];then echo "verbunden nach $zaehler sek." | tee -a $logfile $mountbefehl if [ $? -eq 0 ];then echo "mount ok" | tee -a $logfile break else echo "mount fehler" | tee -a $logfile break fi else zaehler=$(($zaehler + 1)) sleep 1 fi done
-
Can you post the link here?