BCM70012/BCM70015 Module under Linux

From LEXWiKi

(Difference between revisions)
Jump to: navigation, search
(Stop video)
Current revision (14:33, 25 February 2022) (edit) (undo)
 
(9 intermediate revisions not shown.)
Line 1: Line 1:
 +
[[Category:AllowPages]]
== You can download the Linux driver form ==
== You can download the Linux driver form ==
-
driver : [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/BCM70012_70015_Linux/crystalhd.tar.gz crystalhd]
+
Driver :
 +
 
 +
<Google Drive> [https://drive.google.com/file/d/1Ni-ydLQjJs-2yyEdYKprYX0-nSRk9xz5/view?usp=sharing Crystalhd]
 +
 
 +
<FTP> [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/BCM70012_70015_Linux/crystalhd.tar.gz Crystalhd]
== The Sample code source you can download form ==
== The Sample code source you can download form ==
-
Source file: [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/BCM70012_70015_Linux/BCM70012_70015_Demo_Linux_Src.rar BCM70012_70015_Demo_Linux_Src.rar]
 
-
Binary file: [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/BCM70012_70015_Linux/BCM70012_70015_Demo_Linux_Bin.rar BCM70012_70015_Demo_Linux_Bin.rar]
+
<Google Drive>
-
== How to use the DEMO application ==
+
Source file: [https://drive.google.com/file/d/1BrQ_UlNaKlGtEel9GNVGswwBeFE7xddm/view?usp=sharing BCM70012_70015_Demo_Src]
-
[[Image:BCM70012AP.jpg]]<br />
+
-
1.Open the video file to play , the file will play automatically.
+
Binary file: [https://drive.google.com/file/d/1UEF9YHiBN3TdninNISl-c4eFlTh-ftiO/view?usp=sharing BCM70012_70015_Demo_Bin]
-
2.The button used to play the video.
 
-
3.The button used to pause the video.
+
<FTP>
 +
 
 +
Source file: [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/BCM70012_70015_Linux/BCM70012_70015_Demo_Src.tar.gz BCM70012_70015_Demo_Src]
 +
 
 +
Binary file: [ftp://ftp.lex.com.tw/Engineer/SoftSupport/AP_Module/BCM70012_70015_Linux/BCM70012_70015_Demo_Bin.tar.gz BCM70012_70015_Demo_Bin]
 +
 
 +
== How to use the DEMO application ==
 +
[[Image:bcmpic1.jpg]]<br />
 +
 
 +
[[Image:BCM2.jpg]]<br />
-
4.The button used to stop the video.
+
[[Image:BCM3.jpg]]<br />
-
5.Full screen.
 
-
6.To show the status of the video and you can pull the bar to change the video's play status.
+
1.The button used to open the video file.
-
7.Where the video play in.
+
2.The button used to stop the video.
-
8.You can input the words. The words can show on the video such as 11.
+
3.After press the OpenFile button,you can choose the video file in this dialog.
-
9.Choose the speed of the word run on the video , the speed will be chang after press the Set button(10).
+
4.After choose the video file , the video will play.
-
10.Show the words.
 

Current revision

Contents

You can download the Linux driver form

Driver :

<Google Drive> Crystalhd

<FTP> Crystalhd

The Sample code source you can download form

<Google Drive>

Source file: BCM70012_70015_Demo_Src

Binary file: BCM70012_70015_Demo_Bin


<FTP>

Source file: BCM70012_70015_Demo_Src

Binary file: BCM70012_70015_Demo_Bin

How to use the DEMO application

Image:bcmpic1.jpg

Image:BCM2.jpg

Image:BCM3.jpg


1.The button used to open the video file.

2.The button used to stop the video.

3.After press the OpenFile button,you can choose the video file in this dialog.

4.After choose the video file , the video will play.


Sample code Introduction

Play video

void BCM70012_70015_Demo_play (const char *uri)
{
   BCM70012_70015_Demo_stop ();
   pipeline = gst_pipeline_new ("gst-player");

   bin = gst_element_factory_make ("playbin", "bin");

   gst_bin_add (GST_BIN (pipeline), bin);

   {
       GstBus *bus;
       bus = gst_pipeline_get_bus (GST_PIPELINE (pipeline));
       gst_bus_add_watch (bus, bus_cb, NULL);
       gst_object_unref (bus);
   }

   g_object_set (G_OBJECT (bin), "uri", uri, NULL);

   gst_element_set_state (pipeline, GST_STATE_PLAYING);
}

Stop video

void BCM70012_70015_Demo_stop (void)
{
   if (pipeline)
   {
       gst_element_set_state (pipeline, GST_STATE_NULL);
       gst_object_unref (GST_OBJECT (pipeline));
       pipeline = NULL;
   }
}
Personal tools