Italian Intent per Alfred camera

pazzokli

Active Member
Licensed User
Longtime User
ciao a tutti,
Sapete se si riesce a richiamare con intent direttamente una telecamera con Alfred?

Grazie
 

Star-Dust

Expert
Licensed User
Longtime User
Chi è Alfred? il Maggiordomo degli Addams?
 

Star-Dust

Expert
Licensed User
Longtime User
??? Alfred camera. È il software che trasforma lo smartphone in telecamera wifi
Non ne hai bisogno, su forum ne trovi tanti esempi di sorgenti per usare lo smartphone in wificam.

Cerca CCTV sul forum
 

drgottjr

Expert
Licensed User
Longtime User
B4X:
Dim intent As Intent  = pm.GetApplicationIntent("com.ivuu")
    If intent.IsInitialized Then 
        StartActivity(intent)
    Else
        Msgbox("com.ivuu non accetta intents en questo momento.", "si dispiace")
    End If
 

pazzokli

Active Member
Licensed User
Longtime User
Non ne hai bisogno, su forum ne trovi tanti esempi di sorgenti per usare lo smartphone in wificam.

Cerca CCTV sul forum
solo che io vorrei consultare la camera anche fuori casa e quell'app era comoda perchè trasmette via web sia video che audio senza troppe configurazioni al modem
 

pazzokli

Active Member
Licensed User
Longtime User
B4X:
Dim intent As Intent  = pm.GetApplicationIntent("com.ivuu")
    If intent.IsInitialized Then
        StartActivity(intent)
    Else
        Msgbox("com.ivuu non accetta intents en questo momento.", "si dispiace")
    End If
this open only the app but not directly the camera. This intent open the dashboard
 

Star-Dust

Expert
Licensed User
Longtime User
solo che io vorrei consultare la camera anche fuori casa e quell'app era comoda perchè trasmette via web sia video che audio senza troppe configurazioni al modem
Lo smartphone, anche se fa da camera non deve per forza funzionare da server, ma può agire da client da client e si connette a un pc (o altro telefonino) che fa da server.
Trovi esempi anche in questo senso.

Ad esempio se tu sei a lavoro , configuri il dispositivo per inviare il video all'indirizzo IP del lavoro e configuri il router del lavoro per ricevere. L'App in B4J fa da server che riceve le immagini.

Puoi usare un DDNS se non hai un IP statico, oppure ti sposti da un ufficio e un altro e quindi non hai un IP fisso da usare. Ci sono diverse soluzioni dipende quello che devi fare
 

pazzokli

Active Member
Licensed User
Longtime User
molto semplicemente se mi suonano al campanello e sono fuori casa mi piacerebbe vedere chi è e poterci dialogare.
Questa cosa del DDNS devo studiarmela.....
 
Top