Vu+ Bootlogos: Difference between revisions

From JoBaPedia
Jump to navigation Jump to search
(Created page with "* Create a picture with the target size, e.g. FullHD = 1920x1080, e.g. with Gimp * Transform the picture to an Mpeg2 stream, e.g. with ffmpeg ``` ffmpeg -i some_picture.jpeg s...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
* Create a picture with the target size, e.g. FullHD = 1920x1080, e.g. with Gimp
* Create a picture with the target size, e.g. FullHD = 1920x1080, e.g. with Gimp
* Transform the picture to an Mpeg2 stream, e.g. with ffmpeg
* Transform the picture to an Mpeg2 stream, e.g. with ffmpeg
```
 
ffmpeg -i some_picture.jpeg some_picture.m2v
infile=some_picture.jpeg
```
outfile=some_picture.m2v
ffmpeg -i "$infile" "$outfile"
 
This command might produce better quality - I didnt actually compare the results...
 
ffmpeg -i "$infile" -aspect 16:9 -c:v mpeg2video -b:v 4000k -minrate 4000k -maxrate 4000k -bufsize 2000k -dc 9 -flags +ilme+ildct -alternate_scan 1 -top 0 "$outfile"
 
* Copy the picture over to the Vu+ Box, in this case a Vu+Zero named vuzero
* Copy the picture over to the Vu+ Box, in this case a Vu+Zero named vuzero
```
scp "$outfile" root@vuzero:/usr/share/enigma2/radio.mvi
scp some_picture.m2v root@vuzero:/usr/share/enigma2/radio.mvi
```


The radio.mvi lends itself for testing, because you can just switch to radio mode to see it
The radio.mvi lends itself for testing, because you can just switch to radio mode to see it


Other candidates are (not tested yet)
Other candidates are (I replaced boot_logo and boot_logo_wait, the others have useful text info so I kept them for now)
```
/usr/share/vuplus-bootlogo/bootlogo.mvi
/usr/share/bootlogo.mvi
/usr/share/vuplus-bootlogo/backdrop.mvi
/usr/share/backdrop.mvi
/usr/share/vuplus-bootlogo/reboot.mvi
/usr/share/reboot.mvi
/usr/share/vuplus-bootlogo/update_in_progress.mvi
/usr/share/update_in_progress.mvi
/usr/share/vuplus-bootlogo/bootlogo_wait.mvi
/usr/share/enigma2/radio.mvi
/usr/share/vuplus-bootlogo/shutdown.mvi
/usr/share/bootlogo_wait.mvi
/usr/share/shutdown.mvi
 
/usr/share/vuplus-bootlogo/bootlogo.mvi
/usr/share/vuplus-bootlogo/backdrop.mvi
/usr/share/vuplus-bootlogo/reboot.mvi
/usr/share/vuplus-bootlogo/update_in_progress.mvi
/usr/share/vuplus-bootlogo/bootlogo_wait.mvi
/usr/share/vuplus-bootlogo/shutdown.mvi
 
/boot/bootlogo.mvi
/boot/backdrop.mvi
/boot/reboot.mvi
/boot/update_in_progress.mvi
/boot/bootlogo_wait.mvi
/boot/shutdown.mvi
```

Latest revision as of 09:19, 24 May 2021

  • Create a picture with the target size, e.g. FullHD = 1920x1080, e.g. with Gimp
  • Transform the picture to an Mpeg2 stream, e.g. with ffmpeg
infile=some_picture.jpeg
outfile=some_picture.m2v
ffmpeg -i "$infile" "$outfile"

This command might produce better quality - I didnt actually compare the results...

ffmpeg -i "$infile" -aspect 16:9 -c:v mpeg2video -b:v 4000k -minrate 4000k -maxrate 4000k -bufsize 2000k -dc 9 -flags +ilme+ildct -alternate_scan 1 -top 0 "$outfile"
  • Copy the picture over to the Vu+ Box, in this case a Vu+Zero named vuzero
scp "$outfile" root@vuzero:/usr/share/enigma2/radio.mvi

The radio.mvi lends itself for testing, because you can just switch to radio mode to see it

Other candidates are (I replaced boot_logo and boot_logo_wait, the others have useful text info so I kept them for now)

/usr/share/vuplus-bootlogo/bootlogo.mvi
/usr/share/vuplus-bootlogo/backdrop.mvi
/usr/share/vuplus-bootlogo/reboot.mvi
/usr/share/vuplus-bootlogo/update_in_progress.mvi
/usr/share/vuplus-bootlogo/bootlogo_wait.mvi
/usr/share/vuplus-bootlogo/shutdown.mvi