<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[[How-To] Record Calls]]></title><description><![CDATA[<p dir="auto">Before using these scripts read the <a href="https://forums.ubports.com/topic/8144/how-to-record-calls/64">DISCLAIMER here</a>.</p>
<p dir="auto">To perform this how-to you must be familiar with the command line, as I mentioned in <a href="https://forums.ubports.com/topic/7030/call-number-blocking-wish-list/25">other post</a> ( <a class="plugin-mentions-user plugin-mentions-a" href="/user/klh" aria-label="Profile: klh">@<bdi>klh</bdi></a> excuse the  off-topic ) I created a service to record all calls.</p>
<p dir="auto">The first step is run :</p>
<pre><code>arecord file.wav
</code></pre>
<p dir="auto">make a call and then stop recording with Ctrl+C</p>
<p dir="auto">play recorded call, if voices are not clearly heard unfortunately this how-to is already over <img src="https://forums.ubports.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f61e.png?v=e53896fb3af" class="not-responsive emoji emoji-android emoji--disappointed" style="height:23px;width:auto;vertical-align:middle" title=":-(" alt="😞" /></p>
<p dir="auto">otherwise you can proceed ...</p>
<ul>
<li>You have to create callrecorder service, to create it mount root in read/write mode :</li>
</ul>
<pre><code>sudo mount -o remount,rw /
</code></pre>
<p dir="auto">sudo nano /etc/init.d/callrecorder :</p>
<pre><code>#! /bin/sh

### BEGIN INIT INFO
# Provides:          callrecorder
# Required-Start:    $local_fs
# Required-Stop:     &amp;local_fs
# Default-Start:     2 3 4 5
# Default-Stop:      0 1 6
# Short-Description: Call Recorder
# Description:       Call Recorder Daemon
### END INIT INFO

# Written by Br1 &lt;br1@spacelinux.it&gt;

case "$1" in
  start)
    echo "Call recorder starting ..."
    bash -c 'cd /home/phablet/.callrec/ &amp;&amp; ./prepare-sh &amp;'
   ;;
  stop)
    pkill manager.sh ; pkill ini.sh ; pkill ter.sh ; pkill ris.sh ;
    rm /home/phablet/.callrec/CallRecorder/.*swp 2&gt; /dev/null ;
    rm /home/phablet/aRam/Rec_Call/.*swp 2&gt; /dev/null ;

    echo "Call recorder stopped !"
    ;;

  *)
    echo "Usage: sudo service callrecorder {start|stop}"
    exit 1
    ;;
esac

exit 0
</code></pre>
<p dir="auto">and set permission with : sudo chmod 755 /etc/init.d/callrecorder</p>
<p dir="auto">enable autostart with : sudo update-rc.d callrecorder defaults<br />
( if you want disable it : sudo update-rc.d -f callrecorder remove)</p>
<ul>
<li>
<p dir="auto">you have to create 3 directories :<br />
/home/phablet/aRam<br />
/home/phablet/.callrec<br />
/home/phablet/MyRec</p>
</li>
<li>
<p dir="auto">and you also have to create 5 scripts :</p>
</li>
</ul>
<p dir="auto">1 - nano /home phablet/.callrec/prepare-sh :</p>
<pre><code>#!/bin/sh

# ----- start/stop service section -----
#
# check service status
if ps aux | grep -q "[m]anager.sh" ; then echo "    ! Service already running !" ; exit

fi

# check if ramdisk is mounted and exec scripts
if grep -qs '/phablet/aRam ' /proc/mounts ; then cd /home/phablet/aRam/Rec_Call ; ./manager.sh &amp; ./ini.sh &amp; ./ter.sh &amp; ./ris.sh &amp; exit 

fi

# ----- boot section ----- 
#
/bin/sleep 10 ;

# clear cache and buffer
sh -c "free &amp;&amp; sync &amp;&amp; echo 3 &gt; /proc/sys/vm/drop_caches &amp;&amp; free" ;

# create ramdisk
mount -t tmpfs -o size=200M tmpfs /home/phablet/aRam ;

# create directory
mkdir -p /home/phablet/aRam/Rec_Call ;

# copy scripts to directory just created
cp -rp /home/phablet/.callrec/*.sh /home/phablet/aRam/Rec_Call ;

# and exec them
cd /home/phablet/aRam/Rec_Call ; ./manager.sh &amp; ./ini.sh &amp; ./ter.sh &amp; ./ris.sh &amp;

exit
</code></pre>
<p dir="auto">2 - nano /home/phablet/.callrec/manager.sh :</p>
<pre><code>#!/bin/sh

while true

do

FL1=/home/phablet/aRam/Rec_Call/fl1 ;
FL2=/home/phablet/aRam/Rec_Call/fl2 ;
FL3=/home/phablet/aRam/Rec_Call/fl3 ;
RecDir=/home/phablet/MyRec ;
HomDir=/home/phablet/aRam/Rec_Call ;

# if fl1 exist ini.sh intercepted outgoing or incoming call
if [ -f "$FL1" ]; then
	# deletes temporary file and starts recording as phablet user (with .new extension)
	rm -f $FL1 ; su phablet -s /usr/bin/arecord /home/phablet/MyRec/"$(date +%d_%m_%y__%H_%M_%S)".wav.new &amp;
fi

# if fl2 exist call has ended 
if [ -f "$FL2" ]; then
	# deletes the temporary file and stop recording
	rm -f $FL2 ; pkill -f arecord ; sleep 0.2 ;
	# if fl3 exist call was answered
	if [ -f "$FL3" ]; then
		# delete .new extension and exec three scripts
		rm -f $FL3 ; mv $RecDir/*.new $RecDir/"$(date +%d_%m_%y__%H_%M_%S)".wav ;  $HomDir/ini.sh &amp; $HomDir/ter.sh &amp; $HomDir/ris.sh &amp;
		else
		# call was not answered
		# delete recording and exec two scripts
		rm $RecDir/*.new ; $HomDir/ini.sh &amp; $HomDir/ter.sh &amp;
	fi

fi

sleep 1 ;

done ;
</code></pre>
<p dir="auto">3 - nano /home/phablet/.callrec/ini.sh :</p>
<pre><code>#!/bin/sh

cd /home/phablet/aRam/Rec_Call ;

inicmline="dbus-monitor --system interface=org.ofono.VoiceCallManager member=CallAdded" ;

$inicmline | while read line
do
    echo $line | grep "incoming\|dialing"
        if [ "$?" -eq "0" ]; then
        echo "";/bin/touch fl1;echo "";
        break
    fi
done
</code></pre>
<p dir="auto">4 - nano /home/phablet/.callrec/ter.sh :</p>
<pre><code>#!/bin/sh

cd /home/phablet/aRam/Rec_Call ;

tercmline="dbus-monitor --system interface=org.ofono.VoiceCall member=PropertyChanged" ;

$tercmline | while read line
do
    echo $line | grep "disconnected"
        if [ "$?" -eq "0" ]; then
        echo "";/bin/touch fl2;echo "";
        break
    fi
done
</code></pre>
<p dir="auto">5 - nano /home/phablet/.callrec/ris.sh :</p>
<pre><code>#!/bin/sh

cd /home/phablet/aRam/Rec_Call ;

riscmline="dbus-monitor --system interface=org.ofono.VoiceCall member=PropertyChanged" ;

$riscmline | while read line
do
    echo $line | grep "StartTime"
        if [ "$?" -eq "0" ]; then
        echo "";/bin/touch fl3;echo "";
        break
    fi
done
</code></pre>
<p dir="auto">make all scripts executable with chmod u+x</p>
<ul>
<li>you can start the service with : sudo service callrecorder start<br />
or reboot device</li>
</ul>
<p dir="auto">--------  overview --- how it works  --------</p>
<ul>
<li>callrecorder service run prepare-sh script and allows you to stop the execution by terminating 4 running processes</li>
<li>prepare-sh creates ramdisk in order to speed up read/write operations, copies 4 scripts on ramdisk and executes them, some more details in scripts comments (any text after a hash sign '#')</li>
</ul>
<p dir="auto">I was planning to make a single script always running and it didn't work, so I created a four scripts system :</p>
<ul>
<li>
<p dir="auto"><a href="http://manager.sh" rel="nofollow ugc">manager.sh</a> handles three child/processes scripts, each of them intercepts a string (dbus-monitor) creates temporary file and exit</p>
</li>
<li>
<p dir="auto"><a href="http://ini.sh" rel="nofollow ugc">ini.sh</a> intercepts outgoing and incoming calls</p>
</li>
<li>
<p dir="auto"><a href="http://ris.sh" rel="nofollow ugc">ris.sh</a> intercepts the start of phone communication (call was answered)</p>
</li>
<li>
<p dir="auto"><a href="http://ter.sh" rel="nofollow ugc">ter.sh</a> intercepts the end of phone communication</p>
</li>
</ul>
<p dir="auto">the last two would suffice, however, starting the recording at the beginning of phone communication, sometimes 1/2 seconds are lost ... so I preferred to start the recording on outgoing/incoming calls (if there is no answer recording is deleted)</p>
<p dir="auto">Calls are recorded in uncompressed format (wav) but if you periodically delete the recordings there will be no problems ... I prefer to convert them (to ogg format) daily with  <a href="https://en.wikipedia.org/wiki/Cron" rel="nofollow ugc">crontab</a> managed script, if you want I attach it, but it will be necessary install ffmpeg (via apt), I will complete it to delete recordings older than 40 days.</p>
<p dir="auto">I hope I did not forget anything ... English is not my natural language, if something is not clear, you ask and I will try to explain better.</p>
<p dir="auto">I have not detected abnormal battery drain, maybe these scripts can be improved, anyway callrecorder service works fine on my Xiaomi Mi A2.</p>
<p dir="auto">I want to say Thanks to all volunteers working on UBports project, having linux on a smartphone is very rewarding <img src="https://forums.ubports.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=e53896fb3af" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":-)" alt="🙂" /></p>
]]></description><link>https://forums.ubports.com/topic/8144/how-to-record-calls</link><generator>RSS for Node</generator><lastBuildDate>Thu, 12 Mar 2026 16:25:37 GMT</lastBuildDate><atom:link href="https://forums.ubports.com/topic/8144.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 15 Sep 2022 14:48:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [How-To] Record Calls on Sat, 08 Feb 2025 15:21:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/domubpkm" aria-label="Profile: domubpkm">@<bdi>domubpkm</bdi></a> <a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> I can confirm that on volla quintus (OTA-7 and devel channel) isn't working either. Same behavior as <a class="plugin-mentions-user plugin-mentions-a" href="/user/domubpkm" aria-label="Profile: domubpkm">@<bdi>domubpkm</bdi></a> , call-recording locks mycrophone and speaker on calls. Nothing is captured on saved file.<br />
There os anything i can do to track the problem?<br />
(Another interesting thing is that looks like the install-script breaks the camera, it make camera app the capability of record videos. Uninstall the script or change between channels doesn't solve the problem, it is just solved by factory reset <img src="https://forums.ubports.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f62e.png?v=e53896fb3af" class="not-responsive emoji emoji-android emoji--open_mouth" style="height:23px;width:auto;vertical-align:middle" title=":o" alt="😮" /> )</p>
]]></description><link>https://forums.ubports.com/post/84597</link><guid isPermaLink="true">https://forums.ubports.com/post/84597</guid><dc:creator><![CDATA[Josué]]></dc:creator><pubDate>Sat, 08 Feb 2025 15:21:28 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Fri, 30 Aug 2024 16:27:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> Hello. Do you confirm/tested the script work on your phone with OTA-5 ? It seems that, with the script for me with Volla 22, i have no sound for incoming or outcoming calls. Thank you.</p>
]]></description><link>https://forums.ubports.com/post/81736</link><guid isPermaLink="true">https://forums.ubports.com/post/81736</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Fri, 30 Aug 2024 16:27:28 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Sat, 20 Jul 2024 18:31:18 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> . If you have kept some, can you confirm if your .wav recordings under xenial are played normally (sound quality)  under focal ? THANKS .</p>
]]></description><link>https://forums.ubports.com/post/81089</link><guid isPermaLink="true">https://forums.ubports.com/post/81089</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Sat, 20 Jul 2024 18:31:18 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Sat, 17 Feb 2024 16:44:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> In my case, the recorded sound of the interlocutor is much weaker on the Volla.</p>
]]></description><link>https://forums.ubports.com/post/78681</link><guid isPermaLink="true">https://forums.ubports.com/post/78681</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Sat, 17 Feb 2024 16:44:59 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Sat, 17 Feb 2024 11:19:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/domubpkm" aria-label="Profile: domubpkm">@<bdi>domubpkm</bdi></a> - <a href="https://manpages.org/arecord" rel="nofollow ugc">arecord</a> (command-line recorder used by script) has many options, but on my device between recordings with or without speakerphone the difference is almost imperceptible, therefore it is difficult to assess ...</p>
]]></description><link>https://forums.ubports.com/post/78677</link><guid isPermaLink="true">https://forums.ubports.com/post/78677</guid><dc:creator><![CDATA[Br1]]></dc:creator><pubDate>Sat, 17 Feb 2024 11:19:52 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Fri, 16 Feb 2024 16:00:32 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> a feature to improve (if possible) : Can you make the recording sound better than currently when in speakerphone talk mode? In speaker mode, the quality of recorded audio is significantly reduced. Thanks.</p>
]]></description><link>https://forums.ubports.com/post/78660</link><guid isPermaLink="true">https://forums.ubports.com/post/78660</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Fri, 16 Feb 2024 16:00:32 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Thu, 15 Feb 2024 07:33:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bolly" aria-label="Profile: Bolly">@<bdi>Bolly</bdi></a> I say a big thank you to <a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> too and above all a great usefulness of the feature (widely used on Android too) in administrative acts (often poorly executed, repetitive) by telephone : I have no objection to being recorded and this must therefore be do it both direction.</p>
]]></description><link>https://forums.ubports.com/post/78612</link><guid isPermaLink="true">https://forums.ubports.com/post/78612</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Thu, 15 Feb 2024 07:33:47 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Wed, 14 Feb 2024 10:05:26 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="plugin-mentions-user plugin-mentions-a" href="/user/mschmids" aria-label="Profile: mschmids">@<bdi>mschmids</bdi></a> ,</p>
<p dir="auto">In my country it is legal and accepted as evidence.<br />
I love privacy. But I will give you some use cases.</p>
<ol>
<li>Your boss threatens you.</li>
<li>Your partner threatens you.</li>
<li>You are bullied</li>
<li>Anonymous threats</li>
<li>Signing contracts over the phone for electricity, gas, phone, internet....</li>
</ol>
<p dir="auto">Thanks, good work <a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> <img src="https://forums.ubports.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=e53896fb3af" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://forums.ubports.com/post/78588</link><guid isPermaLink="true">https://forums.ubports.com/post/78588</guid><dc:creator><![CDATA[Bolly]]></dc:creator><pubDate>Wed, 14 Feb 2024 10:05:26 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Tue, 13 Feb 2024 06:41:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> interesting summary, thank you for sharing.</p>
]]></description><link>https://forums.ubports.com/post/78558</link><guid isPermaLink="true">https://forums.ubports.com/post/78558</guid><dc:creator><![CDATA[mschmids]]></dc:creator><pubDate>Tue, 13 Feb 2024 06:41:55 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Mon, 12 Feb 2024 17:42:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mschmids" aria-label="Profile: mschmids">@<bdi>mschmids</bdi></a> as you can see <a href="https://en.wikipedia.org/wiki/Telephone_call_recording_laws" rel="nofollow ugc">here</a> in many countries recording is allowed, anyway :</p>
<p dir="auto"><strong>DISCLAIMER</strong></p>
<p dir="auto">Before using these scripts make sure that in your country is allowed to record phone calls without consent from the other side, I do not take any responsibility for consequences deriving for the misuse of these scripts.</p>
]]></description><link>https://forums.ubports.com/post/78553</link><guid isPermaLink="true">https://forums.ubports.com/post/78553</guid><dc:creator><![CDATA[Br1]]></dc:creator><pubDate>Mon, 12 Feb 2024 17:42:51 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Mon, 12 Feb 2024 09:03:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> in certain countries already recording non public conversations without consent is a crime. If you listen just yourself to the recording, it will most probably remain unnoticed though. No plaintiff, no judge. The fact remains.</p>
<p dir="auto">A visits B at home. They talk over a warm drink. B records the conversation unnoticed on the cell phone. C has access to this cell phone, finds the recording file and posts it on the Internet.</p>
<p dir="auto">B is liable to prosecution under Section §201 (1) no. 1 StGB, because of recording the private conversation without consent. C is liable to prosecution under Section §201 (1) no. 2 StGB, because of making the recording accessible to third parties.</p>
]]></description><link>https://forums.ubports.com/post/78546</link><guid isPermaLink="true">https://forums.ubports.com/post/78546</guid><dc:creator><![CDATA[mschmids]]></dc:creator><pubDate>Mon, 12 Feb 2024 09:03:49 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Sun, 11 Feb 2024 23:52:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mschmids" aria-label="Profile: mschmids">@<bdi>mschmids</bdi></a> If you listen again to what they said to you, you have not committed any crime.<br />
However I invite everyone to comply fully with any laws or regulations in their own Country.</p>
]]></description><link>https://forums.ubports.com/post/78541</link><guid isPermaLink="true">https://forums.ubports.com/post/78541</guid><dc:creator><![CDATA[Br1]]></dc:creator><pubDate>Sun, 11 Feb 2024 23:52:41 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Sun, 11 Feb 2024 20:33:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> while this conversation appears to revolve around technical aspects, I would like to also point out, that as UT lovers we appreciate privacy, which is not only ours, but also of others. This is not only a moral consideration, but in certain countries also reflected by the laws. Violation of confidentiality of the word, by (1) recording non public conversations without consent and (2) making available to others such records. Technical feasibility versus legitimacy or legacy do not necessarily go hand in hand.</p>
]]></description><link>https://forums.ubports.com/post/78539</link><guid isPermaLink="true">https://forums.ubports.com/post/78539</guid><dc:creator><![CDATA[mschmids]]></dc:creator><pubDate>Sun, 11 Feb 2024 20:33:34 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Sun, 11 Feb 2024 18:08:01 GMT]]></title><description><![CDATA[<p dir="auto">--- OTA 4 I confirm, no problems.</p>
]]></description><link>https://forums.ubports.com/post/78536</link><guid isPermaLink="true">https://forums.ubports.com/post/78536</guid><dc:creator><![CDATA[Br1]]></dc:creator><pubDate>Sun, 11 Feb 2024 18:08:01 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Wed, 24 Jan 2024 07:05:07 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> works for me with RC test OTA-4.</p>
]]></description><link>https://forums.ubports.com/post/78180</link><guid isPermaLink="true">https://forums.ubports.com/post/78180</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Wed, 24 Jan 2024 07:05:07 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Fri, 24 Nov 2023 15:54:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> Seems ok on Volla :</p>
<p dir="auto"><img src="/assets/uploads/files/1700736164869-screenshot20231123_113830834.png" alt="screenshot20231123_113830834.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">Edit nov 24 : Confirms that it works fine. The only point to improve if feasible is the quality/sharpness of sound recording in speaker mode.</p>
]]></description><link>https://forums.ubports.com/post/76965</link><guid isPermaLink="true">https://forums.ubports.com/post/76965</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Fri, 24 Nov 2023 15:54:59 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Thu, 23 Nov 2023 10:17:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/domubpkm" aria-label="Profile: domubpkm">@<bdi>domubpkm</bdi></a> said in <a href="/post/76959">[How-To] Record Calls</a>:</p>
<blockquote>
<p dir="auto">Is it the same procedure ?</p>
</blockquote>
<p dir="auto">Yes</p>
<blockquote>
<p dir="auto">What do you mean by your comment ?</p>
</blockquote>
<p dir="auto">the install script changes I had to make</p>
]]></description><link>https://forums.ubports.com/post/76963</link><guid isPermaLink="true">https://forums.ubports.com/post/76963</guid><dc:creator><![CDATA[Br1]]></dc:creator><pubDate>Thu, 23 Nov 2023 10:17:50 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Thu, 23 Nov 2023 08:51:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> Will try on my Volla. thanks very much. What do you mean by your comment ? Is it the same procedure ? Nothing dangerous to install or new things to do before installing ?</p>
]]></description><link>https://forums.ubports.com/post/76959</link><guid isPermaLink="true">https://forums.ubports.com/post/76959</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Thu, 23 Nov 2023 08:51:51 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Thu, 23 Nov 2023 08:43:37 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/domubpkm" aria-label="Profile: domubpkm">@<bdi>domubpkm</bdi></a> new version ota 3 <a href="https://spazio.v6.rocks/callrecorder/callrecorder-ota.3.tar.gz" rel="nofollow ugc">here</a> fresh install involves to reset some permissions and to create few directories ... however I can't guarantee it will work with all devices.</p>
]]></description><link>https://forums.ubports.com/post/76958</link><guid isPermaLink="true">https://forums.ubports.com/post/76958</guid><dc:creator><![CDATA[Br1]]></dc:creator><pubDate>Thu, 23 Nov 2023 08:43:37 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Thu, 23 Nov 2023 08:27:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> A full first focal fresh install with the installer (with wipe data). For DNS, it's work well.</p>
<p dir="auto">The focal call recorder would already have been useful to me. <img src="https://forums.ubports.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=e53896fb3af" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title="🙂" alt="🙂" /></p>
]]></description><link>https://forums.ubports.com/post/76945</link><guid isPermaLink="true">https://forums.ubports.com/post/76945</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Thu, 23 Nov 2023 08:27:08 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Wed, 22 Nov 2023 08:14:14 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/domubpkm" aria-label="Profile: domubpkm">@<bdi>domubpkm</bdi></a>  it's the same with my pixel 3a xl (fresh install) and I'm tryin' to understand why.<br />
There are other things that don’t work ... you have made a fresh install or update from xenial ?</p>
]]></description><link>https://forums.ubports.com/post/76944</link><guid isPermaLink="true">https://forums.ubports.com/post/76944</guid><dc:creator><![CDATA[Br1]]></dc:creator><pubDate>Wed, 22 Nov 2023 08:14:14 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Tue, 21 Nov 2023 09:53:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/br1" aria-label="Profile: Br1">@<bdi>Br1</bdi></a> Doesn't work for me on Volla. MyRec is empty after a call.</p>
]]></description><link>https://forums.ubports.com/post/76937</link><guid isPermaLink="true">https://forums.ubports.com/post/76937</guid><dc:creator><![CDATA[domubpkm]]></dc:creator><pubDate>Tue, 21 Nov 2023 09:53:53 GMT</pubDate></item><item><title><![CDATA[Reply to [How-To] Record Calls on Wed, 15 Nov 2023 13:07:45 GMT]]></title><description><![CDATA[<p dir="auto">OTA 3 Stable channel --- You can reinstall, no changes are necessary.</p>
]]></description><link>https://forums.ubports.com/post/76764</link><guid isPermaLink="true">https://forums.ubports.com/post/76764</guid><dc:creator><![CDATA[Br1]]></dc:creator><pubDate>Wed, 15 Nov 2023 13:07:45 GMT</pubDate></item></channel></rss>