Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 246 online users. » 0 Member(s) | 246 Guest(s)
|
Latest Threads |
Search Sexy Womans in you...
Forum: General
Last Post: jadenmikey
10-20-2024, 10:19 PM
» Replies: 0
» Views: 313
|
Prettys Womans from your ...
Forum: General
Last Post: jadenmikey
10-19-2024, 12:07 PM
» Replies: 0
» Views: 328
|
Beautiful Girls from your...
Forum: General
Last Post: jadenmikey
10-13-2024, 09:16 AM
» Replies: 0
» Views: 466
|
Search Beautiful Womans i...
Forum: General
Last Post: jadenmikey
09-30-2024, 08:40 PM
» Replies: 0
» Views: 553
|
Pretty Girls from your to...
Forum: General
Last Post: jadenmikey
07-25-2024, 10:59 PM
» Replies: 0
» Views: 1,368
|
Pretty Womans from your c...
Forum: General
Last Post: jadenmikey
07-24-2024, 07:56 AM
» Replies: 0
» Views: 1,314
|
Supreme Сasual Dating - G...
Forum: General
Last Post: jadenmikey
06-16-2024, 08:40 AM
» Replies: 0
» Views: 1,989
|
Pretty Girls in your town...
Forum: General
Last Post: jadenmikey
06-15-2024, 01:46 AM
» Replies: 0
» Views: 1,869
|
Top-notch Сasual Dating -...
Forum: General
Last Post: jadenmikey
04-20-2024, 11:03 AM
» Replies: 0
» Views: 2,515
|
unpredictable dating
Forum: General
Last Post: JessicaWes
02-26-2024, 04:42 PM
» Replies: 2
» Views: 41,192
|
|
|
use AW_MPI_ADEC_SendStream error |
Posted by: shane - 04-15-2019, 09:30 AM - Forum: General Discussion on Lindenis V5
- No Replies
|
|
HI guy
I used AW_MPI_ADEC_SendStream API,but i get this
"component/AudioDec_Component.c:2258: ComponentThread: Assertion `0' failed"
and
"E/:AudioDec_Component <ComponentThread:2257>: fatal error! why get bitwidth=0 after decode first bs?!" error.
I create audio decode follow this :
---------------------------------------------------------------------------------------------------
ADEC_CHN_ATTR_S mAdecChnAttr;
int mAdecChn = 0;
mAdecChnAttr.mType = PT_AAC;
mAdecChnAttr.sampleRate = 48000;
mAdecChnAttr.channels = 2;
mAdecChnAttr.bitRate = 320 * 1000; //it's no used on papers
mAdecChnAttr.bitsPerSample = 16;
mAdecChnAttr.attachAACHeader = 1;
AW_MPI_ADEC_CreateChn(mAdecChn, &mAdecChnAttr);
MPPCallbackInfo cbInfo;
cbInfo.cookie = NULL;
cbInfo.callback = (MPPCallbackFuncType)&MPPCallbackFunc;
AW_MPI_ADEC_RegisterCallback(mAdecChn, &cbInfo);
MPP_CHN_S ADECChn = {MOD_ID_ADEC, 0, 0};
MPP_CHN_S AOChn = {MOD_ID_AO, 0, 0};
ret = AW_MPI_SYS_Bind(&ADECChn, &AOChn);
if (ret) {
_DEBUG_MSG("Do Audio AW_MPI_SYS_Bind fail! ret:0x%x\n", ret);
return;
}
ret = AW_MPI_ADEC_StartRecvStream(mAdecChn);
if (ret)
{
_DEBUG_MSG("Do AW_MPI_ADEC_StartRecvStream fail! ret:%d\n", ret);
return;
}
ret = AW_MPI_AO_StartChn(0, 0);
if (ret)
{
_DEBUG_MSG("Do AW_MPI_AO_EnableVirChn fail! ret:%d\n", ret);
return;
}
---------------------------------------------------------------------------------------------------
can somebody help me ??
|
|
|
1080P H265 (HEVC) Decode error |
Posted by: shane - 03-22-2019, 08:47 AM - Forum: General Discussion on Lindenis V5
- No Replies
|
|
Hi All , I used rtsp input( H265 1080P 30 FPS) to decode and ouput to hdmi,but get this error.
---------------------------------------------------------------------------------------------------
warning: cedarc <HevcDecDecodeOneFrame:2554>: ctuNum not rignt: 1395, 2040
warning: cedarc <HevcDecDecodeOneFrame:2554>: ctuNum not rignt: 1395, 2040
warning: cedarc <HevcDecDecodeOneFrame:2554>: ctuNum not rignt: 1395, 2040
warning: cedarc <HevcDecDecodeOneFrame:2554>: ctuNum not rignt: 1395, 2040
warning: cedarc <HevcDecDecodeOneFrame:2554>: ctuNum not rignt: 1395, 2040
warning: cedarc <HevcVeStatusInfo:1791>: HEVC slice dec error, poc: 0, ctuNum = 165, totalCtuNum = 2040
error : cedarc <DecoderDecodeOneNalu:2413>: h265 decode one slice hardware error
warning: cedarc <HevcDecDecodeOneFrame:2547>: h265 decode nalu error, continue decode next nalu! nalu type: 19, size: 90569
warning: cedarc <HevcDecDecodeOneFrame:2548>: *******pHevcDec->pCurrFrame = (nil),i = 3
warning: cedarc <HevcDecDecodeOneFrame:2554>: ctuNum not rignt: 1525, 2040
warning: cedarc <HevcAddCandidateRef:126>: ref_frame is error, reset decoder to deocde from keyFrame
warning: cedarc <HevcFrameStart:1980>: construct reference picture set failed , ret = 34
debug : cedarc <H265DecoderDecode:517>: reset h265 intra decoder
warning: cedarc <HevcDecDecodeOneFrame:2554>: ctuNum not rignt: 1525, 2040
warning: cedarc <HevcDecDecodeOneFrame:2554>: ctuNum not rignt: 1525, 2040
-----------------------------------------------------------------------------------------------
ffprobe
---------------------------------------------------------------------------------------
Input #0, rtsp, from 'rtsp://XXXXXXXXXX/stream0':
Metadata:
title : Media Presentation
Duration: N/A, start: 0.000333, bitrate: N/A
Stream #0:0: Video: hevc (Main), yuvj420p(pc, bt709), 1920x1080 [SAR 1:1 DAR 16:9], 30 fps, 30 tbr, 90k tbn, 30 tbc
---------------------------------------------------------------------------------------
VDEC configure
----------------------------------------------------------------------------------------
VDEC_CHN_ATTR_S vdec_attr;
memset(&vdec_attr, 0, sizeof(VDEC_CHN_ATTR_S));
vdec_attr.mType = PT_H265;
vdec_attr.mPicWidth = 1920;
vdec_attr.mPicHeight = 1080;
vdec_attr.mInitRotation = ROTATE_NONE;
vdec_attr.mOutputPixelFormat = MM_PIXEL_FORMAT_YVU_SEMIPLANAR_420;
vdec_attr.mVdecVideoAttr.mMode = VIDEO_MODE_FRAME;
vdec_attr.mVdecVideoAttr.mSupportBFrame = 0;
---------------------------------------------------------------------------------------
Any body know how to resolve it?
|
|
|
Selling my board |
Posted by: populus - 03-10-2019, 06:12 PM - Forum: General Discussion on Lindenis V5
- No Replies
|
|
Hi,
don't know if this is allowed or the right place to do so, but I've bought two boards for a project and willing so sell one of them.
I'm located in the Netherlands, shipping to within the EU should be relatively inexpensive.
The board has the 8MP camera, WiFi and eMMC module included.
The whole kit cost me 130 euro's and can go for 100 euro's. (or offer)
Regards,
Wim
|
|
|
Motion Detection |
Posted by: tylerjbrooks - 02-14-2019, 12:38 AM - Forum: General Discussion on Lindenis V5
- Replies (1)
|
|
What is the right way to do motion detection with the V5?
I would like to draw boxes around the motion in my video. Currently, I am using the DTCA API (AW_AI_CVE_DTCA_Process()) to get a target list and then draw boxes around the targets in the image. Is this the right way to do this? I would say the results are sporadic. Sometimes the motion is detected/identified and sometimes not. Are there any more documents/examples (besides the slim DTCA doc and sample) on how to tune the DTCAParam file (params_cvedtca.xml) and how to calibrate DTCA (params_cveclbr.xml)? There seem to be a lot of options in the DTCAParam file (like tripwire, loiter, etc..) but I am only getting 'perimeter' events. Is that because only 'perimeter' is in the 'funcs' section? If so, how do I add the others. I would like to detect if a target is loitering in an area but I can't get it to work.
I am making a stationary IP camera. Is the Head Count (HCNT) library a better thing to use?
Is it possible to detect motion from the output of the H264 encoder? For instance, is there an easy way to get at the Motion Vectors in the P Slices besides parsing the bitstream directly?
Finally, is there a raw image detector like in the V3? I believe in that chip there was a library to which I could submit a small scale image and it would detect motion. Is there anything like that for the V5 ?
|
|
|
build debian image error |
Posted by: gnensis - 02-13-2019, 08:41 PM - Forum: General Discussion on Lindenis V5
- Replies (1)
|
|
I got the following error when I build the debian image. Can any one help me?
Code: ./build/mk-debian.sh
Skip extract basic rootfs
Copy modules
Copy overlay
Change root
root@ubuntu:/#
root@ubuntu:/# export DEBIAN_FRONTEND=noninteractive
root@ubuntu:/#
root@ubuntu:/# error()
> {
> echo ""
> echo "Error occur"
> echo ""
> exit -1
> }
root@ubuntu:/# trap error ERR
root@ubuntu:/#
root@ubuntu:/# if [ ! -f /etc/systemd/system/multi-user.target.wants/depmod.service ] ; then
> systemctl enable depmod.service
> fi
root@ubuntu:/#
root@ubuntu:/# apt-get update
Err:1 http://security.debian.org/debian-security stretch/updates InRelease
Temporary failure resolving 'security.debian.org'
Err:2 http://ftp.debian.org/debian stretch InRelease
Temporary failure resolving 'ftp.debian.org'
Err:3 http://ftp.debian.org/debian stretch-updates InRelease
Temporary failure resolving 'ftp.debian.org'
Reading package lists... Done
W: Failed to fetch http://ftp.debian.org/debian/dists/stretch/InRelease Temporary failure resolving 'ftp.debian.org'
W: Failed to fetch http://ftp.debian.org/debian/dists/stretch-updates/InRelease Temporary failure resolving 'ftp.debian.org'
W: Failed to fetch http://security.debian.org/debian-security/dists/stretch/updates/InRelease Temporary failure resolving 'security.debian.org'
W: Some index files failed to download. They have been ignored, or old ones used instead.
root@ubuntu:/#
root@ubuntu:/# if ! dpkg -s locales > /dev/null 2>&1 ; then
> apt-get install -y locales
> sed -i 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen
> echo 'LANG=en_US.UTF-8' >> /etc/default/locale
> dpkg-reconfigure -f noninteractive locales
> update-locale LANG=en_US.UTF-8
> fi
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following additional packages will be installed:
libc-l10n
The following NEW packages will be installed:
libc-l10n locales
0 upgraded, 2 newly installed, 0 to remove and 19 not upgraded.
Need to get 4107 kB of archives.
After this operation, 13.8 MB of additional disk space will be used.
Err:1 http://ftp.debian.org/debian stretch/main armel libc-l10n all 2.24-11+deb9u3
Temporary failure resolving 'ftp.debian.org'
Err:2 http://ftp.debian.org/debian stretch/main armel locales all 2.24-11+deb9u3
Temporary failure resolving 'ftp.debian.org'
E: Failed to fetch http://ftp.debian.org/debian/pool/main/g/glibc/libc-l10n_2.24-11+deb9u3_all.deb Temporary failure resolving 'ftp.debian.org'
E: Failed to fetch http://ftp.debian.org/debian/pool/main/g/glibc/locales_2.24-11+deb9u3_all.deb Temporary failure resolving 'ftp.debian.org'
E: Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
Error occur
|
|
|
V5 Battery Connector |
Posted by: DavidBuchanan - 01-31-2019, 08:18 PM - Forum: General Discussion on Lindenis V5
- Replies (1)
|
|
I see there is a battery connector on the main board.
What input voltage range is it tolerant of?
And what is the pinout? + and - are marked on either side, but there are three pins - what's the third one for?
I assume batteries will need to be charged externally? Or is there any onboard charging circuitry?
|
|
|
|