<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: gstreamer mfw_mp3encoder does not work in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/gstreamer-mfw-mp3encoder-does-not-work/m-p/293413#M36101</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the error you are getting? ENable debug log so you get this info (--gst-debug=*:2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 08 Sep 2013 02:26:52 GMT</pubDate>
    <dc:creator>LeonardoSandova</dc:creator>
    <dc:date>2013-09-08T02:26:52Z</dc:date>
    <item>
      <title>gstreamer mfw_mp3encoder does not work</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/gstreamer-mfw-mp3encoder-does-not-work/m-p/293412#M36100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My platform is Yocto Linux 2.0.50 4.0.0 on wandboard iMX6 solo. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can use alsa util -- arecord -- to capture a raw wav clip from mic input.&amp;nbsp; But I want to get MP3 or AAC audio to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this gstreamer pipeline:&lt;/P&gt;&lt;P&gt;gst-launch&amp;nbsp; alsasrc ! queue ! audioconvert ! queue ! mfw_mp3encoder ! filesink location=test.mp3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I appreciate any help, gstreamer or some standalone recording program to capture AAC or MP3 audio.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also I wonder if there is an AAC encoder?&amp;nbsp; MP3 or AAC, Which is more efficient in size and CPU needs?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Norman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Sep 2013 00:02:48 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/gstreamer-mfw-mp3encoder-does-not-work/m-p/293412#M36100</guid>
      <dc:creator>normancheung</dc:creator>
      <dc:date>2013-09-07T00:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: gstreamer mfw_mp3encoder does not work</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/gstreamer-mfw-mp3encoder-does-not-work/m-p/293413#M36101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the error you are getting? ENable debug log so you get this info (--gst-debug=*:2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Sep 2013 02:26:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/gstreamer-mfw-mp3encoder-does-not-work/m-p/293413#M36101</guid>
      <dc:creator>LeonardoSandova</dc:creator>
      <dc:date>2013-09-08T02:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: gstreamer mfw_mp3encoder does not work</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/gstreamer-mfw-mp3encoder-does-not-work/m-p/293414#M36102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Leo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried play around with the pipeline and got it to work.&amp;nbsp; I think removing the queue before encoder, not sure why.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This pipeline works for me:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gst-launch alsasrc num-buffers=120 blocksize=44100 ! mfw_mp3encoder ! filesink location=audioTest.mp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks again&lt;/P&gt;&lt;P&gt;Norman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 15:14:01 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/gstreamer-mfw-mp3encoder-does-not-work/m-p/293414#M36102</guid>
      <dc:creator>normancheung</dc:creator>
      <dc:date>2013-09-10T15:14:01Z</dc:date>
    </item>
    <item>
      <title>Re: gstreamer mfw_mp3encoder does not work</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/gstreamer-mfw-mp3encoder-does-not-work/m-p/293415#M36103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Each queue element holds some buffers, so it may be the case that the encoder run out of buffers. Queue elements are usually used after demuxers, in this case there are two outputs (audio and video), so each queue will process certain data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Sep 2013 16:52:06 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/gstreamer-mfw-mp3encoder-does-not-work/m-p/293415#M36103</guid>
      <dc:creator>LeonardoSandova</dc:creator>
      <dc:date>2013-09-10T16:52:06Z</dc:date>
    </item>
  </channel>
</rss>

