Showing posts with label convert. Show all posts
Showing posts with label convert. Show all posts

Saturday, February 8, 2014

Curlew Multi-Converter for Linux

0 comments

Curlew Multi-Converter for Linux

Curlew Multi-Converter advanced option

Curlew, the Multi-Converter is based on ffmpeg and It can convert up to 117 formats. you  can easily install curlew converter.

What makes it the best Multi-Converter :

- It's easy to use.
- Hide and show advanced options.
- Convert to more than 100 different formats.
- Show file informations (duration, remaining time, estimated size, progress value).
- Preview file before conversion.
- Allow to skip or remove file during conversion process.

and more ...

To install It in Ubuntu/Linux Mint, run the following command :

sudo apt-get install curlew



     
Read more...

Monday, January 13, 2014

Convert from ogv to Any other format in Linux using ffmpeg

0 comments

Convert from ogv to Any other format

I assume you have you have ffmpeg Installed on your machine.
The first thing you do, is calling the Terminal and changing to the path where to the Media you want to convert is .

I chose the home directory : 
cd ~

Now we can convert by performing this command (I n this example I have converted Ogv tp Mp4)
ffmpeg -i input.ogv -vcodec libx264 output.mp4

input.ogv = the original video.

output.mp4 = the changed video format (You can change the name also as you see here, and the path as well) .

ffmpeg -i input.ogv -vcodec libx264 ~/Desktop/output.mp4
In this example, I changed also the path.




     
Read more...

Wednesday, December 11, 2013

How to convert binary files into text file?

0 comments

How to convert binary files into text file?

How to convert binary files into text file?

Simply by using this Linux command :

strings <binary file name >


     
Read more...