Questions tagged [poster]

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

85 questions
1
vote
2 answers

No response was received. Either the request could not be opened or the request timed out ( for POST request )

I have a request which works fine when i hit the service using POSTMAN and POSTER plugins but when i try to hit load-balancing url i received ERROR. ERROR in POSTER ( plugin ): ERROR in POSTMAN ( plugin ): Part of code: @Path( "/" ) public class…
Mad-D
  • 4,479
  • 18
  • 52
  • 93
1
vote
2 answers

Problems using multipart_encode (poster library)

I am trying to upload a file using multipart_encode to realize the MIME process. However, I met the following error AttributeError: multipart_yielder instance has no attribute '__len__'. Below are is my approach, I really appreciate if anyone can…
TTT
  • 4,354
  • 13
  • 73
  • 123
1
vote
0 answers

add poster to audio in mediaelement.js

I want to add poster to mp3/audio in mediaelement.js , now im using this code but it has problem with firefox [mejsvideo mp4="http://example.com/test.mp3" poster="http://example.com/test.jpg"preload="true" autoplay="true" width="620" height="300"]
Ðr Rad
  • 13
  • 3
0
votes
0 answers

Javascript, changing the attribute with the of an image

I have a main video player displaying the poster of the video as well as multiple thumbnails below the main video. Right now I've got it to work where when you click on a thumbnail, the video in the main video player is replaced with the video…
0
votes
0 answers

Javascript - clicking a thumbnail to replace a video src and the poster url

So far I've got everything down to where I can change which video is in the player depending on which thumbnail is click. However, I'm trying to figure out how to utilize the same code to also replace the poster url with the url associated with that…
0
votes
0 answers

How can I detect if 'poster' is loaded instead of 'video'?

I have a problem with detect of showing poster. On macbook and iphone the video tag isn't working so well, so I decided to use the poster tag instead. I have a small jQuery code to change poster dynamically with some fadeout and in effect. But I…
0
votes
1 answer

Program abruptly stops and throws URLERROR

from poster.encode import multipart_encode from poster.streaminghttp import register_openers def picscrazy(str,int): register_openers() datagen, headers = multipart_encode({"imagefile[]": open(str, "rb")}) …
Jonah
  • 2,097
  • 4
  • 20
  • 22
0
votes
0 answers

replace video tag poster image with div element

Video tags support a poster attribute, which if not set, is the first frame of the video. In my case, a black screen. I don't want a poster image, but instead a div that looks like a loading spinner... is this possible? also autoplay would be…
lache
  • 608
  • 2
  • 12
  • 29
0
votes
0 answers

Is there a way to add a plot(s) to a poster in R

This is quite a vague and general question. Essentially I have a poster template in PDF or PNG format and there are designated sections on the poster where I will need to insert bar-charts. I have produced the charts using ggplot2 but is there a way…
ts22
  • 9
  • 1
0
votes
1 answer

How change written part color in LaTeX block on a tikzposter?

How can I set the written part inside the "block" as white color? \documentclass{tikzposter} \usepackage[paperwidth=1080px,paperheight=1980px]{geometry} \usepackage{xcolor} %\usetheme{Board} \begin{document} % See Section…
0
votes
1 answer

What is the difference between Poster post method and jquery post method?

I'm trying to do a post from a mvc3 view and it's not working correctly with my controller, but the same json works fine when I post from Poster Here is the jquery code var lineas = $("#articulosIngresadosTable").getRowData(); var…
Rodrigo Juarez
  • 1,745
  • 1
  • 23
  • 38
0
votes
1 answer

toggle videos in hero

I am trying to have 2 different toggle videos as the hero. I will call them Video A and Video B. I want video A to autoplay on the homepage. I have a play button on video A. I want two things to happen when the play button is clicked: hide Video…
N.Behrens
  • 23
  • 4
0
votes
1 answer

Vue / Nuxt - How to display a "poster" in a video element

I have a video to display in my Nuxt app. When pointing the videos poster attribute to an image, it doesn't display. As a test, i created an image element pointing towards the same location and the image displays. Question How can I display the…
Que
  • 957
  • 2
  • 14
  • 35
0
votes
1 answer

Reset html video to start

I have an html video which I need to start from the beginning. I have used video.currentTime = 0; That resets the video to starting place but I have also set poster image for the video. If the video is completely played then poster image shows on…
dev_sk
  • 85
  • 1
  • 9
0
votes
1 answer

Python multipart file uploading with poster - set the file's name that is being sent

I try uploading a file using the following code (which has been summarized). On the server-side, when I check the name of the received file, I see that it is set to the file_path parameter. Currently, the poster library takes the file_path parameter…