-
Useful FFmpeg Commands
Fmpeg is an extremely powerful and versatile command line tool for converting audio and video files. It is free and available for Windows, Mac and Linux machines. Whether you want to join two video files, extract the audio component from a video file, convert your video into an animated GIF, FFmpeg can do it all […]
-
TRANSFER FILES BETWEEN A PC AND ANDROID PHONE USING WIFI
The future is wireless and the trend is now being carried over by android phones too . These days a very few people actually prefer to use USB cables for transferring files between their PC’s and their phones / tablets . The reason being transferring files wirelessly is very convenient than transferring files through a […]
-
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) […]