This article refers to the address: http://
1 Introduction
With the continuous development of multimedia technology and network technology, the networked playback system will gradually replace the existing local playback mode of advertising machines in building TV advertising technology. A diversified and real-time release model and an intelligent and user-friendly management platform will promote the development of the building TV advertising industry.
In a networked playback system, a multimedia playback terminal with networking capabilities is a key device that can play pictures, music, video, and text, and becomes an integral part of the entire playback system. In the new generation of playback system, the central administrator can conveniently configure and manage it through the Internet or intranet, and arrange personalized content to effectively solve the defect that the content of the existing playback terminal is relatively monotonous.
Based on this new requirement, this paper proposes a novel design scheme for multimedia playback terminals suitable for network playback.
2 hardware design
2.1 Functional analysis
Table 1 compares the new generation of network playback terminals with independent players.
In order to realize remote control of network playback, the multimedia player terminal must have the following functions: 1) Connect to the server: automatically connect to the remote server after startup; 2) Timed communication: timing handshake with the server; 3) Log management: record the terminal running status, Form a log file, and periodically feed the log information to the server; 4) Remotely accept the task and execute it as required: Accept the task sent by the center/sub-center at any time, the task content includes: timed automatic switch machine, timed automatic download and play file, timed play specified Media files; 5) Support a variety of video and audio formats, playback quality to DVD quality and sound quality requirements; 6) can monitor the playback status of each region; 7) a variety of video output interfaces, external LCD, LED, PDP And other display terminals; 8) support remote software upgrades.
2.2 Hardware platform selection
At present, there are more than a dozen semiconductor suppliers that produce multimedia processors and launch corresponding solutions, such as Intel, AMD, TI, Freescale, ADI, NXP, SigmaDesigns, ST, Sharp, Sunplus (Singyang) and Shenzhen. An Kai and so on. The processors provided by these vendors vary greatly in performance, interface, power consumption, etc. due to different architectures. When selecting solutions, they must be processed, supported video formats, supported interfaces, power consumption, software and Careful comparison of operating system (OS) support and cost:
1) Processing power and supported video formats
Intel's PXA270 and AMD's Au1200 are general-purpose processors with strong performance. The supported audio and video formats are MPEG-1/2/4, WMV9, DivX, XVID, MP3, WMA, WAV, ASF, AVI, JPEG, etc. However, the PXA270 requires a media accelerator to work better, and the solution is relatively complicated. DSP-based solutions include TI's DM270/DM320, NXP's PNX0190 and ADI's Blackfin series. Such a solution still requires an MCU (ARM7 or ARM9) to handle the general functions of the system, such as the operating system and user interface. Audio and video decoding is a DSP expertise, generally supporting formats such as MPEG-1/2/4, DivX, WMV9 and JPEG.
2) Supported interfaces
Rich interfaces allow developers to extend functionality or have more choices when determining peripherals. The peripheral interface of the multimedia processor mainly includes a memory interface, a USB interface, a memory card interface, a camera interface, a hard disk interface, a display interface, a network interface, and the like. Existing solutions support SRAM'style='color:ff0000' target='_blank'>DRAM, but only AMD, Intel and NXP can support DDR memory at the same time, which is beneficial for faster codec rate. Mainstream solutions support USB 2.0. Most solutions support at least two memory card formats, such as MMC/SD or SD/CF. Some solutions support network interfaces such as AMD, Intel and SigmaDesigns.
3) Supported operating systems
Software development is an important part of player development. If you shorten the software development time, you can speed up the product launch. For different structures of hardware, the degree of difficulty in software development is also different. Programming based on the PXA270 processor with X86 instructions is easier. DSP algorithms are the most complex and require a lot of programming time, so vendors often offer complete software solutions, such as TI and NXP. MCU-based solutions provide easier programmability than DSP solutions. Most solutions support the Linux operating system, as well as middleware (such as media players), codecs, and applications.
4) Power consumption
In general, software codec-based solutions will have higher power consumption, such as Intel and AMD solutions; and hardware-based codec solutions will save power, such as Freescale's solution; DSP+ARM solution's power consumption Between the two. For AC-powered players designed in this article, power consumption is not an issue.
I choose AMD's Alchemy Au1200 as a multimedia processor with low power consumption (<400 W@400 Hz); support multiple video formats, can be extended to large display (1024×768), no external DSP, no need Multimedia transcoding.
2.3 Hardware System Structure
The playing terminal is an embedded system, which is a dedicated system combining software and hardware based on microcomputer technology. The whole system is designed according to a layered structure:
1) Application layer: graphical user interface design, media file playback, etc.;
2) Operating system layer: thread scheduling, file system, etc.;
3) Multimedia decoding: media acceleration engine, decoding of MPEG-1/2/4, WMV9, etc.;
4) Driver layer: audio, Ethernet, IDE, LCD, USB2.0, etc.
The hardware structure of the system is shown in Figure 1.
2.4 Module design
The system is mainly composed of a processor, a memory, a boot ROM, a hard disk, an LCD screen, and a peripheral expansion interface.
The Au1200 processor supports up to DDR2-533 memory chips. The system memory uses two Samsung DDR-266 SRAM'style='color:ff0000' target='_blank'>DRAMs, model K4H510838E-TLAA, with a total capacity of 128 Mbytes. . The boot system is solidified in the flash memory. The Au1200 controls the flash memory through the static bus. Since the address bus has only 15 bits, a latch is added to latch the address signal. Since the system is a download and playback system, the storage of multimedia files uses a common micro hard disk.
The Au1200 integrates an LCD controller that supports most current LCD screen operations by programming vertical and horizontal sync signals, bias signals, and pixel clock signals. This system is used for the display of public information, and it is better to use an LCD screen of 43 cm or more.
Here is a special description of the network interface design: the system uses Ethernet interface, the network controller selects DAVCOM's DM9000 Fast Ethernet control processor, the controller has good compatibility with Au1200 processor, DM9000 is equipped with standard 10/100 Mbit/s Ethernet interface, the physical layer supports the Ethernet interface protocol and integrates a receive buffer. The DM9000 supports TCP/IP hard acceleration, which can reduce the CPU load and improve the speed of network upload and download. The Linux driver is used to make the change driver and upgrade more flexible and convenient.
In the design, the connection between the DM9000 and the Au1200 is realized. The data, address and control of the three buses are connected and converted. Figure 2 shows the connection diagram.
The default I/O base address of the DM9000 is 300H. The address codes of the data port and address port are determined by the following formula.
DM9000 address port = high chip select address +300H+0 (1)
DM9000 data port = high chip select address +300H+4 (2)
The software of the network interface module includes TCP/IP protocol software and Ethernet chip DM9000 driver. Linux uses TCP/IP as a reference model. There are four layers: application layer, transport layer, Internet layer and host to network layer. The driver includes an interface program for the operating system core and an interface program for the physical layer (host to network layer). Operating system core interface program for discovering, detecting network card parameters and sending data structure routines.
3 system software design
The system's software consists of three parts: embedded Linux porting, drivers, and application programming. The embedded Linux operating system is the platform of the user control system. The system driver adopts a modular form, provides an API function for the decoding application of the user layer, and controls the system hardware downward through the system hardware AP1 function. There are three levels of embedded Linux design: the boot loader, the Linux kernel, and the graphics system:
1) Boot loader
The boot loader is usually the first piece of code that is executed on the hardware. The system uses a dedicated software JFlash-Linux as the boot loader. It supports multiple types of chips, can interact directly with flash devices on remote systems, and installs the boot loader in a given location on the flash.
2) Embedded Linux kernel
The kernel checks the hardware and loads the root device, then looks up the root file system's init program and executes it. When configuring the kernel, choose: module into kernel, 386 processor, physical memory off, support ELF, standard PC floppy disk, support RAM disk, support initial RAMdisk, virtual terminal, virtual terminal console, standard serial port, ext2 file system, console Driver, as well as VGAtext console, DOS FAT, MSDOS file system.
3) Graphics system
The embedded system uses a lightweight GUI that is lightweight, uses less resources, and is highly reliable. System layered design, the bottom layer is a set of screen, mouse / touch screen, keyboard abstract interface; the middle layer is a portable graphics engine; the highest layer is a variety of APIs for graphics applications to call. The lowest level SCREEN abstract interface is based on the Linux Framebuffer device.
The application information management program mainly implements task management and network communication, and the flow thereof is shown in FIG. 3.
4 system application
The main application of this device is a network-based advertising playback system. The system consists of four parts: a playback terminal, a central server, a sub-center server, and a management center. The system network structure is shown in Figure 4.
The playback terminal is connected to the application system shown in FIG. 4, and several multimedia files of different sizes and different formats are downloaded and played, and the test results are shown in Table 2, which proves that the system design meets the actual use requirements.
The Alchemy Au1200-based multimedia player terminal designed in this paper has powerful multimedia playback function. Its main innovative idea is to increase the network and information management functions, so that it can realize remote control of the network and achieve a high degree of intelligence in the current buildings. The video intercom advertising system application field has broad market prospects.
BLPS laser safety protective device is designed for personal safety used on hydraulic bender.
The dynamic test technology it used has passed the Type 4 functional safety assessment by TUV, and get the national invention patent. The product reaches the advanced technological level of similar products.
BLPS laser safety device provides protection zone near the die tip of the bender to protect fingers and arms of the operator in close to the upper mold die tip. It is the most effective solution so far to preserves the safety and productivity of the bender.
Press Brake Protection,Laser Guarding Device,Press Brake Guarding Systems,Press Brake Guarding
Jining KeLi Photoelectronic Industrial Co.,Ltd , https://www.sdkelien.com