frames

ffmpeg split into frames

Hey, I want to split a video which is one second long (25fps)into 25 seperate video files. I know I can split it up into jpegs but I need to retain the audio. So when I recompile audio is still there. This is what I tried to grab the first frame only (with audio): ffmpeg -i 1.mov -vcodec mjpeg -qscale 1 -an -ss 00:00:00:00 -t 00:00:00:...

JavaScript DOM: transfer element between frames

I'm using the following jQuery code within an iframe (same origin) to try to move a node from the iframe to the main (top) document. var dest = $(window.top.document).find('#dest_id'); dest.append($('#source_id')); The following works ok: window.top.document.getElementById('dest_id').innerHTML = document.getElementById('source_id').i...

Frame Navigation in Silverlight app

I have a WebRibbon control for a menu. I have a TabControl on the page that holds all content. As you click on a menu I create a TabItem, add a frame to the tab item, navigate to a specific xaml page in that frame and then add the frame to the tab item. It works fine for the first page. The content of the xaml page displays correctly in ...

Expression Web: Frames vs. Dynamic Web Template

Hi all, I am making a website that has a lot of links that do not change from page to page. I have made similar websites before using the DWT feature of Expression Web with good results, but I still see a lot of people using frames for this kind of thing. Is there some benefit that frames have over DWT that I am missing? Are there any...

html multiple frames navigation

Folks, I want to create a webpage with three panes (frameLeft, frameMiddle, frameRight) The content on leftmost pane is a list from file list.html Upon clicking on an item in the leftmost pane, it loads the corresponding html file (call it listLvl2.html) in the middle pane. This is also a list. Clicking further on an item in the midd...

How to encode RGB images into H264 frames (Keyframe + some dependent frames)?

So I created images generator (quite simple onewhich generates RGBs) I want to be able to turn some amount of images into H264 KeyFrame+dependent frames (lats say 100) So on each 100 frames generated I need to encode them into H264. How to do such thing? ...

jQuery: Access frame in nested frameset

I have a document which has a nested frameset. I need to access one of the nested frames, named "sq_main", and access content inside this frame. Here is my structure: <html> <head> <title>Title</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <frameset rows="28,*" frameborder="0" border="0"> <frame...

Can I initiate loading of frame B from frame A?

On my web page I plan to have a "header" containing links to different parts of my site. The same "header" will be present on every page. My header also contain an image. I started to implement this idea and start to think about frames. I though that my be I should put my header in a frame and the main content will be displayed in anoth...

Response.write and target frame

Hi All, I am using two frames in my page. The page in Main fame will get the input and Top frame has to display the result page. I am using the following code in the mainframe page. But it shows error:"Microsoft JScript runtime error: 'topFrame' is undefined" Code: <frame src="" id="topFrame" target="topFrame" scrolling="no"> ...

Capture each WPF MediaElement frame

Is there a way to capture each WPF MediaElement frame? Like an event that fires at each rendered frame and allows me to access it. If MediaElement does not provide such functionality, how could it be implemented or what other control could I use? On a side note, is there such a control or method that would allow for off-screen fast rende...

java code for converting videos into byte arrays

I am looking for a easy to use library in java that can convert a video into arrays(corresponding to frames). Arrays will be used for frame processing with standard algos like GMM ...

Sync scrolling of two frames (browser-agnostic, please!)

I have a web page made of three frames, something like this: +----------------+ | 0 | +-------+--------+ | | | | 1 | 2 | | | | +-------+--------+ Frames 1 and 2 are for comparing some similar data. I'd like to sync the vertical scrollbars on these frames (setting the scroll bar value on...

Hyperlink and targetname in wpf

Hi All, I want to display the pages in the frame by using the hyperlink control. but it is not working. Code: <Window x:Class="WPFNavigation.Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="400" Width="500"> <Grid> <Grid.Colum...

how to call a javascript function in the top frame?

This seems really simple, but how do I call a javascript function that's defined in the top-level html, from a child frame? top html doc - 1st level frame - 2nd level frame my top html doc has a function called testFn(). In the 2nd level frame I have a button with onclick="top.testFn();" but this doesn't call the testFn(). In Fir...

why frames are bad

i know they are, but my co-worker doesn't believe me. He keeps telling me that google cralws the inside content and caches it just fine. According to google, it does crawl them, but doesn't guarantee doing it properly. Any thoughts why frames are bad for public web sites? ...

How can I use –X:Frames in Ironpython?

Visual Studio 2010 + Ironpython for .net4 I want to use numpy in ironpython, and they said I must use frames support. So, I should running ipy with -X:Frames or -X:FullFrames on the command line. But, I have two questions: 1.how can i use -X:Frames or -X:FullFrames in Ironpython Interactive console? 2.If I use C# 4 to load py which ...

Should a modern intranet-only web application still use frames nor not?

I'd like to ask about using frames in a modern intranet-only web application. Of course there a several reasons to use or probably not use frames in a modern internet web application. But what about when it comes to an intranet web applications (think about a financial application)? Think about parts of the application which are most of...

Access individual frames of video streamed from the Internet on iPhone

Hi, I am wondering if it is possible to access individual frames of video streamed from the Internet using the latest iOS4 SDK? What I would like to do is to access every frame in real time, manipulate it and display back on the screen. Thanks, Andrzej ...

Any way to tell if current frame is parent?

Hi, I'm working in a framed environment, and trying to tell if the frame on which some javascript code executes is the top frame (the one that contains the rest). Up until now I was trying to check it with window.parent !=null but it always returns false, like in this simple example. <html> <head> <script> alert(parent == null...

jQuery UI dialog display inside frame, from bookmarklet?

I'm writing a bookmarklet which needs to work in the context of pages whose design I don't control. Some of the pages I need the bookmarklet to function in use frames (in framesets). Is it possible for a jQuery-UI dialog to work inside a frame? Currently, when I encounter a page with a frameset, I creating my dialog like this: var fr...