The video-conversion tag covers software & formats related to converting videos from one format or container to the other.
0
votes
1answer
39 views
Video processing to support different web players and qualities
I am trying to accomplish something similar to YouTube player. The biggest issue I'm facing now is how should I process user uploaded video files.
For example, since I want to switch between 240p, ...
1
vote
0answers
101 views
Cutting at key frames with H.264 and FFmpeg
I have videos generated with Flash Media Encoder and the VP6 codec.
I'm able to edit these videos manipulating their tags with .NET, but I can only cut between key frames. I want a more precise ...
0
votes
0answers
12 views
Convert DVR-MS with on-fly changing aspect ratio to any normal format with 4/3 ratio
My set top box recorded some TV shows in a dvr-ms and mpeg format, both of which have aspect ratios changing on the fly according to the change of aspect ratio of the currently broadcasted/recorded ...
1
vote
0answers
14 views
No video is written in for some part of video as the segmentation from FFmpeg
I am segmenting a 20 minutes long video to hundreds of small clips . The command is like
ffmpeg\\ffmpeg -i nx_1.avi -ss 399.37 -t 1 ka1_2.avi
The ffmpeg is in a subfolder.
It works very well for ...
0
votes
2answers
60 views
Ripping DVD's for iTunes and 5.1 sound
I have spent the past few days trying to find a solution here. I want all my DVD's on my pc so as my DVD's can stay new and scratch free. I started out with the trial of DVDfab. Things seemed to be ...
0
votes
0answers
30 views
Allow multiple instances of Handbrake
Is it possible to run multiple instances of Handbrake on Windows 7 (video encoding application)?
I have a 32 thread system and I think it would be more efficient to encode 2-3 movies at the same ...
1
vote
1answer
26 views
How to Remove interframe errors from webm?
I have webm videos that output the error:
Discarding interframe without a prior keyframe!
When played in VLC. How can I recode/fix the files in linux to solve this error.
There is a way to check ...
0
votes
1answer
92 views
Import MKV, AVI, etc. video files to iTunes 11 without conversion
Recently I had the idea that it would be good to organize all of my movies and TV shows into one central application (kind of an inventory), and from the research I have conducted, I was able to ...
-2
votes
2answers
110 views
How can I convert .SCR to .AVI
I play a game from which I'm trying to extract videos. I extracted the '.PAK' files and the movies are in '.SCR' format. I have no idea how to convert them to '.AVI' or any playable file. Does anyone ...
0
votes
0answers
43 views
ffmpeg conversion speed difference between windows and linux
Hardware features: 2xe5645 (6core) = 24 cores
Linux Centos(threads 0): fps= 13
Windows Server 2008(threads 0): fps=50~70
Why slow in linux? I'm with the installation ffmpeginstaller.
Ffmpeg ...
3
votes
2answers
643 views
Converting avi encoded with IMM5 codec
As part of a legal matter, I received a copy of a security video encoded using what appears to be an 'IMM5' codec, apparently often used by police. I also received a copy of 'BackupPlayer', which can ...
0
votes
0answers
15 views
VideoLAN settings for iPhone/iPad [duplicate]
What are VideoLAN settings to convert a DVD for playback on iPhone/iPad?
1
vote
1answer
54 views
FFMPEG keeps converting without stopping
I have a web application that converts videos and splits them using FFMPEG. It was working fine until recently I noticed that the videos were taking much more time converting than they are supposed ...
3
votes
1answer
111 views
ffmpeg - How to copy|extract encoding settings from existing media file?
I wished to be able do this multiple times now so I ask.
If I have an existing video or audio file, ffmpeg, mplayer and other media players can detect at least some of it's "propreties" like ...
1
vote
1answer
92 views
Avconv generating HUGE metadata over 90mb for 718mb video file
This is the metadata file, extracted with Atom box studio:
https://www.dropbox.com/s/tok76wospngf854/moov
Video was converted with avconv, info:
/usr/local/bin/avconv -version
avconv version 9.4, ...
0
votes
2answers
88 views
Cores or Graphics card more important for encoding video?
I have recently been doing a bit of movie editing and encoding. I am using my desktop for this which has a quad-core 2.8GHz AMD CPU, a 240GB SSD and a 500GB SATA Disk, as well as 8GB of RAM and a ...
1
vote
0answers
32 views
FFmpeg audio disappears in the middle of the video
I've been trying to convert a sequence of PNG files to a video with some sound (mp3 or wav). It pretty much works with different codecs and quality settings for both video and audio.But the audio ...
2
votes
0answers
153 views
Fixing ffmpeg latency accrued over time
I have ffmpeg/ffserver running in the following setup:
10.1.2.2 captures from video capture cards (16 channels) and streams them to an ffserver as mpeg1video
10.1.1.1/10.1.2.1 (two NICs) hosts the ...
1
vote
0answers
62 views
Handbrake output directory to include Title folder
I am using handbrake to convert my DVD's to .MP4 and have set the default output path
Tools -> Options -> Output Files
In here there is Default Path: which I have pointing to my Movies folder ...
0
votes
1answer
90 views
Using FFmpeg filter without video conversion
Does anyone have an idea of how I can put an image mask over the video without changing the audio & video codec?
I'm making different media files for testing purposes and I want control over my ...
0
votes
0answers
104 views
Linux - Increase volume for HD mp4 files
I am converting videos using ffmpeg.
Videos are 1080p at first and I convert 1080p to h264 720p and 360p. Also if videos are 360p I`m converting them to h264 360p.
The problem is when converting ...
0
votes
0answers
28 views
Videos downloaded from video hostings are seeked too slowly
Videos downloaded from youtube and other video hostings are seeked too slowly in video player. How to add an index to them under Windows (flv and mp4 files)? A bat file that makes anything needed ...
0
votes
1answer
133 views
RAD Game Tools is unable to open an MP4 file
I downloaded RAD Game Tools to convert an MP4 file to BIK, but I get the following error message:
This happens with not just the file I want to convert, but with all my video files. I have no idea ...
3
votes
0answers
186 views
Accurate and reliable movie editing with avconv
I'm trying to perform movie editing in an automated way with avconv. It is made in two steps:
extract some parts of an input movie:
concatenate the parts to form an output movie:
I tried some ...
1
vote
1answer
159 views
Reuse transcoding outputs to generate multiple files with AvConv
I am trying to find information about how to transcode a file into multiple outputs in one shot, but I don't seem to be able to. Most of the results I find describe the opposite: merging multiple ...
3
votes
3answers
378 views
ffplay - how to play together separate video and audio files
So I am able to transcode separate video and audio files into one movie file, like so:
ffmpeg -ss 0 -lowres 0 -r 24 -i dcp/picture.mxf -vf "xyz2rgb" -i mov/sound.wav -ac 2 -ab 256k -vb 3000k -t 10 -y ...
0
votes
0answers
81 views
HandBrakeCLI Convert with Subtitle
I am trying to convert a video mkv to m4a on MacOS with HandBrakeGUI
But after conversion , the subtitle of original video seem to be cut off .
After then , I convert with HandBrakeCLI command
-Z ...
1
vote
1answer
166 views
How to fetch frames from a video without losing some of them?
I created an AVI file from 30 PNG images, 15 frames/second:
ffmpeg -i %02d.png -r 15 video.avi
But when I tried to get the images back from the AVI:
ffmpeg -i src.avi %02d.png
I only got 19 ...
1
vote
1answer
50 views
How to create a multiple audio MKV from an AVI and a MP3 using FFMPEG
I have a AVI movie and a second audio in a MP3 file and want to create a third file in MKV with the original audio from AVI and a secondary audio from the MP3. Is it possible to do with FFMPEG? I've ...
0
votes
1answer
75 views
Best solution for HDMI (or DVI) to RCA (or peritel) [closed]
I'm looking for some inexpensive but not fake / poor solution to display my future "Xtreamer Ultra" on an old tv (which only has RCA/peritel connectivity)...
Here is the product's profile ...
1
vote
2answers
77 views
iMac won't recognise .MTS videos on my hard drive, how can I play them?
We just purchased an iMac yesterday to view our travel videos. The thing is, all the videos we have stored on our external Hard Drive are in the .MTS file format (AVCHD). The thing is, the Mac or ...
1
vote
0answers
122 views
what is missing in this ffmpeg statement to create a working video conversion
I want to convert videos to a format that my camera reads with ffmpeg.
I have some sample videos from the camera and analyzed them with
mplayer -frames 0 -identify DSCN0001.mov
and with
ffprobe ...
-1
votes
1answer
164 views
How to convert video to GIF using FFmpeg
I installed FFmpeg on my XAMPP for converting stream of video to GIF images.
I used the below code but it doesn't work.
ffmpeg -ss 00:00:05.0 -t 00:00:10.0 -i input.wmv -acodec copy -vcodec copy ...
1
vote
0answers
77 views
FFmpeg failed to transcode
I have successfully installed Video Module with FFmpeg/avconv in local machine. My current version of FFmpeg is "0.6.0-svn".
I have downloaded the video preset package from drupal.org for FFMPEG and ...
2
votes
2answers
953 views
Resizing videos with ffmpeg/avconv to fit into static sized player
I have a html 5 video player which is 700px wide, 400px high. I'm trying to use avconv to use ffmpeg to resize (while retaining the aspect ratio) and making sure it fits into my player.
Input can be ...
0
votes
1answer
511 views
How to convert MP4 to SWF
Can someone give me the command line parameters for FFmpeg to convert MP4 video to an Adobe Flash SWF file?
0
votes
3answers
75 views
Multithreaded Video Converter for Mac
Is there an app for Mac that can distribute a single video encoding job to several thread to utilize the full potential of the system?
I used an application called iFlicks to do video encoding, and ...
0
votes
2answers
149 views
Batch video conversion - With subtitle burn-in
I want to convert a folder of .mkv files for online use.
By this, I mean burning in the subtitles and if possible, adding two different languages (so Youtube will let the users choose.)
Handbrake ...
0
votes
1answer
55 views
500 MB Avi video from CD lagging/glitching when reproduced
I created an extra cd with Nero Burning that contains both audio tracks (I can hear them correctly) and a .avi presentation (pretty big one, 540 MB on a 700 MB cd).
The audio is fine but the problem ...
0
votes
1answer
696 views
How to convert/transmux ismv to mp4 or wmv?
How can I convert/transmux Smooth Streaming ismv files to mp4 or wmv?
I've often read about mp4split but it doesn't seem to be freely available any more.
2
votes
0answers
142 views
Ffmpeg sync error, first image showing really fast
I want to converting my images with mp3 to videos... but first slide is showing up really fast.
I want to each slide duration 5-7 seconds or so
RAW material
MP3 Files
My list Images
FFmpeg ...
1
vote
2answers
270 views
Convert video from .mp4 to .ogg
I am using ffmpeg version 0.11.1 Copyright (c) 2000-2012 the FFmpeg developers . I need to convert a file .mp4, to .ogg format. I am on Mac OS X, and I have tried this so far:
ffmpeg -i ...
0
votes
2answers
225 views
What video codec puts the CPU/GPU under the least possible load while decoding?
I'm interested in transcoding a video I own for use as a screensaver; size isn't an issue, but I want to stress the processor and video card as little as possible as far as video decoding goes.
What ...
0
votes
1answer
139 views
blocked SWF behind a proxy [closed]
I am behind a proxy that blocks swf and mp4. webm and flv are not blocked though..
I access the videos by accessing a certain URL, I think a way to solve this problem is to pass this url to some ...
2
votes
2answers
829 views
How can I get my MKV files to play on a PS3?
I just finished building a video server for PS3 and I am working on converting all of my DVD and Blu-ray to my HDD.
For DVD, MP4 files work great, but the PS3 can't play MKV which is what I use for ...
1
vote
1answer
125 views
Reduce MOV file size
I have a folder full of MOV videos taken by my DMC-FX10. The problem is that the occupy too much space, and I am wondering if it is possible to compress them without losing quality?
All videos have a ...
2
votes
1answer
3k views
Convert AVI to MP4 keeping the same quality
I want to compress an AVI file to MP4 using an h.264 codec. I could not get the same quality. How can I compress it?
Original Video:
Original Video Screen:
FFmpeg console output (ffmpeg -i ...
0
votes
0answers
58 views
How do I convert webm to mp4 for MacOSX?
I'm on MacOSX Lion and would like a method for converting webm to mp4 (or another iTunes compatible format). ffmpeg seems like a possibility but the documentation is a bit obtuse for me; step-by-step ...
-2
votes
1answer
450 views
How to download a Youtube video from command line? [duplicate]
Possible Duplicate:
Download YouTube via command line
How to download a Youtube video from command line? Mac OS X and/or Ubuntu Linux. Optionally, i'd like to save it in .avi or .mkv ...
2
votes
0answers
208 views
Prepend AAC file to MP4 causing audio to get out of sync
I have an application that handles the normalizing and combining of audio and video files from many different sources.
All incoming audio is normalized as follows:
ffmpeg.exe -i ...