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

learn more… | top users | synonyms

3
votes
0answers
27 views

Where is documentation on the embedding API for the Ruby interpreter?

I am looking for a comprehensive, online, documentation resource regarding the embedding of the Ruby interpreter into C or C++ programs, and the API(s) for that purpose. The section on this in the ...
0
votes
0answers
16 views

DCT for embedding in MATLAB

I use the DCT for embedding process in something like the following code `im1=imread('test.jpg'); alpha=0.01; [r c]=size(im1); im2=dct(im1); count=0; w='watermark will be here'; for i=1:r for j=1:c ...
0
votes
1answer
12 views

highlight the text in the richtextbox as a python code

I'd like to embed the IronPython script engine into a c# app, reading the python code from a richtextbox. Is there a way to highlight the code in the richtextbox to make it look as in a standard ...
0
votes
0answers
16 views

JPA updating Embeddable entities implicitly

I have an Embeddable JPA entity (X) with 2 fields. Now both B and C which are JPA entities are having a reference to (X) with the @Embedded annotation. Furthermore A has a reference to B and B has a ...
0
votes
0answers
11 views

Symfony 2.2.1 The ip address in request gets changed in Embedding Controllers

Symfony 2.2.1 The ip address in request gets changed in Embedding Controllers. am in missing something. or is there any way to persist the clients ip address in the sub request. I am useing it in ...
0
votes
1answer
34 views

Mathematica SpringEmbedding Parameters

I'm trying to construct a 3D graph in Mathematica, where the actual lengths of the edges are important. Taking a look at their documentation for graph drawing ...
0
votes
0answers
42 views

Changing the logo of VLC player embedded in HTML page

I have embedded the VLC player to a webpage and I would like to know if it's possible to change the "cone" logo with a different image. I'm using VLC in order to play a multicast stream (only audio). ...
0
votes
1answer
41 views

Embedded Python in C++ socket programming

Can i not send and receive UDP packets in a single python embedded C++ program in which send and receive scripts run in different threads? I get an unhandled exception when the exe file is run. When ...
5
votes
0answers
83 views

Embedding PDFs in HTML pages: is pdf.js safe for production? [closed]

I'm researching ways to reliably view PDF files from with HTML pages on our site. I've found many references to PDF.js, which looks really cool, but has almost zero documentation. Development appears ...
0
votes
0answers
41 views

YouTube iframe embed showinfo not working in chrome but working in IE and FF

This isn't even an issue specific to a site I'm trying to make, as you can go to https://developers.google.com/youtube/youtube_player_demo to replicate the issue. Simply play the standard video ...
-1
votes
3answers
94 views

how to read values from a structure in C

#include<stdio.h> #define msize 4096 struct memory { int a[msize]; }; void main() { struct memory m; m.a[0]=250; // temperature value of 25,0 m.a[4]=01; // heater status OFF ...
0
votes
0answers
45 views

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 ...
0
votes
1answer
22 views

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 ...
0
votes
2answers
127 views

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: ...
2
votes
1answer
63 views

Embed Image into video - FFMPEG or JW player?

So I thought to embed the image as part of video content while converting the m4a to mp4. The output file has the image as video content and it plays as expected in VLC but when the same was streamed ...
0
votes
1answer
51 views

Video Embedding Not Working [closed]

I see there are a couple of other threads with the same problem and no solution. Since there has been an update on Facebook, the embedding of videos stopped working. The url I have been testing is ...
0
votes
1answer
50 views

Does “embedding” in Go allow better mapping from general-purpose languages to SQL? [closed]

I have recently been thinking and reading about the dichotomy between SQL's and general-purpose programming languages' representation of data. It seems the best methods for overcoming the issue are ...
0
votes
1answer
58 views

including Python.h in C++ file CDT

I apologize if this is a silly question. But I tried to google this and I couldn't find anything to point me in the right direction. I'd just like to understand what I need to do to 'set-up' cdt to ...
-1
votes
1answer
64 views

C/C++ Python Embedding [closed]

I am planning to make a simple console game that is able to be customized through a python script. I've been able to get simple functions running and returns working but, I would need to be able to ...
10
votes
2answers
210 views

Does embedding c++ code in python make your python application faster? [closed]

Does embedding c++ code in python using ctypes, boost.python, etc make your python application faster? Suppose I am making an application in pygtk and I need some functions which need to be fast. So ...
0
votes
0answers
55 views

Is there a cross platform embedded language that mimics vb that I can include in my C++ Apps? [closed]

Basically I am looking to use an embedded scripting language such as LUA or Angelscript that mimics VB or vb.net as its scripting syntax. Some requirements for it are that it needs to be for C++ and ...
0
votes
0answers
32 views

Transparent PNG over embedded video

Im trying to make a faux laptop video segment on my website. Ive made a transparent laptop png and I wish to place a embeded Vimeo video in the "back" so it appears as if the video is the part of the ...
6
votes
1answer
169 views

How to embed LLVM assembly or intrinsics in C program with Clang?

C compilers allows to embed assembly code in a C program. I am pretty sure that Clang should allow embedding LLVM assembly or intrinsic code in C program. How can I embed LLVM assembly in C code?
0
votes
1answer
134 views

Gnuplot font embedding

I want to postprocess some figues I made in gnuplot with Corel Draw. However when I create these .eps files no information about the font is included in these. Thus corel does not know what font is ...
0
votes
0answers
35 views

Assigning python variable to C++ variable

I have written a C++ code that embeds python. Now i want the C++ variable to take the value of python variable. Is there a way to accomplish this? The code looks like this: #include <Python.h> ...
0
votes
1answer
155 views

Rescaling and resizing embeded wmv file in webpage

i am embedding a wmv file in my webpage but the problem is that i cant rescale the video frame to the object size and div here's my code <div style="width: 300px; height: 220px;"> ...
0
votes
2answers
104 views

Embedding Groovy in Java (Binding)

I try to Bind Variables to Groovy and from Groovy back zu Java: Java code: Binding binding = new Binding(); binding.setVariable("SRESULT", "foo"); GroovyShell gs = new GroovyShell(binding); ...
2
votes
0answers
26 views

Get YouTube video comments in my website

In my website i got succeeded in embedding videos from YouTube but i'm not getting the comments made on that videos. So is there any way to get that comments embedded with the video in my website. ...
1
vote
1answer
103 views

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. ...
-1
votes
2answers
150 views

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" ...
0
votes
0answers
58 views

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 ...
3
votes
2answers
377 views

First attempt at lazy loading (deferring the load of embedded YouTube videos) - how can I do this more gracefully?

Yesterday I decided to improve the way my website loads YouTube videos by only embedding them when a user requests them. Sometimes a page could have as many as 30 videos on, and this would take a long ...
1
vote
2answers
48 views

Font-embedding: what is wrong here?

I'm still pretty new to html and css, so I might be overlooking things. Been entertaining myself trying to create a little website and arrived at embedding a font to it. It is working in firefox, yet ...
1
vote
1answer
72 views

Embedding python in C++: Assigning C++ and python variables

I'm writing a small program (the one below) that embeds python in a C++ code. #include <Python.h> int main() { int x; Py_Initialize(); const char* pythonScript = "print ...
1
vote
1answer
496 views

Embedding a UIContainerView as a portion of screen in a UIViewController

I have a screen in my storyboard where I would like to embed a container view into a portion of the screen. I can't figure out if I should add a new containerview or view from the object library and ...
1
vote
1answer
260 views

Python calling DLL calling Python, “WindowsError: exception: access violation reading 0x00000004”

I have an application written in Python. The application calls some functions in the dll (using ctypes) that calls some functions from the python C API to load and run some functions in a (different) ...
2
votes
0answers
366 views

Embedding Mono on iOS

I want to embed mono into my iOS application. I do not want to use MonoTouch. I want to embed mono manually like this: http://www.mono-project.com/Embedding_Mono I've have done this successfully ...
0
votes
0answers
53 views

I have to embed youtube video on the home page of my website

I have to embed youtube video on the home page of my website but its saying that the website does not permit its content to be displayed in a frame. It must be displayed in a separate window.But i am ...
3
votes
1answer
133 views

Calling python eval from c++

I'm basically attempting to do the same as the following question but i'm getting run time errors at the call to PyObject_Print complaining about an error in "toupper() at 0x776e0226" Python C API: ...
0
votes
0answers
76 views

Can't import site package when using python27.dll instead of python.exe

I am already searching for an answer for two days without success. I hope that someone here could help with my problem. Here is the situation: I have Python 2.7 on a WinXP 32 machine installed, ...
0
votes
0answers
26 views

display youtube embedded content in WebView

I have a webView app that displays a forum where YouTube videos might be emnbedded in the posts. However, nothing of the videos displays within the WebView, presumably because it wants to display the ...
0
votes
0answers
162 views

embed an external website without scrollbar

Is there a way to seamlessly embedded an external website? I am trying to embed an external site into mine. The direction on the external site is to use iframe to embed their site. So I tried it and ...
1
vote
3answers
99 views

Adding a script in a C++ application

I'm working on a project simulating a stock market. People buy and sell a stock and I would like to call each turn a script to try a strategy against the market. What I want is a function in C++ ...
2
votes
1answer
233 views

Java SWT browser xulrunner crash Java VM

I'm embedding in a Swing-based application an SWT Browser based on Xulrunner using a proper path and the setting SWT.MOZILLA. Mainly I have a class which extends JPanel. This class embed a shell with ...
1
vote
3answers
125 views

Embedding coffeescript … in Javascript?

Within the current codebase of javascript code, I would like to be able to incrementally replace functions/blocks using cleaner and compact coffeescript, and add new code using coffeescript. Is it a ...
0
votes
2answers
215 views

How to pass an array from C to an embedded python script

I am running to some problems and would like some help. I have a piece code, which is used to embed a python script. This python script contains a function which will expect to receive an array as ...
0
votes
0answers
103 views

Embedding HD Facebook Video outside Facebook

I can't seem to find how to embed facebook video onto a website by default in HD. Even at embed resolutions of 1280x720 and higher it still plays in low quality mode. Is there a way around this? ...
2
votes
0answers
358 views

Embedding responsive CMS (WP?) and Big Cartel into responsive site?

let me start by saying I am currently a design student still new at HTML5/CSS and this is my first post here! I have been searching all over for a definitive answer with no luck. Any help would be ...
0
votes
0answers
77 views

Embedded Python Script and Static Library

I have a python script where I must implement some functionality in another program which was written in C. I have studied the methods to embed the Python script to use in another application and it ...
0
votes
1answer
212 views

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 ...

1 2 3 4 5 8