Hello!
A new version of the VDR OSDTeletext plug-in was just released.
Recent Changes:
- Added Portuguese translation provided by Chris Silva
- Updated Italian translation by Davide Cavalca
- Removed the "OSD" from the main menu entry as suggested by Davide
Cavalca
- Added Ukrainian translation provided by Yarema P. aka Knedlyk
- Removed obsolete options -R and -r
- Removed remnants of VDR < 1.6 support
- Updated Russian translation provided by Oleg Roitburd (Closes #46)
- Improved …
[View More]error handling
- Background toggling now allows to switch between black, the configured
background transparency and full transparency as suggested by
Walter K. (Closes #41)
- Removed the OSDTELETEXT_REINSERTION_PATCH (dead code)
- Removed timingdebug code
- Merged class ChannelStatus into cTxtStatus and changed the code that
detects, if the current live channel has been changed and the
OsdTeletext receiver needs to switch to the new channel as well
(Thx to Sören Moch!)
- Updated French translation provided by Nival Michael (Closes #56)
Thanks a lot to all the contributors and translators!
Development site:
http://projects.vdr-developer.org/projects/show/plg-osdteletxt
Downloads:
http://projects.vdr-developer.org/projects/list_files/plg-osdteletext
Git-Web:
http://projects.vdr-developer.org/git/?p=vdr-plugin-osdteletext.git
Anonymous Git-access :
git://projects.vdr-developer.org/vdr-plugin-osdteletext.git
This is intended to be a community maintained project! Don't expect me
to fix your problems, I'm merely maintaining the project!
Please report any bugs, ideas or feature requests to the project site (no
registration required for this!). If you want to contribute patches, new
features or whatever, post an issue or patch to the projects issue tracker
or request to join the project. I would happily add everyone as a project
member, who would like to contribute to the project!
If you want to contribute but don't know what to do - start with some code
refactoring!
Tobias
[View Less]
I am currently using vdr-1.6.0 with reelbox plugin and would like to
test the new vdr-1.7.3. I have Checked out revision 10331 from reelbox.org.
Since I am having trouble getting the reelbox plugin to compile with vdr-1.7.3
I thought I'd check first before continuing:
- Does the reelbox plugin work with vdr-1.7.3?
(does vdr's switching to TS make the current plugin unusable?)
- Is there a patch already for vdr-1.7.3 to make it compile with the reelbox plugin?
( I have tested some patches for …
[View More]vdr-1.7.0, but the ones I have tested fail )
Regards,
Josce
[View Less]
Op Za, 10 januari, 2009 15:04, schreef Ales Jurik:
> On Saturday 10 of January 2009, Josce wrote:
> Hi,
>
> -- SNIP --
> I've made some patch for reelbox plugin, but I was not able to get sound
> as
> well as from eHD as from PC soundcard.
>
Same here. I just tried it, and the eHD does indeed give no sound. I
allready posted it in the Reel forum. Hopefully a fix will popup some day.
> It seemed to be that the switching between channels is 2-3 times longer
> (…
[View More]maybe
> as syncearly from R.Nissl is not implemented?).
>
I didn't encounter longer zapping times. But then again, I didn't look for
it especially.
> So now I'm back at vdr-1.7.0 and last multiproto from Igor.
>
Same here. I'm back to 1.7.0 until the sound-problem has been fixed :)
> BR,
>
> Ales
>
Regards,
Niels Wagenaar
[View Less]
Hello all,
Not a VDR question, but I'm sure someone can help me here.
I've finally bought a remote control for my HTPC from a company named
SunWave, model SMR-140. Looks like a MCE clone.
It has an USB IR receiver that recognized as keyboard and mouse device (the
remote has a joystick that can be used to move mouse). I can use the remote
without lirc since it operates as keyboard.
Few questions about that:
1. I want to install XBMC in near future so I'll need irexec functionality.
Do I really …
[View More]need lirc for that? Or is there any other option to do it?
2. The remote sends sequence of keys for a single button, for example play
button sends "LEFTCTR", "LEFTSHIFT" and "P". How can I map that sequence to
represent a single button?
3. If someone has that remote (or maybe other remotes with the same strange
behavior). The behavior of stop button is very strange. It sends "back" or
"forward" or "homepage" or "bookmark" depending on what "Sx" button was
pressed before. Pressing stop again gives no input at all untill I'll press
a "Sx" button. Is there any trick to make it work in more expected way?
Thanks!
Alex.
[View Less]
Hi Klaus,
> a safety precaution (besides, two channels might
>have the *same* name, but never the same number.
Hmm, I thought it wasn't possible to have two
identical channels (even IF soley the name is
different). Has this changed?
Another question: what happens to the info file
when I make an instant recording (or a timer for
that matter) than spans across more than one
"show"? VDR used to only store the info (epg
data) from the first show. Personally, I think
VDR should record ALL …
[View More]show info (epg data) as
long as the timer or instant recording is
running. Perhaps with a divider between the
multiple shows.
Of course the question is how to distinguish
between simple pre and post timer times and
true multiple shows (perhaps only record the
info if the multiple show has finished being
aired or a similiar mechanism.
regards,
Reinhard
[View Less]
Hy all,
But I must contradict you all, I use vdr-1.7.2 with v4l-dvb from linuxtv.org but with patches from Alex, for stb8900 search algo on an sky star hd aka tt-3200. with vdr-xine-0.8.2 wit curent xine-lib-1.2 and ffmpeg, and it is working perfectly on gentoo linux.
Hi,
attached is a small patch that adds some missing const keywords in cOsd
class to be able to use Data and GetColor methods on const objects. The
patch is against vdr-1.6.0-1 but should apply cleanly against 1.7.3, too.
Regards
Andreas
diff -uN vdr-1.6.0/osd.c vdr-1.6/osd.c
--- vdr-1.6.0/osd.c 2007-10-12 14:38:36.000000000 +0200
+++ vdr-1.6/osd.c 2008-12-29 16:56:09.619517549 +0100
@@ -635,7 +635,7 @@
}
}
-const tIndex *cBitmap::Data(int x, int y)
+const tIndex *cBitmap::Data(…
[View More]int x, int y) const
{
return &bitmap[y * width + x];
}
diff -uN vdr-1.6.0/osd.h vdr-1.6/osd.h
--- vdr-1.6.0/osd.h 2007-10-12 16:28:44.000000000 +0200
+++ vdr-1.6/osd.h 2008-12-29 16:51:06.938850671 +0100
@@ -231,9 +231,9 @@
///< 5: vertical, rising, upper
///< 6: vertical, falling, lower
///< 7: vertical, falling, upper
- const tIndex *Data(int x, int y);
+ const tIndex *Data(int x, int y) const;
///< Returns the address of the index byte at the given coordinates.
- tColor GetColor(int x, int y) { return Color(*Data(x, y)); }
+ tColor GetColor(int x, int y) const { return Color(*Data(x, y)); }
///< Returns the color at the given coordinates.
void ReduceBpp(const cPalette &Palette);
///< Reduces the color depth of the bitmap to that of the given Palette.
[View Less]
Hello All!
I want to use an plugin for vdr, lets say x but when I tray to compile it, it says wrong api or old api.
Question:
1. is ther any api specification or documentation for vdr for plugin development?
2. or how to port old plugins to new api?