Questions tagged [embedding]

An embedding is one instance of some structure contained within another instance, such as a group that is a subgroup.

An embedding is one instance of some structure contained within another instance, such as a group that is a subgroup.

Links:

1356 questions
0
votes
0 answers

Python embedding in c++ for Socket programming threading issue

I have written a Python script embedded in C++ for socket programming. I have two end systems both of which can send and receive. The send and receive operation happens in different C++ threads. The program build fine but there is a strange error…
Vigo
  • 707
  • 4
  • 11
  • 29
0
votes
1 answer

FLASH - Loading Sound from Different Host/Domain

I have made an Audio Player in Flash that is embedded in JSP. which sets Param when JSP is loaded which Plays mp3 file that is availabe on my server, i.e. I passes path like /dirOnMyServer/sample.mp3 But when I place Path of a file placed on any…
Mrug
  • 4,963
  • 2
  • 31
  • 53
0
votes
2 answers

YouTube API: custom button to start playing an embedded video

I have embedded a YouTube video in a website, but I want to start playing it by clicking on a custom button outside the player. After some research on the web I've tried with this piece of js: $(document).ready(function() { …
stefano1
  • 203
  • 5
  • 14
0
votes
1 answer

Embedding Google moderator in my website

I am developing a website where i need to embed Google moderator in my website, i went through the help of Google but couldn't do it. So what are the steps to embed the Google Moderator to my website. Thanks in advance.
Maulik Goswami
  • 105
  • 2
  • 5
  • 17
0
votes
2 answers

Embedding Python 3.3

I try to embed Python 3.3, as described here. I'm on MacOS 10.8 which has Python 2.7 so I downloaded binary distribution of version 3.3 from python.org. From it I got all the headers and "Python" which I renamed to "python33" so it wont collide with…
Ecir Hana
  • 10,864
  • 13
  • 67
  • 117
0
votes
0 answers

Videos not embedding for every user

We recently released a video service which is much social oriented, and facebook sharing is one of our key features. All our meta tags are ok, and debugging with the facebook debugger, I get no errors, and it tells me that video embedding is…
Charleshaa
  • 2,218
  • 2
  • 21
  • 25
0
votes
2 answers

How are strings embedded in binary files?

I'm writing my own bytecode and virtual machine (on .NET) and one thing i can't figure out is how to embed strings into my bytecode. Any ideas now how i should do it?
RCIX
  • 38,647
  • 50
  • 150
  • 207
0
votes
3 answers

Flash Font embedding problem

I am facing a wired problem with a project. I am embedding Arial font as project is multi-lingual. If I build this project on one of my development machine, Font gets embedded successfully but in any of other machine, project successfully gets…
DexTer
  • 2,043
  • 1
  • 22
  • 45
0
votes
1 answer

Embedding Pig into Python

I am trying to embed a pig script in Python and am encountering an exception and can't seem to find what the problem is. I have a Python script with pig script embedded in it and have Apache PIG 0.10 installed. I can run pig scripts from the shell…
quiet_penguin
  • 808
  • 7
  • 18
0
votes
1 answer

Embed vaadin application into div element

I'm trying to embed vaadin appliaction into div element. I follow this guide (12.3.1): https://vaadin.com/book/-/page/application.embedding.html I used SimpleAddressBook example from tutorial for my experiments: https://vaadin.com/tutorial My…
Alexander Camperov
  • 393
  • 2
  • 5
  • 11
0
votes
1 answer

Inline image embedding without gmail?

Can you embed inline images in email that is not gmail? i found this but i think it is for gmail only? HTML Email in Gmail - embedding images
0
votes
1 answer

Embed Several info fields in a XML Node Content

I have two XML Documents, on the first I have: But in the second one, the whole info of IamAXMLNode attributes should be included on a single…
Mario Corchero
  • 5,257
  • 5
  • 33
  • 59
0
votes
1 answer

Embedding website inside another

A customer asked to be able to call my web app from his domain for hiding my domain name. I remembed that several years ago it was used to use an hidden iframe ... is there a more "modern" solution?
Cris
  • 12,124
  • 27
  • 92
  • 159
0
votes
1 answer

How can I load a local file from embedded Rhino?

I'm using Rhino's context.evaluateString() to run some simple JavaScript from inside of Java. It's textbook right out of the Embedding Javascript guide: String script = // simple logic Context c = new…
Coderer
  • 25,844
  • 28
  • 99
  • 154
0
votes
4 answers

C/C++ embedding python module PIL, the python function want to return all pixel data, but i why can't?

add c/c++ code embedding python. all problem is in c code, I don't known how to get the pixel value. python code: import Image format = "" mode = "" size = "" data = list() def getImage(file): im = Image.open(file) global format global…
Yuansheng liu
  • 165
  • 1
  • 2
  • 10