-
Using cron to delete files older than X minutes/ days
If you want to empty files in /tmp folder older than X minutes: find /tmp -mmin +30 -type f -name “*.*” -exec rm -f {} ; +30: 30 minutes; “*.*”: if you want to delete all files (please specify name as you want) If you want to empty files in /tmp folder older than X days: […]
-
How to install FFmpeg and ffmpeg-php on CentOS Easily
FFmpeg is an amazing collection of open-source tools that can record and stream video and audio. However, it can also transcode video and audio (convert the files to different formats), and that is what has me so excited. There’s also a great PHP package called ffmpeg-phpthat allows for easy use of FFmpeg from inside PHP […]
-
How to install MP4Box on CentOS
MP4Box is a MP4 multiplexer. So let see How TO Install MP4Box on CentOS. MP4Box can import MPEG-4 video, DivX, XviD, 3ivx, h264 etc, audio streams and subtitles into the .mp4 container. The end result is a compliant MP4 stream. It can also extract streams from a .mp4. MP4Box is a command line tool, but […]
-
Remote URL Upload to mega.nz
Currently, I have made script that allow you to remote upload files to mega.nz. You must put your login information when doing uploading Please try here: https://save.thoaimedia.com
-
Remote URL Upload to Google Photos
Currently, I have made script that allow you to remote upload videos to Google Photos up to 10GB/file. Google has not provided API so we make it with login form. Please try here: http://thoaimedia.com/save
-
Install Transmission Client to RHEL / CentOS 6
Torrent Guide – Install Transmission Client to RHEL / CentOS 6 Transmission Bittorrent Client Transmission is an open source and extremely lightweight Bittorrent client. It is available for any OS and comes with it’s own GUI interface. Although Transmission is not as popular as rTorrent/ruTorrent for seedboxes, it is still a strong solid choice as […]
-
Banner Advertising on Video (mobile support) for jwplayer
Hello members, I have developed new plugin for displaying ads overlay on video. – Support: html, javascript – Working on desktop and mobile (html5 support) – Close and Play button: click Close to watch video. When you stop video, ads will display again. Demo here: http://wootake.com/watch_video.php?v=SNU54BO886SH Contact me for purchase at thoaimedia at gmail dot […]
-
Android Studio – Rename Package
(1) Open the file: app >> manifests >> AndroidManifest.xml Highlight each part in the package name that you want to modify (don’t highlight entire package name) then: Mouse right click >> Refactor >> Rename >> Rename package type the new name and press (Refactor) Do these steps in each part of the package name (2) […]
-
How to install ffmpeg, ffmpeg-php on CentOS 6/7 (Cpanel Server)
For EL6: rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm rpm -Uvh http://li.nux.ro/download/nux/dextop/el6/x86_64/nux-dextop-release-0-2.el6.nux.noarch.rpm Install FFMpeg from ATRPMS Repository: yum -y install ffmpeg ffmpeg-devel How to check if FFMPEG is working? Verify the ffmpeg version: ffmpeg -version [[email protected]:~]ffmpeg -version ffmpeg version 2.2.1 built on Apr 13 2014 13:00:18 with gcc 4.4.6 (GCC) 20120305 (Red Hat 4.4.6-4) configuration: –prefix=/usr –libdir=/usr/lib64 –shlibdir=/usr/lib64 –mandir=/usr/share/man […]
-
How To Install And Run VLC On CentOS 6/7 As Root
VLC media player (commonly known as VLC) is a portable, free and open-source, cross-platform media player and streaming media server written by the VideoLAN project. VLC media player supports many audio and video compression methods and file formats, including DVD-Video, video CD and streaming protocols. It is able to stream media over computer networks and […]