Categories
- FFMpeg (5)
- Libav (1)
- Google (3)
- iBeacon (1)
- LDAP (3)
- Me (2)
- Network (11)
- OS (149)
- RTMP (4)
- SIP (1)
- Kamailio (1)
- SNMP (1)
- VMware (20)
- VCP考試 (1)
- 伺服器 網站服務 (105)
- 名詞解釋 (4)
- 專案管理 (1)
- 工具軟體 (51)
- Adobe (1)
- FMS (1)
- Cloudera (1)
- Docker (1)
- Eclipse (4)
- Intellij (2)
- OBS (2)
- Office (10)
- Excel (4)
- PowerPoint (5)
- Postman (2)
- Splunk (13)
- Virtualbox (2)
- Visual Studio (2)
- 文字編輯器 (10)
- Sublime Text 2 (6)
- Sublime Text 3 (3)
- Vim (3)
- 連線工具 (1)
- Xshell (1)
- Adobe (1)
- 程式語言 (80)
- CSS (2)
- HTML (2)
- iOS (1)
- Java (30)
- JavaScript (5)
- jQuery (4)
- jsTree (2)
- JSP (3)
- PHP (16)
- Python (8)
- Ruby (1)
- sed (1)
- Shell Script (8)
- Windows Bash Script (1)
- XML (1)
- 資料庫 (37)
- FFMpeg (5)
Category Archives: Xibo
Xibo 修改網頁page template
避免在指派播放網頁的時候會因為activeX被關閉而失敗 修改 {xibo directory}/modules/preview/HtmlTemplateSimple.html 最上面加入 <!– saved from url=(0014)about:internet –>
Posted in Xibo
Leave a comment
Xibo使用web page時出現白邊解決方法
即使在設定上已經選擇了fullscreen,可是在client播放時四週會有白邊 這時候的解決方法為將layout的設定稍為超過,蓋掉白邊…Orz
Posted in Xibo
Leave a comment
Xibo 增加 Menu
page 資料表新增資料 pageID => 流水號 name => 名稱 pageGroupID => groupID menuitem 資料表新增資料 MenuItemID => 流水號 MenuID => 屬於哪一層Menu PageID => 哪一個頁面,對應到 1. 的資料 Args => link,外部link要連http一起打 Text => 顯示資訊 Class => 未知 Img => 圖片 Sequence => 在這一層menu的順序 External … Continue reading
Posted in Xibo
Leave a comment
Xibo 修正上傳中文檔名會空白
修改 {xibo}/3rdparty/jquery-file-upload/UploadHandler.php 主要是因為basename這個function對解析中文會有問題~ protected function trim_file_name($name, $type, $index, $content_range) { // Remove path information and dots around the filename, to prevent uploading // into different directories or replacing hidden system files. // Also remove control characters and spaces (x00..x20) around … Continue reading
Posted in Xibo
Leave a comment
Xibo 增加 display 顯示頁面連結,開啟 rtmp 串流頁面
修改 {xibo}/theme/default/html/display_page_grid.php 修改為 <img src=”../OBSLogo80.png” alt=”” width=”20″ />
Posted in Xibo
Leave a comment
Xibo 修改外部 link 為新開視窗
修改檔案 {xibo}/lib/app/thememanager.class.php $item[‘li’] = ” . $item[‘title’] . ”; 修改為 $item[‘li’] = ” . $item[‘title’] . ”;
Posted in Xibo
Leave a comment
Xibo & Nginx-rtmp
20141226 更新 不要用這個~~因為不穩定~Orz 環境: Ubuntu 14.04.01 1. 安裝build deb需要的套件 apt-get install dpkg-dev 創建source code目錄 mkdir -p /usr/src/nginx cd /usr/src/nginx 透過apt-get下載nginx的source code apt-get source nginx 安裝git apt-get install git 透過git下載nginx-rtmp-module的source code git clone https://github.com/arut/nginx-rtmp-module.git 將rtmp、xlst模組功能加入設定檔中 cd nginx-1.4.6/ vim debian/rules common_configure_flags := … Continue reading
Posted in Nginx, Ubuntu, Xibo
Leave a comment