for i in *.wav; do ffmpeg -i "$i" -vn -ar 44100 -ac 2 -b:a 192k "${i%.*}.mp3"; done
- I don't have time to look up
-vn
,-ar
,-ac
or-b:a
. - 44100 is fine for almost all cases.
- Use common quality values like
[64k, 128k, 192k, 256k, 320k]
In the beginning god created | |
The Heaven and the Earth, elated. | |
Earth was there, but void, no pith; | |
No form to hold or comfort with. | |
Around without, was darken'd trace, | |
Across the deep wet water's face. | |
Eyes, without a seeing face performed, | |
The Spirit 'cross the waters warmed. |
How large is Python Source Code? | |
How many MB is Python? | |
The source code downloaded from github, (version 3.8.0b4) is 93.9 MB | |
https://github.com/python/cpython/tree/v3.8.0b4 |
Om | |
Om Mani Padme Hum | |
Om Ganesha | |
Om Gajānanāya Namaha | |
Om Gam Ganapataya Namaha | |
Om Namah Shivaya | |
Om Shivaya Namaha | |
Om Ram Ramaya Swaha | |
Om Sri Ramaya Namaha | |
Om Sri Matre Namaha |
class CustomerSearchView(DatatableView): | |
template_name = "customers/search.html" | |
datatable_options = { | |
'columns': [ | |
("Customer Number", 'number'), | |
("Name", ['first_name', 'last_name']), | |
"Address", | |
"Quick Menu", | |
"View Customer", | |
] |
from django import forms | |
from django.http import HttpResponseForbidden | |
from employees.models import Employee | |
class PinForm(forms.Form): | |
number = forms.CharField(max_length=4) | |
pin = forms.CharField(max_length=4) | |
def check_authentication(self): |