|
|||||||||
|
|||||||||
|
|||
|
Hey hey hey!
I've been looking around to find the easiest way to sync cycorder video (as the title shows) with my Mac and I think i found one (may be somebody else came up with this as well but didn't find it so here it goes): First, the "official" way to get your recorded video is with SSH which is a pain in that special place. Also a pretty smart improvement was to use a file sharing app to download the videos. Well, with little effort you can have iphoto downloading your precious videos and once they're in you can put them easily like "legit" video in your iphone ipod. Let's begin from the beginning: * I strongly suggest you to get firm 3.0 -> Install Cycorder from Cydia -> Install MobileTerminal from Cydia because we're unix geks. -> Run mobileterminal and type: cd /private/var/mobile/Media -> Type: mv Videos Videos.old -> Type: ln -s "./private/var/mobile/Media/DCIM" ./Videos -> Try to record some fancy video with cycorder, connect your iphone via usb to the mac and open iphoto. It works? Happy? Now the explanation: Usually the 3G$ stores the video in this very folder "DCIM" like every camera plus dog. The iphoto and may be other windows applications just download every media inside that folder. The trick is to just put away the cycorder videos folder and create an alias or link to the DCIM folder named Videos. Creators of Cycorder: Why not store the videos in the DCIM? Will be a 5 minutes job and a major update. So far it's working but if my mobile explodes will be posted here. Last edited by tamiya; 07-17-2009 at 01:04 AM. |
|
|||
|
Hi,
Thank you for your tip. I'm a windows-noob but I have a few knowledge in Unix and Mac systems. I think it's a matter of rights !! I Know that r/w rights are OK for the original photo Folder Well, in order to create "the same rights folder", I used SSH (WinSCP for Windows) to rename DCIM/100APPLE folder : /private/var/mobile/Media/DCIM/100APPLE to this folder : /private/var/mobile/Media/DCIM/Videos I then created the link, and it works. Took a photo, and 100APPLE is back ! So finally, here is how to have cycorder videos recorded in the public DCIM photos folder (works for 3.1.2) : -> Install Cycorder from Cydia ---> EITHER : Install MobileTerminal from Cydia because we're unix geks. -> AND run mobileterminal, ---> OR use SSH and WinSCP from windows as you like. -> Type folowing commands : cd /private/var/mobile/Media/ mv ./DCIM/100APPLE ./DCIM/Videos // -> STOP ! Simply go to iPhone, and take a photo !! This will put another 100APPLE folder with good rights. Go back to terminal, or if SSH link still online, keep typing : ls ./DCIM // -> Check you have 2 folders : "100APPLE" and "Videos" at least. mv ./DCIM/Videos/*.JPG ./DCIM/100APPLE/ mv ./Videos/*.* .DCIM/Videos/ rmdir ./Videos ln -s ./DCIM/Videos ./Videos // That just did : replace photos in original folder, replace videos in new vid folder, delete videos folder, and create alias to new location. // -> Try to record some fancy video with cycorder, connect your iphone via usb to the mac and open iphoto. There MUST be a simpler way to manage rights in this folder... But this one works well. Bye bye c_cool_la_vie Last edited by c_cool_la_vie; 11-10-2009 at 06:45 AM. |
| Remove advertisements | |
|
|
|
|
|
|||
|
chown mobile {foldername} is what you're looking for.
so if you're logged in as root, mkdir /var/mobile/Media/DCIM/Videos chown mobile /var/mobile/Media/DCIM/Videos if the folder still shows in the 'wheel' or 'root' group, then you can also do chgrp mobile /var/mobile/Media/DCIM/Videos funny I found this thread, this was exactly what I was doing this morning too. Makes it very easy to 'sync' or download the videos from Cycorder this way. One thing I noticed though is that if your iphone is connected to your machine (at least in my case (Vista)) - If you make a new video using cycorder, it won't show in the Videos folder on the connected computer until you disconnect and reconnect the phone (it looks like the file list is retrieved upon connection and new videos don't show up until you reconnect again) Good stuff... Here's another nice thing... if you copy those videos using SSH to the 100APPLE folder and rename them to, say, IMG_0365.MOV (or whatever your 'next number' is) then you can now view and trim the videos in the iPhone's photo app a' la' 3GS. Nice! ...I haven't tried taking a photo after that though since the 'last number' used is stored in a plist file in a hidden folder under the DCIM folder. |
|
|||
|
...FYI, the command:
chown username:groupname is supposed to take care of owner AND group at the same time but this isn't working for me on my iPhone... may not be implemented properly? so: chown mobile:mobile /var/mobile/Media/DCIM/Videos should change the ownership appropriately. |
|
|||
|
So here is the synthesis of all, to have Cycorder videos appear on the computer when you connect the iPhone (Just tested with iPhone 2G & 3G)
Thank you telnetdoogie and tamiya for contributions. Connect to you iPhone via SSH (do whichever way) as "root". Cycorder supposed to be already installed. cd /private/var/mobile/Media/ mkdir ./DCIM/Videos mv ./Videos/*.* .DCIM/Videos/ rmdir ./Videos ln -s ./DCIM/Videos ./Videos chown mobile:mobile ./DCIM/Videos Ok, now you can make a video, and then connect iPhone to PC. Note : the folder is "updated" by the PC every connection. Recording while connected won't show the new video at first. Bye bye c_cool_la_vie |
| Remove advertisements | |
|
|
|
|
|
|||
|
Now you can send videos and publish on youtube, if you know the iSpazio plist change, see here :
http://www.ihackintosh.com/2009/06/h...ne-2g3g-os-30/ but it implies to switch the old and the new plist file : The first lets you view and send videos from photoapp, but take no photos ! The original file lets you take photos as usual. The swap must be done manually. So you might find it useful to have your cycorder videos sent to the photos folder 100APPLE (It becomes "101APPLE" after 1000 pics) : To do so, simply type this to ssh : cd /private/var/mobile/Media/ mv ./Videos/*.* .DCIM/100APPLE/ rmdir ./Videos ln -s ./DCIM/100APPLE ./Videos Then, I suggest that you have "terminal" installed... I managed to write a few scripts to be able to see the cycorder and videorecorder videos in the normal photo application. I even found a way to edit and send those videos. See further details here, where I just posted : http://www.ihackintosh.com/2009/06/h...#comment-10810 Have fun and enjoy, c_cool_la_vie |
|
|||
|
Now you can send videos and publish on youtube, if you know the iSpazio plist change, see here :
How to Activate Video Camera in iPhone 2G/3G OS 3.0 | iPhone but it implies to switch the old and the new plist file : The first lets you view and send videos from photoapp, but take no photos ! The original file lets you take photos as usual. The swap must be done manually. So you might find it useful to have your cycorder videos sent to the photos folder 100APPLE (It becomes "101APPLE" after 1000 pics) : To do so, simply type this to ssh : cd /private/var/mobile/Media/ mv ./Videos/*.* .DCIM/100APPLE/ rmdir ./Videos ln -s ./DCIM/100APPLE ./Videos Then, I suggest that you have "terminal" installed... I managed to write a few scripts to be able to see the cycorder and videorecorder videos in the normal photo application. I even found a way to edit and send those videos. See further details here, where I just posted : How to Activate Video Camera in iPhone 2G/3G OS 3.0 | iPhone Have fun and enjoy, c_cool_la_vie |
![]() |
| Bookmarks |
| Tags |
| video tutorials |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| [Upgrade 1.1.4 to 2.0.1] Help to upgrade needed | c_rafa | Winpwn | 7 | 08-28-2008 03:54 AM |
|
|