Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
(20) |
Apr
(1) |
May
(2) |
Jun
|
Jul
(2) |
Aug
(20) |
Sep
(73) |
Oct
(89) |
Nov
(59) |
Dec
(77) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(116) |
Feb
(149) |
Mar
(144) |
Apr
(139) |
May
(124) |
Jun
(134) |
Jul
(84) |
Aug
(80) |
Sep
(142) |
Oct
(203) |
Nov
(215) |
Dec
(121) |
2006 |
Jan
(132) |
Feb
(144) |
Mar
(57) |
Apr
(92) |
May
(182) |
Jun
(194) |
Jul
(116) |
Aug
(185) |
Sep
(334) |
Oct
(220) |
Nov
(233) |
Dec
(153) |
2007 |
Jan
(161) |
Feb
(130) |
Mar
(130) |
Apr
(97) |
May
(55) |
Jun
(89) |
Jul
(142) |
Aug
(82) |
Sep
(87) |
Oct
(101) |
Nov
(92) |
Dec
(96) |
2008 |
Jan
(75) |
Feb
(125) |
Mar
(57) |
Apr
(48) |
May
(131) |
Jun
(42) |
Jul
(56) |
Aug
(41) |
Sep
(9) |
Oct
(19) |
Nov
(28) |
Dec
(13) |
2009 |
Jan
(11) |
Feb
(58) |
Mar
(5) |
Apr
(20) |
May
(28) |
Jun
|
Jul
(2) |
Aug
(1) |
Sep
(15) |
Oct
(21) |
Nov
(3) |
Dec
(25) |
2010 |
Jan
(19) |
Feb
|
Mar
(16) |
Apr
(7) |
May
(9) |
Jun
(8) |
Jul
|
Aug
(7) |
Sep
(4) |
Oct
(6) |
Nov
(62) |
Dec
(17) |
2011 |
Jan
(10) |
Feb
(13) |
Mar
(3) |
Apr
(7) |
May
(9) |
Jun
(2) |
Jul
|
Aug
(11) |
Sep
(6) |
Oct
(1) |
Nov
(5) |
Dec
(10) |
2012 |
Jan
(13) |
Feb
(5) |
Mar
|
Apr
(1) |
May
(7) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(14) |
Nov
(9) |
Dec
|
2013 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
(5) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
(1) |
Nov
|
Dec
|
2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(6) |
Nov
|
Dec
|
2016 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
1
(9) |
2
(2) |
3
(2) |
4
(4) |
5
(3) |
6
(4) |
7
(2) |
8
|
9
(3) |
10
(1) |
11
(11) |
12
|
13
(4) |
14
(3) |
15
(11) |
16
(12) |
17
(6) |
18
(4) |
19
(2) |
20
(9) |
21
(2) |
22
(3) |
23
(4) |
24
(12) |
25
(14) |
26
(3) |
27
(13) |
28
(1) |
|
|
|
|
From: MVallevand <mvallevand@gm...> - 2006-02-04 21:01:13
|
RIchard, I had very, very similar troubles when I was trying to play video through http. > 1/ You hit "play all" or "shuffle play" and you get a thumbnail > of the video in the bottom right. The basic snippet I added to move to full screen was mvpw_set_timer(playlist_widget, NULL, 0); mvpw_hide(playlist_widget); mvpw_hide(fb_progress); video_set_root(); mvpw_focus(root); screensaver_disable(); mvpw_set_timer(root, video_play, 50); (You can check out what I did in the audio.c function by searching for video_play.) > 2/ When all the videos are finished, I can't see how you detect > that to go back to the filebrowser screen. Right now it just > all stops. > If all things go well you should be back in the playlist after the video(s) have played since that is where video.c will leave you assuming you are using similar playlist logic as used for audio. > I think this is related to my lack of understanding above :-) I am still planning on looking into why all of this is necessary, since playing files directly doesn't require it. I coded this quickly by trial and error rather then fully understanding the code, and Jon even had to fix where I killed the audio thread, so I am definitely not an expert. . Martin. |
From: stuart <stuart@xn...> - 2006-02-04 16:49:58
|
Hi Jon... As I try to unwind MVPMC for the "startup" feature - I am wondering about: Trying to integrate this feature in your grand scheme of storing all this config data in EEPROM. I would like to emulate the IEE menu because it uses a sort of "radio button" approach of selecting options. It would appear the approach is simple and only needs some code added to gui.c around lines 2900 to 3000 in the settings_select_callback function. However, the IEE menu in the settings directory does not have a "CONFIG_--" define in the config.h file. So, I am thinking the IEE menu does not fit into your grand scheme for later EEPROM storage. So, following other examples, I have been trying to add code to gui.c, config.h and config.c. But, there are few comments here to hint of what to try. So, question 1: Is the IEE menu short of what you eventually want to do? Am I going down the right path modifying config.c to support the config structure?: =================================================================== RCS file: /cvsroot/mvpmc/mvpmc/src/config.c,v retrieving revision 1.10 diff -u -r1.10 config.c --- mvpmc/src/config.c 17 Jan 2006 02:07:06 -0000 1.10 +++ mvpmc/src/config.c 4 Feb 2006 07:45:02 -0000 @@ -589,6 +589,8 @@ mythtv_sort = config->mythtv_sort; if (config->bitmask & CONFIG_MYTHTV_PROGRAMS) show_sort = config->mythtv_programs; + if (config->bitmask & CONFIG_STARTUP_SELECT) + startup_selection = config->startup_selection; } int Index: mvpmc/src/config.h =================================================================== |
From: Richard Hodson <richard@ho...> - 2006-02-04 16:11:11
|
Hi, I have made a patch to show a directory full of video files as part of the file browser. It currently has two problems. 1/ You hit "play all" or "shuffle play" and you get a thumbnail of the video in the bottom right. In playlist_change() it currently has the lines: } else if (is_video(current)) { mvpw_set_timer(root, video_play, 50); } else if (is_audio(current)) { and I guess I need something in there to tell either the video to go full or the filebrowser to go away. Frankly I can't make head nor tail of controlling the display so far! 2/ When all the videos are finished, I can't see how you detect that to go back to the filebrowser screen. Right now it just all stops. I think this is related to my lack of understanding above :-) - Richard |
From: Timothy Legge <tlegge@ro...> - 2006-02-04 00:06:15
|
Timothy Legge wrote: > gettler@... wrote: > >>> Hi Jon >>> >>> No, as you guessed I am up to date. I did just notice something >>> though. While on the black screen I used the menu button and checked >>> the Audio and video stream. Both were blank. >>> >>> I am current at a loss as to where to look for the issue. I guess I >>> should try with myth protocol to see if the issue occurs there as well. >>> >>> Tim >> >> >> >> Are you playing program streams or transport streams? It sounds like >> either the demuxer is getting confused, or the demuxer is not getting >> any data. >> >> You might want to confirm that you're transferring program data after >> the skip. It should be obvious if you run tcpdump on the nfs port. > > > If I have no idea does that tell you anything? ;-) I ran file on the > KnoppMyth created files and received: > > MPEG sequence, v2, program multiplex > > As a guess I would say program stream. I will review the tcpdump and > see what is happening. I found the issue, I had been using a dongle.bin.config file with -f /etc/helvB18.fnt as an option. I removed that option and every this worked correctly. I don't remember why I inserted that option but it has been like it since October. It is kind of bizarre that that would cause an issue but the tcpdump does show that no trafic occurs after the pause. Tim |