Skip to main content

Posts

Showing posts from April, 2020

How to Clear Your Windows Clipboard

Either you can open cmd and type below and press enter for clearing your clipboard. echo off | clip Or you can create shortcut. Right click on desktop go to New and then Shortcut. Copy and Paste the below into "location of the item" field: C:\Windows\System32\cmd.exe /c "echo off | clip" Click Next and type a name for this shortcut and click on Finish. Just double click on this shortcut whenever you need to clear your clipboard. Source: https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/echo https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/clip

How to share folders between Windows and Ubuntu using VMware Workstation or Player

Go to VM/ Settings.... or Ctrl+D in VMware Workstation. Under Virtual Machine Settings go to Options Click on Shared Folders and click on Always Enabled and set the path of the shared folder from Windows. To check to see if Ubuntu is aware that there is a shared folder available run this command in a terminal  vmware-hgfsclient Now all we have to do is to re install the VMWare config tools. Tools will be mounted as below: Open and copy the the VMWareTools.gz to desktop and extract it. Open terminal, type sudo  space and drog drop the vmware-config-tools.pl from extracted folder. Follow the prompts, accepting the default values (press Enter) Share folder will be available under Other Locations/ Computer/ mnt/ hgfs/ SharedFolder

The specialized method '%1' is not supported on Business Component '%2' used by Business Object '%3'.(SBL-DAT-00322) in Siebel

Steps on which received Error: 1. Created new button with method name Validate. 2. Set the Applet user property CanInvokeMethod: Validate to TRUE 3. Called a workflow through applet eScript (on WebApplet_InvokeMethod) Error: When click on the button received below error: The specialized method '%1' is not supported on Business Component '%2' used by Business Object '%3'.(SBL-DAT-00322) Solution: Add CancelOperation for your method on Business Component eScript (on BusComp_PreInvokeMethod) if(MethodName == "Validate") { return (CancelOperation); }

What is the difference between TS and MP4

MP4 MPEG-4 Part 14 or MP4 is a digital multimedia container format most commonly used to store video and audio, but it can also be used to store other data such as subtitles and still images. Like most modern container formats, it allows streaming over the Internet. TS TS stands for Transport Stream TS files are specified for MPEG-2 part 1 systems MPEG transport stream (transport stream, MPEG-TS, MTS or TS) is a standard digital container format for transmission and storage of audio, video, and Program and System Information Protocol (PSIP) data.[3] It is used in broadcast systems such as DVB, ATSC and IPTV. The video quality of MP4 and TS files are the same. The primary difference between TS and MP4 files is that TS files are flat while MP4 files have an index at the beginning of the MP4 file. Otherwise, the video bits inside the files are the same and therefore the video quality of TS, M2TS and MP4 files are the same. Sources: wikipedia_mp4 wikipedia_ts digitalfaq ...

How to combine TS video and audio (tsMuxer) and convert into MP4 video file

To add audio with .ts video file and convert into mp4 you can use FFmpeg. Check below link for installation steps of FFmpeg: How to setup, install, configure, use ffmpeg on Windows 10 Follow below steps to achieve above target: Open CMD and set the path where your audio and ts video files are placed: Now use below command to add audio to ts file and convert into mp4. ffmpeg -i audio_file_name.audio_ext -i video_file_name.video_ext -async 1 -c copy output_video_name.encoding_extension ffmpeg -i 01_audio.aac -i 01.ts -async 1 -c copy 01.mp4 I have done this because my download manager didn't able to download audio in TS file, I got audio and TS file separately. If you have video data only in TS files, and audio data only in another TS files. You can use tsMuxer to add the audio stream from one .ts file into the .ts file containing the video or vice versa. This is called muxing and doesn't affect the quality of the audio or video in any way. ...

How to setup, install, configure, use ffmpeg on Windows 10

FFmpeg is the leading multimedia framework to decode, encode, transcode, mux, demux, stream, filter and play. It is a command line tool and open source project and available for Linux, Windows and MAC OS. OS Requirement: All builds require at least Windows 7 or Mac OS X 10.10. Nightly git builds are licensed as GPL 3.0, and release build are licensed as GPL 3.0 and LGPL 3.0. Download Documentation Setup: After the download of ffmpeg****static.zip extract and place in desired folder. On Windows 10 I have used below path: Now go to your system properties: Click on Advanced system settings: Click on Environment Variables button: Under system variables select Path and click on edit button, now press New and add the path where you have placed the files, make sure to add bin folder as well because exes are available under bin folder: Now Windows will recognize ffmpeg command and you can use it in cmd now. Check below link for learning how t...