Questions tagged [video-conversion]

Video conversion deals mostly with converting videos from one codec to a second one or to resize the image size. It is also possible to change the container format as well.

Videos must be converted for several reasons from one codec to a second one or need to be resized to fit on smaller screens. In some cases devices can record or play just a view formats. With video conversion videos can been converted to be playable on a other device.

179 questions
0
votes
1 answer

Video conversion from .TS to MP4 produces an error

I am am trying to convert video from my SET Top Box recording. Each recording has 3 parts with extension .TS and .idx and .rap. I tried to upload the .ts file for all online converters but it say error (not specifying what error) and conversion to…
vinay agarwal
  • 53
  • 1
  • 2
  • 8
0
votes
1 answer

Conversion of .iva to .mp4 using ffmpeg

The video which I am trying to convert is uploaded at http://www.filedropper.com/video_17 I am using the following command to convert the file: ffmpeg -i archive.iva -c copy -map 0 output.mp4 -vsync 2 -y; The file should be around 1 min in length…
0
votes
1 answer

Ffmpeg generated movie (png -> mp4) has no video

I have a whole bunch of png's which I would like to convert into a mp4 video. I am using the following command to stich them together: ffmpeg -i _2016-04-20_14-51-00-500_%06d.png -pix_fmt yuv420p movie.mp4 I am getting a file, which has a size so…
HoloLady
  • 1,041
  • 1
  • 12
  • 28
0
votes
1 answer

From URL of Video GetThumbnail Using Nreco

I working on a sharepoint project in which i have to upload the videos in the document library as videoset. after creating a video set i have have to upload the video and fetch the thumbnail from the video and upload it. video is uploaded…
0
votes
0 answers

How to convert any video type to .mp4 using phpvideotoolkit

I am following this http://www.phpclasses.org/package/3747-PHP-Manipulate-and-convert-videos-with-ffmpeg-program.html link to convert any video type to .mp4 i tried to run various example files but they are throwing error message. I can't get how to…
user3653474
  • 3,393
  • 6
  • 49
  • 135
0
votes
1 answer

DVD to FLV File Conversion Using PHP -- Is this Doable? Insane? What are alternatives?

So I have users who have told me they are interested in being able to upload videos to my site straight from DVD's (for which they own the rights, of course). I've never encountered this before, but I would imagine this would take an enormous…
munch
  • 6,311
  • 4
  • 23
  • 27
0
votes
0 answers

ffmpeg coverting mov to mp4 gives no output

I have the following code: var ffmpeg = require('fluent-ffmpeg'); var proc = new ffmpeg({source: media.file.path, nolog: false}) .withVideoCodec('libx264') .withVideoBitrate(800) …
Marc Rasmussen
  • 19,771
  • 79
  • 203
  • 364
0
votes
1 answer

Apply image operations on live video (videoinput) in MATLAB

I am trying to do the operations like rgb2gray(img) on a live video read using vid=videoinput() like rgb2gray(vid). It is a type mismatch but I am stuck here. Should I convert the vid to any image format and store it in a matrix or is there any…
0
votes
0 answers

ffmpeg .264 to .avi

I try to convert .264 file to .avi To do it I use ffmpeg: ffmpeg -f h264 -i source.264 -c:v libx264 -an dest.avi It works, but has worse quality that source file. How can I fix it?
V. Panchenko
  • 774
  • 1
  • 10
  • 32
0
votes
1 answer

ffmpeg command failed

I am experimenting FFMPEG command to convert any video format to mp4. Server admin execute the below command created by me and show me the errors: ffmpeg -ss 00:03:00 -i /video/1444107854.mov -c:v libx264 /video/player/1444107854.mp4 -vframes 1…
Asad kamran
  • 440
  • 10
  • 21
0
votes
0 answers

FFmpeg video conversion wont play in my browser

I am trying no matter what format of video my clients upload to convert them into three different formats: var videoExtensions = ['mp4', 'webm', 'ogg']; var ffmpeg = require('fluent-ffmpeg'); videoExtensions.forEach(function (extension) { …
Marc Rasmussen
  • 19,771
  • 79
  • 203
  • 364
0
votes
0 answers

ffmpeg video converting issue

I am just trying to upload and converting video using ffmpeg library its working on my local machine its working fine but as upload it on my server it didn't work. Can any one tell me where is fault here is my code $ffmpeg =…
Abdul Basit
  • 161
  • 1
  • 1
  • 11
0
votes
1 answer

Multifunctional videochat

I'm building a video chat website and i got stuck on the video steaming. The Local video is working but i can't get the peer to peer connection between them. I've checked out some examples on the web but those are not where i'm looking for. because…
0
votes
1 answer

Convert a DCR video file

I have a DCR (file has a .dcr extension) video file coming from a video surveillance device ( I don't know the make and model of the recorder ) I'm unable to read it with VLC, Media Player, and it won't open in Virtual Dub or can't be converted with…
FMaz008
  • 11,161
  • 19
  • 68
  • 100
0
votes
1 answer

Invalid pixel aspect ratio in ffmpeg

I want to scale a video to a certain size using ffmpeg, but I get the following error: ffmpeg -i Ad_939.avi -vf scale=1000:64 test_ad.avi ffmpeg version 2.3.3 Copyright (c) 2000-2014 the FFmpeg developers built on Sep 26 2014 10:31:06 with…
dudeofea
  • 330
  • 4
  • 21