14 April 2014

Danger Confirmed: Heartbleed Really Does Open Up Crypto Keys to Hackers



heartbleed-open-keys

News from Cloudflare on Friday indicates that the debate is over regarding whether the new OpenSSL Heartbleed vulnerability could be utilized to obtain private encryption keys from vulnerable servers and websites. Cloudflare confirmed that third-party, independent testing revealed this is in fact true. Private encryption keys are at risk. MakeUseOf previously reported the OpenSSL bug last week, and indicated at that time that whether or not encryption keys were vulnerable was still in question, because Adam Langley, a Google security expert, could not confirm that as being the case. Cloudflare originally issued a “Heartbleed Challenge” on Friday, setting up a...


Read the full article: Danger Confirmed: Heartbleed Really Does Open Up Crypto Keys to Hackers



No Pixel Wasted: How a Classic Utility Helps You Make Use Of Your Screen



windows-tiles

If there’s one thing that’s cooler than a new app that works, it’s an old app that works. Sprinkled throughout the Internet you will find some quiet utilities that have been going strong for years now, doing just one or two things exceptionally well. Today, I’m here to give one of these gems some much-deserved love: Winsplit Revolution is a tiny, free, and powerful utility that lets you tile your windows. If the concept of tiling your windows sounds foreign, take a look at your screen right now. How many windows do you have on the screen? Probably one or...


Read the full article: No Pixel Wasted: How a Classic Utility Helps You Make Use Of Your Screen



Useful FFmpeg Commands



FFmpeg 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 and even more.


Extract the audio from a video file with this simple FFmpeg command.

Extract the audio from a video file with this simple FFmpeg command.



Useful FFmpeg Commands


FFmpeg supports all popular audio and video formats. Or you can running the command ./ffmpeg -formats to get a list of every format that is supported by your FFmpeg installation. If you are just getting started, here are some commands that will give you good idea of the capabilities of this tool.


1. Cut video file into a smaller clip


You can use the time offset parameter (-ss) to specify the start time stamp in HH:MM:SS.ms format while the -t parameter is for specifying the actual duration of the clip in seconds.



ffmpeg -i input.mp4 -ss 00:00:50.0 -codec copy -t 20 output.mp4

2. Split a video into multiple parts


If you want to split a large video into multiple smaller clips without re-encoding, ffmpeg can help. This command will split the source video into 2 parts – one ending at 50s from the start and the other beginning at 50s and ending at the end of the input video.



ffmpeg -i video.mp4 -t 00:00:50 -c copy small-1.mp4 -ss 00:00:50 -codec copy small-2.mp4

3. Convert video from one format to another


You can use the -vcodec parameter to specify the encoding format to be used for the output video. Encoding a video takes time but you can speed up the process by forcing a preset though it would degrade the quality of the output video.



ffmpeg -i youtube.flv -c:v libx264 filename.mp4


ffmpeg -i video.wmv -c:v libx264 -preset ultrafast video.mp4

4. Join (concatenate) video files


If you have multiple audio or video files encoded with the same codecs, you can join them into a single file using FFmpeg. Create a input file with a list of all source files that you wish to concatenate and then run this command.



ffmpeg -f concat -i file-list.txt -c copy output.mp4

5. Mute a video (Remove the audio component)


Use the -an parameter to disable the audio portion of a video stream.



ffmpeg -i video.mp4 -an mute-video.mp4

6. Extract the audio from video


The -vn switch extracts the audio portion from a video and we are using the -ab switch to save the audio as a 256kbps MP3 audio file.



ffmpeg -i video.mp4 -vn -ab 256 audio.mp3

7. Convert a video into animated GIF


FFmpeg is an excellent tool for converting videos into animated GIFs and the quality isn’t bad either. Use the scale filter to specify the width of the GIF, the -t parameter specific the duration while -r specifies the frame rate (fps).



ffmpeg -i video.mp4 -vf scale=500:-1 -t 10 -r 10 image.gif

8. Extract image frames from a video


This command will extract the video frame at the 15s mark and saves it as a 800px wide JPEG image. You can also use the -s switch (like -s 400×300) to specify the exact dimensions of the image file though it will probably create a stretched image if the image size doesn’t follow the aspect ratio of the original video file.



ffmpeg -ss 00:00:15 -i video.mp4 -vf scale=800:-1 -vframes 1 image.jpg

9. Convert Video into Images


You can use FFmpeg to automatically extract image frames from a video every ‘n’ seconds and the images are saved in a sequence. This command saves image frame after every 4 seconds.



ffmpeg -i movie.mp4 -r 0.25 frames_%04d.png

10. Merge an audio and video file


You can also specify the -shortest switch to finish the encoding when the shortest clip ends.



ffmpeg -i video.mp4 -i audio.mp3 -c:v copy -c:a aac -strict experimental output.mp4


ffmpeg -i video.mp4 -i audio.mp3 -c:v copy -c:a aac -strict experimental -shortest output.mp4

11. Resize a video


Use the size (-s) switch with ffmpeg to resize a video while maintaining the aspect ratio.



ffmpeg -i input.mp4 -s 480x320 -c:a copy output.mp4

12. Create video slideshow from images


This command creates a video slideshow using a series of images that are named as img001.png, img002.png, etc. Each image will have a duration of 5 seconds (-r 1/5).



ffmpeg -r 1/5 -i img%03d.png -c:v libx264 -r 30 -pix_fmt yuv420p slideshow.mp4

13. Add a poster image to audio


You can add a cover image to an audio file and the length of the output video will be the same as that of the input audio stream. This may come handy for uploading MP3s to YouTube.



ffmpeg -loop 1 -i image.jpg -i audio.mp3 -c:v libx264 -c:a aac -strict experimental -b:a 192k -shortest output.mp4

14. Convert a single image into a video


Use the -t parameter to specify the duration of the video.



ffmpeg -loop 1 -i image.png -c:v libx264 -t 30 -pix_fmt yuv420p video.mp4

15. Add subtitles to a movie


This will take the subtitles from the .srt file. FFmpeg can decode most common subtitle formats.



ffmpeg -i movie.mp4 -i subtitles.srt -map 0 -map 1 -c copy -c:v libx264 -crf 23 -preset veryfast output.mkv

16. Crop an audio file


This will create a 30 second audio file starting at 90 seconds from the original audio file without transcoding.



ffmpeg -ss 00:01:30 -t 30 -acodec copy -i inputfile.mp3 outputfile.mp3

17. Change the audio volume


You can use the volume filter to alter the volume of a media file using FFmpeg. This command will half the volume of the audio file.



ffmpeg -i input.wav -af 'volume=0.5' output.wav

18. Rotate a video


This command will rotate a video clip 90° clockwise. You can set transpose to 2 to rotate the video 90° anti-clockwise.



ffmpeg -i input.mp4 -filter:v 'transpose=1' rotated-video.mp4

This will rotate the video 180° counter-clockwise.



ffmpeg -i input.mp4 -filter:v 'transpose=2,transpose=2' rotated-video.mp4

19. Speed up or Slow down the video


You can change the speed of your video using the setpts (set presentation time stamp) filter of FFmpeg. This command will make the video 8x (1/8) faster or use setpts=4*PTS to make the video 4x slower.



ffmpeg -i input.mp4 -filter:v "setpts=0.125*PTS" output.mp4

20. Speed up or Slow down the audio


For changing the speed of audio, use the atempo audio filter. This command will double the speed of audio. You can use any value between 0.5 and 2.0 for audio.



ffmpeg -i input.mkv -filter:a "atempo=2.0" -vn output.mkv

Stack Exchange has a good overview to get you started with FFmpeg. You should also check out the official documentation at ffmpeg.org or the wiki at trac.ffmpeg.org to know about all the possible things you can do with FFmpeg.


Also see: Essential Linux Commands




This story, Useful FFmpeg Commands, was originally published at Digital Inspiration on 14/04/2014 under Audio, Video Editing, Internet

NSA Exploits Internet, IRS Retains XP, Google Glass Haters, iPad Concept [Tech News Digest]



cloud-lock

Today in Tech News Digest, exploiting the Internet, retaining Windows XP, Googling government waste, Glassing San Francisco, Real-time Twitter, trending subreddits, and an iPad concept circa 2004. The NSA Can Exploit Internet Flaws The NSA saying they had no knowledge of Heartbleed is like a kid with chocolate smeared all over his face saying he hasn’t heard of cookies. — Jacqui Cheng (@ejacqui) April 11, 2014 The NSA is retaining the right to exploit flaws in Internet security without passing on details of them to the general public. This is the takeaway from an examination of the rules governing NSA...


Read the full article: NSA Exploits Internet, IRS Retains XP, Google Glass Haters, iPad Concept [Tech News Digest]



NSA Exploits Internet, IRS Retains XP, Google Glass Haters, iPad Concept [Tech News Digest]



cloud-lock

Today in Tech News Digest, exploiting the Internet, retaining Windows XP, Googling government waste, Glassing San Francisco, Real-time Twitter, trending subreddits, and an iPad concept circa 2004. The NSA Can Exploit Internet Flaws The NSA saying they had no knowledge of Heartbleed is like a kid with chocolate smeared all over his face saying he hasn’t heard of cookies. — Jacqui Cheng (@ejacqui) April 11, 2014 The NSA is retaining the right to exploit flaws in Internet security without passing on details of them to the general public. This is the takeaway from an examination of the rules governing NSA...


Read the full article: NSA Exploits Internet, IRS Retains XP, Google Glass Haters, iPad Concept [Tech News Digest]



Stop Windows Store Apps From Appearing On Taskbar In Windows 8.1 Update



CLICK HERE TO SEE FULL POST



The recently released Windows 8.1 Update makes using Windows Store apps much easier for mouse and keyboard users. With default settings, Windows Store apps now have close and minimize buttons and one can always access taskbar from Store apps by just moving the mouse cursor to the bottom edge of the screen. In addition to […]

How To Set Up Fusion Installer On XBMC



xbmc-fusion

Install XBMC addons the easy way: use Fusion. This service gives you a quick way to browse, and install, XBMC repos from within the program itself. We’ve shown you some amazing XBMC add-ons, and they’re not hard to install – especially if they’re in XBMC’s default repo. For many of the best add-ons, however, you’re going to want access to third-party repositories. Installing these is straight forward: you need only download a ZIP file, then browse to it from within XBMC. But if you’d rather not close XBMC, open a browser and download a repo – or if you can’t,...


Read the full article: How To Set Up Fusion Installer On XBMC



13 April 2014

Search Tips for Chrome App Launcher



Chrome's app launcher has an interesting way to match results. Let's say you want to open Google Play Music. You can search for google play music, play music or you can just type the the first letter from each word and search for gpm. It also works if you type the first letters from the first word, followed by the first letters from the second word and so on. For example, you can also search for goplm, gplam, gmu.






Another example: launch Mahjong Solitaire by searching for ms.






{ via François Beaufort. }

Public Transit Directions in Google Search



Google Search not only shows driving directions, it also shows a card for public transit directions. This feature seems to be limited to trains, even if Google says that it should also work for buses. Another limitation is that this feature only works in the US.



"Find the best route to travel using public transportation without ever leaving the Google Search page. For example, if you're in New York and traveling from Fulton Street to Times Square, you can search [from columbus circle to times square by train] to find information about the next train that's leaving. You can also search for directions between cities, like [seattle to portland by train]," informs Google.






Click the Settings button to specify the date and time for your departure or arrival.






You can also append to your query "arriving by 5 pm" or "departing at 6 pm".





How Many Books Do You Have On Your eReader? [MakeUseOf Poll]



ebook-poll

Before we get into last week’s poll, I owe all of you an apology. It seemed that due to some script glitch, the poll itself disappeared from the page a day after it was published, meaning only a handful of you got to vote before it was gone. Therefore, the results we got for this poll are not as accurate or as representative of our readers as they usually are. What can I say, no one’s perfect! In the 24 hours the poll was around, over 200 of you managed to vote. Here is how you voted: 8% say they...


Read the full article: How Many Books Do You Have On Your eReader? [MakeUseOf Poll]



12 April 2014

Reddit Adds New List Of Trending Subreddits To Homepage



reddit-trending

Reddit is one of the most popular websites on the Internet, but it’s not a site that makes headlines often with big changes. Usually, when Reddit is in the news it’s because someone of great importance is doing an IAmA, or something controversial happens. This time though, we actually have news of Reddit launching a new list of trending subreddits right on the very top of the homepage. Many Reddit users end up hanging around the default subreddits, never venturing out to experience some of the other very active communities the website has to offer. This new feature could fix...


Read the full article: Reddit Adds New List Of Trending Subreddits To Homepage



Cast Videos in Chrome for Android



The latest beta release of Chrome 35 for Android added support for casting HTML5 videos. You can now send videos to the Chromecast from any site that uses HTML5 video players, including YouTube.



To connect to a Chromecast, you need to play a video in fullscreen, click the cast icon and select a Chromecast device. You can then change the volume, fast forward or switch to a different video. YouTube's mobile site has support for the TV queue, so you can add videos to the queue instead of playing them right away.















The Chromecast integration is not perfect, there are some bugs that need to be fixed, but it's nice to see that you can cast almost any video right from the mobile browser, without having to install other apps and wait for the developers to integrate their apps with Chromecast.



Chrome 35 for Android also adds support for undoing tab closing, Samsung's multi-window feature and fullscreen videos with subtitles and HTML5 controls. Here's a video that shows the undo close tab feature in action, courtesy of Android Police:






{ Thanks, Sterling. }

11 April 2014

Diving Into LinkedIn? 5 Tips To Get You Started



linkedin-pen

When LinkedIn launched in 2003, it was a pretty simple idea: a social network for the professional sphere. But since then, the site and the way people use it have increased in complexity, and it can be a bit overwhelming trying to get into it for the first time. These 5 tips will get you from total newcomer to all-star networker in no time. 1. Create a Great Profile Your LinkedIn profile is your professional face online, so make it a good one! If someone comes to your profile, you want them to be impressed. You don’t want sloppy writing,...


Read the full article: Diving Into LinkedIn? 5 Tips To Get You Started



Get 1TB Of Cloud Storage With MediaFire For $2.50 A Month



mediafire-1tb

The regular price for 1TB of MediaFire storage is normally $5, but for a “limited time”, you can sign up for the 1TB plan for $2.50. Your move Google! It’s getting crazy in the cloud storage business. No sooner did Google Drive announce rock-bottom prices for their cloud storage options, than MediaFire has come along and announced that they too are having a sale and everything must go! In a press release, MediaFire also announced several other new features, which they hope will tempt you away from the other major players : Both free and paid users can upload individual...


Read the full article: Get 1TB Of Cloud Storage With MediaFire For $2.50 A Month



Edit Translations to Improve Google Translate



Google Translate now lets you edit translations. Click the "Improve" icon below the translation, edit the text and click "Contribute". Google shows this message: "Your contribution will be used to improve translation quality and may be shown to users anonymously".



Until now, you could only click the words from the translations and pick one of the alternate translations offered by Google.









{ Thanks, Emanuele Bartolomucci. }

WordPress Blog Too Slow? 7 Ways You Can Speed It Up Again In Minutes



speed-up-wordpress

Your WordPress site is slow, and you’re losing page views and revenue because of it. But you’re also busy – I get it. Here’s seven speed tips you could have a crack at on your lunch break – they’re so simple and easy. Optimize Images This is a two-parter. The first thing is to equip yourself with the knowledge of using the best format for the job. When we talk about images used on the web, it’s generally restricted to either a JPG or PNG. PNG is a lossless format, best suited to simple images and illustrations, or screenshots. JPG...


Read the full article: WordPress Blog Too Slow? 7 Ways You Can Speed It Up Again In Minutes



Why You Should Replace Microsoft Security Essentials With A Proper Antivirus



microsoft-security-essentials_2

Microsoft threw its hat in the anti-virus arena in 2009 with Microsoft Security Essentials (MSE), a tool that runs on Windows XP, 7 and 8. The move received early praise, as it seemed strange that the company had gone so long without providing even the most basic anti-virus protection, and early tests showed MSE to be nearly as effective as paid competitors. The honeymoon didn’t last, however. More recent tests have shown that MSE doesn’t provide the features users should look for in an effective anti-virus. Here’s where it falls short – and what you should look for in a...


Read the full article: Why You Should Replace Microsoft Security Essentials With A Proper Antivirus



Amazon Prime Air Update, OpenSSL Author Speaks, Google Glass For All [Tech News Digest]



amazon-prime-air-drone

Today in Tech News Digest, an Amazon Prime Air progress report, OpenSSL Heartbleed culprit speaks, Google Glass for everyone, gamers get frustrated, Amazon buys ComiXology, Skype TX arrives, and S.E.L.F.I.E. automates the selfie-taking process. Amazon Prime Air Drones In Flight Testing Amazon CEO Jeff Bezos has issued his annual letter to shareholders detailing how the company is doing and where it’s going. The most interesting part of which concerns Amazon Prime Air, the delivery by drones initiative first revealed in December 2013. Bezos reveals, “The Prime Air team is already flight testing our 5th and 6th generation aerial vehicles, and...


Read the full article: Amazon Prime Air Update, OpenSSL Author Speaks, Google Glass For All [Tech News Digest]



Disqus Commenting Platform Introduces Sponsored Comments



disqus-sponsored-comment

Just when you thought there were no new ways to introduce ad space into a website, a brand new approach to earning more income with your website comes along. On April 7th, the popular commenting platform Disqus announced that it is actively testing a new and innovative ad revenue stream called Sponsored Comments. It was only a month ago that the company introduced the Featured Comments feature, where website owners could choose select comments to “feature” at the top of a comment thread. In this case, the company is taking the same approach, but placing advertisers at the top of...


Read the full article: Disqus Commenting Platform Introduces Sponsored Comments



6 Of The Simplest Ways To Spark Your Passion With Creative Ideas



creative-ideas

There are no bad ideas. Okay, I stole that line from a favorite TV show, and it goes like this… There are no bad ideas Lemon, only great ideas that go horribly wrong… – Jack Donaghy, ’30 Rock’ Ideas are little sparks. Miss them and they are vapor. Catch them. Fan them. They turn into flames. Of course, like the soap quote above, bad ideas can burn. But why be so pessimistic. We have seen that ideas are basic to any creative process, and when you are brainstorming alone or in a team, all ideas are welcome. Think of this...


Read the full article: 6 Of The Simplest Ways To Spark Your Passion With Creative Ideas