epg

Unable to scroll down in TV(EPG-GUIDE)Using TV Remote Down Button

霸气de小男生 提交于 2020-01-07 05:01:07
问题 1.I am Developing an android application as Electronic Program Guide(EPG) for set-top-box followed by this project https://github.com/codessentials/android-tv-epg." 2.I can able to navigate left to right,rigtht to left(Horizontal scroll) & able to see the focus also(Left & right Remote key navigation), 3.I can't navigate Top to Bottom & Bottom to Top,unable to scroll it & can't see the focus,that view fully opened, so focus went to down but i can't see that. 4.How to scroll as Top to buttom

Getting EPG info from DVB-T

安稳与你 提交于 2019-12-21 04:28:28
问题 I'm interested in grabbing the EPG data from DVB-T streams. Does anyone know of any C libraries or an alternative means of getting the data? 回答1: tv_grab_dvb can do this. See the subversion repository for sources. tv_grab_dvb is made to work with the stream grabbed from the DVB-T card using dvbtools on Linux, but it may be portable to other platforms - I think it just works with the raw data from the stream. 回答2: ...a new answer to an old question: I wrote a utility called dvbtee that can be

how to extract EPG from dvb-t (live tv stream - udp) with ffmpeg?

喜你入骨 提交于 2019-12-12 10:20:01
问题 I want to extract EPG from dvb-t (live tv stream - udp) with ffmpeg. I have a dvb-t device and receiving streams with udp. 回答1: I have an dvb-t udp .ts stream generated with mumudvb and I can extract the EPG guide info in XMLTV format with epgrab - https://github.com/hiroshiyui/epgrab git clone https://github.com/hiroshiyui/epgrab.git cd epgrab/ cmake . make # Point epgrab to your dvb adapter ./epgrab -i /dev/dvb/adapter0/demux0 > out.xml Hope this helps! 回答2: I wrote a utility called dvbtee

Which Table/Grid Control in WPF?

纵饮孤独 提交于 2019-12-05 23:22:57
问题 I am looking to display tabular data (tv channels), but with options such as DataGrid/UniformGrid/Table with FlowDocument/etc. I cannot figure out what would be the best option. The main issues is that the cells aren't uniform in size as it varies based on length of time, and I would like to put padding between them as well. Additionally, I need to only be able to display a portion of the table, and allow them to scroll Up/Down/Right to view the rest. What would be the best WPF Control Option

Which Table/Grid Control in WPF?

馋奶兔 提交于 2019-12-04 06:05:53
I am looking to display tabular data (tv channels), but with options such as DataGrid/UniformGrid/Table with FlowDocument/etc. I cannot figure out what would be the best option. The main issues is that the cells aren't uniform in size as it varies based on length of time, and I would like to put padding between them as well. Additionally, I need to only be able to display a portion of the table, and allow them to scroll Up/Down/Right to view the rest. What would be the best WPF Control Option for this? Here is a small illustration of what I am going for. The white square in the upper left is

Getting EPG info from DVB-T

偶尔善良 提交于 2019-12-03 13:19:05
I'm interested in grabbing the EPG data from DVB-T streams. Does anyone know of any C libraries or an alternative means of getting the data? tv_grab_dvb can do this. See the subversion repository for sources. tv_grab_dvb is made to work with the stream grabbed from the DVB-T card using dvbtools on Linux, but it may be portable to other platforms - I think it just works with the raw data from the stream. ...a new answer to an old question: I wrote a utility called dvbtee that can be used as a c++ library, a cross-platform command line utility, or a node.js module. (despite it being a c++

Open-source / free universal EPG / XMLTV data API or service, or how to make one? [closed]

不羁岁月 提交于 2019-12-03 06:17:05
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I am looking for (an open-source, aka "free") data-source for universal EPG / XMLTV services? The project needs updated/updateable real-time TV scheduling info, in an easily parsable format. It also MUST be available at no cost or a VERY liberal license. Thanks for any advice or alternatives. I am open to coding

Scroll multiple horizontal RecyclerView together

十年热恋 提交于 2019-11-30 04:12:10
I'm creating an EPG like view for which I have multiple horizontal RecyclerView s (as tv programs) encapsulated inside a LinearLayout. When I scroll one of the RecyclerView, I want the rest of the views to be scrolled together. @Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); layoutContent.setWeightSum(epg.getChannels().size()); //prepare recycler views and add into layoutContent based on epg channels for(EPG.Channel ch : epg.getChannels()){ AppLog.error(TAG, "Creating RecyclerView for: " + ch.getDisplayName()); //create new

Scroll multiple horizontal RecyclerView together

喜夏-厌秋 提交于 2019-11-29 01:39:07
问题 I'm creating an EPG like view for which I have multiple horizontal RecyclerView s (as tv programs) encapsulated inside a LinearLayout. When I scroll one of the RecyclerView, I want the rest of the views to be scrolled together. @Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); layoutContent.setWeightSum(epg.getChannels().size()); //prepare recycler views and add into layoutContent based on epg channels for(EPG.Channel ch : epg