User Tools

Site Tools


Twitter my Tweets    my YouTube

my Thingiverse    my GitHub    my Hackaday.io

Translations of this page:

Sidebar

I think it, i tinker it, i make it :-)



—-

Recent updates:


en:sysadmin:commandlineinterface:linux:miscellaneous

Miscellaneous

Examples on avconv (video converter tool)

Remove audio track

From an iPhone .mov videoclip (movie) - only video remains

avconv -i input.mov -an -c:v copy output_no_audio.mov

Tested with iPhone 4 - iOS 7.06 / avconv version 0.8.10-4:0.8.10-0ubuntu0.12.04.1

Examples on espeak (speech synthesis)

Simple test

Default language (English)

espeak "This is a simple test"

Change language (Italian)

espeak -vit "Questo è un semplice test"

Voice change

English language, female voice 3

espeak -ven+f3 "This is a simple test, female voice 3"

Italian language, female voice 3

espeak -vit+f3 "Questo è un semplice test, voce femminile 3"

Tested with espeak version 1.46.02-0ubuntu1 on Ubuntu 12.04

Rip an audio CD as FLAC

For ripping audio CD's is possible to use ripit, as default it rip as mp3 using lame,

according the manual:

-c, --coder number
              Encoder(s)  to use, 0 - Lame (for mp3), 1 - Oggenc, 2 - Flac, 3 - Faac, 4 - mp4als,
              5 - Musepack, 6 - Wavpack, 7 - ffmpeg, a comma separated list, or as an array.  The
              same encoder may be stated more than once, but different output-directories must be
              specified stating the --ditemplate for each encoder or using the $quality parameter
              in option --dirtemplate or --tracktemplate. See below. Default: 0.

if the switch -c = 2 is used it rip as FLAC:

# ripit -c 2

ripit is available for Raspbian via apt:

# apt install ripit 
en/sysadmin/commandlineinterface/linux/miscellaneous.txt · Last modified: 2023/01/09 18:46 by alessio.cavalieri