<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Volume on Michael’s Domain</title><link>https://jeltsch.org/en/tags/volume/</link><description>Recent content in Volume on Michael’s Domain</description><generator>Hugo</generator><language>en-us</language><copyright>Copyright © 2002 - 2026 Michael Jeltsch.</copyright><lastBuildDate>Fri, 24 Jul 2026 00:18:18 +0300</lastBuildDate><atom:link href="https://jeltsch.org/en/tags/volume/index.xml" rel="self" type="application/rss+xml"/><item><title>Strawberry fields forever</title><link>https://jeltsch.org/en/strawberry_fields_forever/</link><pubDate>Sun, 02 Aug 2015 00:00:00 +0000</pubDate><guid>https://jeltsch.org/en/strawberry_fields_forever/</guid><description>&lt;p&gt;Seldom does one find wild strawberries in amounts that allow you to pick liters, but this summer we did. I hope that genetic engineering will sooner or later bring back this amazing taste into the cultivated varieties, which have lost most of it over the centuries of breeding for size and appearance. When that happens, I suspect that GMO opponents will continue eating the conventional, GMO- and taste-free, but pestidicide-surcharged breeds (read more about GMO plants).For now, we have to make do with the cultivated varieties. Cultivated strawberries are sold at the grocery store by weight, whereas on the market they are sold by the liter. Being frugal by nature, I never liked this as it makes comparing prices difficult. Assuming that strawberries can be approximated by equally sized spheres, the maximum theoretical packing density could be 0.74 kg per liter (using regular packing) and 0.63 kg per liter (using random packing). Assuming that strawberries can be squeezed a bit, these number could be slightly higher. However, this is again offset by the measuring jar’s small size, which leaves lots of slack space between the walls and the strawberries.I bought a few times 1 liter of strawberries and measured their weight, which averaged at 0.517 kg. Now my thumb rule is that if the liter price it equal or less than half of the kilogram price, you should buy by the liter.UPDATE: I measured now also blueberries and they (due to their smaller size) fill better the 1-liter jar used by the market vendors. I liter is approximately equal to 0.575 kg. Another take home message is that market vendors do usually give you a bit more. If you buy a liter you often get 1.05 or even 1.1 liters. Are they are generous or do they only respond to being watched by the customer during the process of weighing?&lt;/p&gt;</description></item><item><title>Changing sound volume or bitrate of mp3 files with lame</title><link>https://jeltsch.org/en/changing_sound_volume_or_bitrate_of_mp3_files_with_lame/</link><pubDate>Wed, 23 May 2007 00:00:00 +0000</pubDate><guid>https://jeltsch.org/en/changing_sound_volume_or_bitrate_of_mp3_files_with_lame/</guid><description>&lt;p&gt;Sometimes the recording level of mp3 files is very low. If I do some jogging next to a busy road, I cannot hear anything even when the sound volume is on the max. Therefore I have to increase the volume of the mp3 file. Using lame you can do it with the following script: &lt;code&gt;#!/bin/bashwhile [ $# -ge 1 ]; doinfn=$1outfn=&amp;quot;${infn%%.mp3}_3x.mp3&amp;quot;echo $outfnlame --mp3input -v --scale=3 $infn $outfnshift 1done&lt;/code&gt;The only problem is that filnames with blank spaces make this script to collapse. Have to figure out something else. Also the bitrate can be modified in this way:&lt;code&gt;#!/bin/bashwhile [ $# -ge 1 ]; doinfn=$1outfn=&amp;quot;${infn%%.mp3}_LQ.mp3&amp;quot;echo $outfnlame --mp3input -V 9 $infn $outfnshift 1done&lt;/code&gt;-V 9 is the lowest bitrate/quality -V 0 is the highest.&lt;/p&gt;</description></item></channel></rss>