Pictuteviewer, audioplayer,and movieplayer

Kreuzuebersetzer, Diskussion über Änderungen im Tuxbox-CDK und Tuxbox-CVS
shylock_1
Interessierter
Interessierter
Beiträge: 42
Registriert: Dienstag 8. Dezember 2009, 19:46

Pictuteviewer, audioplayer,and movieplayer

Beitrag von shylock_1 »

Hi forum,

I am trying to use Pictureviewer, audioplayer and movieplayer within DM7000 box. By default the configure script has all three components are enabled for Neutrino build but same does not apply for Dreambox build as image exclusively made for DM7000s.The following code fragment from configure.ac depict by default build for Neutrino image.

Code: Alles auswählen

AM_CONDITIONAL(ENABLE_UPNP,test "$enable_upnp" = "yes")
AM_CONDITIONAL(ENABLE_FLAC,test "$enable_flac" = "yes")
AM_CONDITIONAL(ENABLE_AUDIOPLAYER,test "$enable_audioplayer" = "yes")
AC_SUBST(NEUTRINO_AUDIOPLAYER_DEPS)

AC_ARG_ENABLE(pictureviewer,
	AS_HELP_STRING(--disable-pictureviewer,include Neutrino pictureviewer),
	,[enable_pictureviewer=yes])
AM_CONDITIONAL(ENABLE_PICTUREVIEWER,test "$enable_pictureviewer" = "yes")
if test "$enable_pictureviewer" = "yes"; then
	NEUTRINO_PICTUREVIEWER_DEPS="libjpeg libpng"
fi
AC_SUBST(NEUTRINO_PICTUREVIEWER_DEPS)

AC_ARG_ENABLE(movieplayer,
	AS_HELP_STRING(--disable-movieplayer,include Neutrino movieplayer),
	,[enable_movieplayer=yes])
AM_CONDITIONAL(ENABLE_MOVIEPLAYER,test "$enable_movieplayer" = "yes")
While using configure --enable-xxx option the image creation seem to fall off with an error: image size greater than 6 mb while actual size of file which binutil try to convert is > 5.5 mb for DM box. Enabling any further more options in configure simply failure of build due to size of image.

Is there any way build can continue and produce an image? While all possible required options to ./configure ?

Thank you, in advance.