1539540104 Publish time 2018-10-29 01:38:12

PiCar

Finished my Pi Car and evertrhing seems to be working except can't get the video to play or respond at all - any suggestions on where to start trouble shooting?


Adeept Publish time 2018-10-29 11:59:42

Hello,

This is usually caused by the inconsistency between the VLC installation path and the path of the client software call.
You should modify the VLC.txt file according to your PC's VLC installation path.






Thanks!

1539540104 Publish time 2018-11-1 03:21:30

thank you - tried that
On a side note, why does it have double "\\" lines?
I've attached my error message if that helps.

3uiot6wchz Publish time 2018-11-1 11:03:12

Edited by 1541040112 at 2018-11-1 11:15 AM

1. The double '\\' means the second '\' isn't a special character.

Example:
If you want to out print "
python code: print(' " ') or print(" \" ")
besides, on windows OS, if there are spaces in a path, you need to use "path" instead of 'path'.

2. I write a python code to test the VLC function.
#
import subprocess

def import_path(initial):
    with open("VLC.txt") as f:
      for line in f.readlines():
            if(line.find(initial) == 0):
                r=line
    begin=len(list(initial))
    snum=r
    n=snum
    return n

vlc_path=import_path('addr:')
cmdline =
player = subprocess.Popen(cmdline, stdin=subprocess.PIPE)
#
You can simply run this code to see if the VLC.exe runs.
remember to put this .py in the same folder as VLC.txt in.

If VLC media player runs, then there may be other error that I can't think of for now.
If VLC media player doesn't run, check the path in VLC.txt again, make sure the format is right. or you can tell me where the VLC.exe is and I help you to change the VLC.txt.

thanks




1539540104 Publish time 2018-11-2 09:11:50

3uiot6wchz replied at 2018-11-1 11:03 AM
1. The double '\\' means the second '\' isn't a special character.

Example:


Thank you - will let you know how it goes.


1539540104 Publish time 2018-11-5 01:22:23

Yes, vlc working, but no - PiCar won't call it & send images - error message is in PDF attached to earlier post.
Plus I don't see any kind of "Contact Us" button on this website to ask Adeept!

Adeept Publish time 2018-11-6 16:33:25

Hello,

Please refer to this video:

http://www.adeept.com/video/details/index/id/30

Thanks!

1539540104 Publish time 2018-11-8 20:44:24

Adeept replied at 2018-11-6 04:33 PM
Hello,

Please refer to this video:


watched the video - saw a step that was missing from the Manual I had - will try later today - thank you

1539540104 Publish time 2018-11-9 09:03:13

1539540104 replied at 2018-11-8 08:44 PM
watched the video - saw a step that was missing from the Manual I had - will try later today - tha ...

That wasn't it - now uninstalling all the software and will re-install this weekend - then pull it apart and use it for kit parts for other things!!


1539540104 Publish time 2018-11-10 09:43:59

Re-installed all software and now even wi-fi won't work - will now dismantle and use parts on a Elegoo model that does work.
Pages: [1] 2
View full version: PiCar