![]() |
splitting videos with ffmpeg?
anyone do this? not sure if this is right
set end time mencoder -endpos 02:00:00 -ovc copy -oac copy black_shock_cock_full_video.mpg -o first_half.mpg set beginning mencoder -ss 01:00:00 -oac copy -ovc copy black_shock_cock_full_video.mpg -o second_half.mpg then join them mencoder -oac copy -ovc copy -o "new_black_shock_cock.mpg" "first_half.mpg" "second_half.mpg" |
I dunno, I just had a script developed to split FLV files, splits em based on meta data I think, so it works the same way as a typical WMV/AVI splitter except it's on my server.
Would like to split WMV's on my server, can FFMpeg split WMV's on the server via a little server script? |
Quote:
i should be still on your aim |
using FFMPEG you can split mpgs files like this:
Code:
ffmpeg -y -i video.mpg -vcodec copy -acodec copy -ss 00:00:00 -t 00:00:15 video_part1.mpg -y forces an overwrite -i video.mpg is the input file -vcodec copy, reuses existing video codecs -acodec copy, reuses existing audio codecs -ss 00:00:00, is the start time -t 00:00:15, is the end time (15 seconds) video_part1.mpg, is the output file If you want to convert mpg to flv then split you can do: Code:
ffmpeg -y -i video.mpg video.flv; I'd like to know if anyone here has a solution or can share their wmv conversion methods... |
this is something that i have been wanting to know for awhile too. bummmmp.
|
Quote:
can you please hit me up? i been trying to reach you for over 2 weeks now, i cant update my site, jfc is broken, i tried aim, email, nothing. thanks. |
All times are GMT -7. The time now is 08:50 PM. |
Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123