Questions tagged [poster]

Async node module for uploading local/remote files over multipart.

85 questions
2
votes
0 answers

Uploading file via poster/urllib2 with modified mime-type

I'm trying to write a python script that will upload a file and changing its mime-type from poster.encode import multipart_encode, MultipartParam from poster.streaminghttp import register_openers import urllib2 register_openers() params =…
george
  • 565
  • 1
  • 5
  • 16
2
votes
0 answers

poster not shown in video.js

I'm using your video.js which is working in part. I mean that I downloaded the zipfile and unzipped in your folder video-js containing all files. Perfect, if I play your demo.html I can see it correctly in FF ok. I want create a webapp with…
wocmultimedia
  • 259
  • 1
  • 6
  • 18
1
vote
1 answer

Add a poster frame to a loaded video

I'm building application where users can upload flv's with the fileReference. When a user press upload the flv is uploaded into a folder and the path stored into the database. When the user clicks on an other page, he can see a list with all the…
Duikboot
  • 1,093
  • 1
  • 12
  • 24
1
vote
2 answers

Http request tool that will show the actual request (trouble with the Firefox plugin Poster)

I am trying to connect my common lisp application to a Drupal driven server site using http-post and I am having trouble debugging my request. When I use the Firefox plugin Poster to make the request everything works fine but when I make the…
Mike2012
  • 7,629
  • 15
  • 84
  • 135
1
vote
2 answers

Python poster Content-Length error

I was trying to send image with poster module. I followed the example, but it doesn't work for me My code: from poster.encode import multipart_encode from poster.streaminghttp import register_openers import urllib, urllib2 def…
Meph
  • 522
  • 1
  • 6
  • 14
1
vote
1 answer

UWP MediaPlayerElement - Poster Stay Put Until Played

The UWP MediaPlayerElement has both a PosterSource and a VideoSource. This question is primarily about keeping the PosterSource showing until Play. Docs state: When a valid source is not set. For example, Source is not set, Source was set to Null,…
1
vote
2 answers

Show the poster after pausing the video in HTML

I have this code
1
vote
0 answers

.net mvc keybindings poster

I've been looking for some asp.net mvc keybinding posters but can only seem to find ones for VS 2010 which dont include any MVC specific things. Is there any out there? Or what would be the easiest way to make one for myself? I'm using resharper as…
Daniel Powell
  • 8,143
  • 11
  • 61
  • 108
1
vote
1 answer

Put not working using Poster

I am most likely doing something wrong but not sure what. I am trying to test a NetSuite Restlet (web service) using FF poster. I can use Get to work by passing data in the URL. However, I get an error using the Put method. {"error" : {"code" :…
MG2016
  • 289
  • 6
  • 32
1
vote
1 answer

how to create a new node with an Image field using services module Drupal 7 testing with POSTER extension?

I am trying to create a new node using services module and testing with POSTER extension of google crome. This node has custom image field, now facing trouble with; how to pass values for the image field. Node Type: 'article' Node fields: 'title',…
abhay
  • 11
  • 2
1
vote
1 answer

Poster image shows everywhere except in IE8

The mediaelement player works successfully in all browsers (and the poster image shows), except the poster image does not show in IE8 (just black). Here's my code:
1
vote
0 answers

Making fake post back through Http Poster or Http Requester in Firefox(ASP .NET)

I want to make a fake POSTBACK request to aspx webpage which is hosted in IIS 7.5 server with .NET Framework 4. When i clicked a button seemingly the login button of the page.It just posts the data with __EVENTVALIDATION and __VIEWSTATE and…
ShihabSoft
  • 835
  • 6
  • 15
1
vote
1 answer

How to authenticate method on a web service so that hackers could not invoke methods within webservice using different tools?

We have developed web service(as well as generic handler) based web application.But it seems that the methods could be invoked by using different tools like (Poster,Advanced Rest Client) to get the secure information of Administrator and could do…
1
vote
0 answers

Binary file upload (python, PyCurl, C#)

My problem is a general problem. I want to perform data sending (big binary container file) to a uC which works with a prepared html sending script written in C#. C# Code: WebClient client = new WebClient(); client.UploadFileAsync(uri, "POST",…
1
vote
1 answer

How to call REST API using CURL & SAML TOKEN Auth

My Url is Like: https:///TestRESTServices/objects/test-folder JSON data that I want to pass is: { "name":"test-1", "parent-uuid":"126" } test-1 is the folder name which i want to create. When i invoke this url with the data in…
Vaibhav Jain
  • 3,729
  • 3
  • 25
  • 42