Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
5answers
1k views

How Compatible is GNU Smalltalk with Squeak

I'm working on an app in squeak that requires no graphics at all, its all just data manipulation. The problem is that I work in a fairly conservative environment and I dont think I'll be able to sell ...
6
votes
3answers
224 views

Images or files in GNU Smalltalk?

I'm new to Smalltalk. I think I understand the basics of the language and now want to start with GNU Smalltalk (as it's free and has bindings for GTK). As I'm coming from the PHP and Java-Corner, I'm ...
5
votes
1answer
153 views

How can i get the application code created by gst-launch or gstreamer pipeline editor?

see if i have made one application like below by gst-launch commnad gst-launch -v filesrc location=ed_hd.mkv ! matroskademux ! vorbisdec ! audioconvert ! audioresample ! autoaudiosink when ever i ...
2
votes
1answer
12 views

gstreamer find out decoding bit rate

The function query_position(gst.FORMAT_BYTES, None)[0] returns me the no. of bytes in the pipeline after gstreamer has decoded the video/audio. I want to know the no. of bytes of the source file that ...
2
votes
2answers
146 views

GStreamer force decodebin2 output type

I'm trying to write a program in C which replicates the pipeline: gst-launch -v filesrc location="bbb.mp4" ! decodebin2 ! ffmpegcolorspace ! autovideosink DecodeBin2 has a dynamic pad and I've ...
2
votes
2answers
284 views

Missing PyGST Plugin?

I'm running python 2.6 and PyGST (most recent available for Python 2.6). I've installed all the plugins - good, bad, and ugly. I have the following code: import sys, os import pygtk, gtk, gobject ...
2
votes
1answer
153 views

convert gst-launch pipline syntax to python gst syntax

How could I convert below gst-launch pipline syntax to python gst syntax ? gst-launch-0.10 v4l2src ! 'video/x-raw-yuv,width=640,height=480,framerate=30/1' ! \ tee name=t_vid ! queue ! videoflip ...
2
votes
1answer
109 views

How to look at image code in GNU Smalltalk?

how can I look at class / message code from within the GST command line interface? I only know the #inspect message, but this shows only a definition or summary of the object, not the code. Thank you ...
2
votes
1answer
444 views

Python and Gstreamer

I'm creating a streaming application, using GStreamer with TCP pipeline, and i implemented start, pause, and stop. but the problem is, that i can't seek, i tried to change the playback value from the ...
1
vote
1answer
242 views

Convert FLAC to MP3 with GStreamer + Python?

Here's the command I'm trying to replicate: gst-launch filesrc location=test.flac ! flacdec ! lame ! filesink location=test.mp3 When I run this command it works beautifully. I've tried to replicate ...
1
vote
1answer
117 views

Taking a snapshot from webcam monitor in python (pygtk)

I have this code for monitoring a webcam with python and pygtk. The question is, how I take a snapshot with this code?: #!/usr/bin/env python import sys, os import pygtk, gtk, gobject import pygst ...
1
vote
1answer
256 views

Gst RTSP server programming

I've installed gst-rtsp-server and I wanted to try a simple code. But on compilation I'm getting the following error: In function `main': test-launch01.c:(.text+0x64): undefined reference to ...
1
vote
1answer
202 views

RTSP video in gtk-application

I develop an gtk-application for playing RTSP stream from IP cameras. pipeline=gst_parse_launch("rtspsrc location=rtsp://192.168.127.100:554/moxa-cgi/udpStreamer latency=0 ! decodebin ! ...
1
vote
1answer
493 views

how to send EOS message to the bus

ok, I have something like this: self.pipeline = gst.Pipeline() self.tee = gst.element_factory_make self.source = gst.element_factory_make('subdevsrc') ...
1
vote
1answer
918 views

capture using v4l2 and display preview using gstreamer

How to pass the buffer/userpointer to gstreamer after Q_BUF, STREAM_ON, DQ_BUF. I tried using PIL's method frombuffer, but with no success. so I want to use gst sink now. Should I use ...
1
vote
3answers
558 views

how can I grab video from usb video capture + dvb device with gstreamer?

I own a avermedia volar HX usb stick, I want to capture fromthe composite input , but I can't because I'm unable to select the input. I'm using gstreamer with + python, I think I need to use gsttuner ...
0
votes
0answers
35 views

gstreamer with IP camera

I have an IP camera that is connected to network, and I have one computer connected to two networks including the IP camera network I am using gst-launch on this computer to create RTP flow to feed ...
0
votes
1answer
446 views

Cannot Import GST in Python

I'm in a quandary. I'm following the following tutorial (specifically, 6.4.2) http://majorsilence.com/pygtk_audio_and_video_playback_gstreamer I'm running Python 2.7, PyGTK 2.24, and GStreamer ...
0
votes
0answers
48 views

Setting Up VS to build GST apps on Windows

I installed the OSSBuild gstreamer MSIs for GSTreamer and GStreamer-dev on my XP. I created a VS project and find that i have to have there include directories added (s0 far) "c:\Program ...
0
votes
0answers
145 views

How to sink xvimagesink to a yuv file? (converting avi file to yuv file)

There is a pipeline as follows gst-launch-0.10 filesrc location=/media/software/downloads/sample.avi ! decodebin ! ffmpegcolorspace ! video/x-raw-yuv,format=\(fourcc\)I420, ...
0
votes
2answers
85 views

jQuery limit number of numbers after

Hi I am trying to work out the best way to do the following say I sell an item for 22.55 the GST on that is 10% which = 2.25 However it seems when I run the following var sum = (.10 * 22.55); it ...
0
votes
1answer
155 views

Switch gst video to some point in another video on pygtk Button press

I'm trying to play a video and have a button that switches the video to a new one, starting the new one at some point other than the beginning. I haven't written much UI or video-related code. I have ...
0
votes
2answers
171 views

Is it possible to stream a windows (7 / vista / xp) webcams via Gstreamer

I very new to the world of gstreamer. I was wondering, if it's possible to stream windows webcam via gstreamer? The only package i have seen so far is for linux. v4l2 (video for linux). Is there also ...