• April 12, 2025, 02:23:01 PM
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  

News:

This Forum Beta is ONLY for registered owners of D-Link products in the USA for which we have created boards at this time.

Author Topic: SD card - copy over wifi  (Read 5986 times)

dannnnn

  • Guest
SD card - copy over wifi
« on: June 25, 2014, 06:59:21 PM »

hi all,

is there a way to copy jpegs saved to an SD card in a DCS-2332L netcam without physically removing the SD card from the netcam?

i have it configured to take time-lapse pictures and record them to a PC (via SMB over wifi) and to an SD card (as a backup in case the wifi/PC goes down). this has been a wise decision as the d-link wifi router i bought to run it needs to be rebooted every few weeks!! the camera is in a very difficult to access location so having to physically remove the SD card everytime the d-link AP crashes is frustrating!!

thanks for your help!

- dan

Logged

cmontyburns

  • Level 3 Member
  • ***
  • Posts: 193
Re: SD card - copy over wifi
« Reply #1 on: June 25, 2014, 08:05:39 PM »

I don't have an SD card inserted in any of my cameras currently to refresh my memory, but --

You can access the files on the card from the web interface.  Worst case, you can download them one at a time that way.  I can't remember whether the web interface lets you grab a whole folder at once.
Logged

dannnnn

  • Guest
Re: SD card - copy over wifi
« Reply #2 on: June 25, 2014, 08:41:58 PM »

i haven't figured out a way to download folders but hopefully i am just slow??

one at a time will be panful.... 1 photo every minute = 6 days * 24 hrs * 60 minutes = 8,640 files...!
Logged

fousa

  • Level 2 Member
  • **
  • Posts: 45
Re: SD card - copy over wifi
« Reply #3 on: June 26, 2014, 03:31:16 AM »

Access through SSH

Run the command:

Code: [Select]
find /mnt/mmc/ -name "*.jpg" | while read filename; do /usr/bin/ftpput -v -u YOUR_FTP_USER -p YOUR_FTP_PASS IP_OR_DOMAIN:21 /FTP_FOLDER/${filename##*/} $filename; done;

This will find every jpg in your SD card and send one by one to your FTP folder.

Logged

dannnnn

  • Guest
Re: SD card - copy over wifi
« Reply #4 on: June 26, 2014, 03:38:36 AM »

thanks for the code. will that recreate the folder structure as well?
Logged

fousa

  • Level 2 Member
  • **
  • Posts: 45
Re: SD card - copy over wifi
« Reply #5 on: July 01, 2014, 02:07:50 AM »

No. But I think it's possible to do what you want..
Logged