[FFmpeg-user] task/job offer

2015-07-31 Thread vedran
Hello,

few days ago i tried to get somebody to prepare some ffmpeg commands for me
with detail requirements what i need. Unfortunately other than few
comments, nobody appeared.

I'm prepared to pay 100$ for following, if you think it is not enough, say
and explain why. If the task is completed properly, we could have
continuous contract

If you are not interested to work or help, don't mess the thread.


1. I would give you about 30 videos as a sample for input, various formats,
usually from mobile phones and home cameras

2. I need JUST command/s which would:
 - Reduce resolution if the source video is greater than 1024px width.
 - Keep the format proportional
 - Keep proper audio quality of any source video
 - Preserve as good as possible quality/bitrate ratio of the video.
 - Video to be playable in html5 player (videojs) on iphone 3 and above (so
that the bitrate is not more than iphone can play or that it is not higher
resolution than iphone can handle)
 - have two outputs, one with flv and another with mp4 (no ogg or any other
formats)

Environment is Debian squeeze with packages from multimedia repository. If
recompiling is needed, i would appreciate just basic guidelines. Nobody
needs to do that for me.
I don't need any script, batch file or so, just simple commands.


And that is about it.

IF ANY additional codecs or something else needs to installed, everything
is possible.

Please just contact me.

Greetings
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] Scale down if resolution is greater than given?

2015-07-29 Thread vedran
sorry not that one, this one

ffmpeg -i video.mov -filter_complex
scale=iw*min(1\,min(640/iw\,360/ih)):-1  -vb 600k -ac 2 -ab 96k -ar 44100
-f mp4 out.mp4

On Wed, Jul 29, 2015 at 5:33 PM, Moritz Barsnick barsn...@gmx.net wrote:

 On Wed, Jul 29, 2015 at 17:27:47 +0200, vedran wrote:
  Anyway, thank you all guys. I did it like this, although i don't
 understand
  well what this does
 
  ffmpeg -i myvideo001.3gp -vf scale=1024:-1 -vb 600k -ac 2 -ab 96k -ar
 44100
  -f mp4 myvideo001out.mp4

 Oh my, what's there not to understand? ;-)

 It scales your input video to a width of 1024 (regardless of whether
 the input is narrower or wider), while maintaining the aspect ratio.

 Moritz
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org
 http://ffmpeg.org/mailman/listinfo/ffmpeg-user

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] Scale down if resolution is greater than given?

2015-07-29 Thread vedran
Anyway, thank you all guys. I did it like this, although i don't understand
well what this does

ffmpeg -i myvideo001.3gp -vf scale=1024:-1 -vb 600k -ac 2 -ab 96k -ar 44100
-f mp4 myvideo001out.mp4

On Wed, Jul 29, 2015 at 3:46 PM, Moritz Barsnick barsn...@gmx.net wrote:

 Hi Mahesh,

 On Wed, Jul 29, 2015 at 18:08:56 +0530, Mahesh Patade wrote:
  Check this. I have written this logic in my script.

 Wow. If you're going to use scripting, why not use it to make life (and
 readability) easier instead of harder.

 For instance, just for my(!) readability, I would change this:

  transcode() {
  # 128 Bitrate
  MULBIT128=$(echo  ${1}|sed 's#x#*#g' |bc)
  if [ ${REOLVIDEO} -gt ${MULBIT128} ]; then
  if ! ffmpeg -threads ${CPUNO} -ss
  ${START_TIME} -t ${LENGTH} -i ${FILENAME} -s $1 -movflags rtphint
  -b:v 128k -vcodec libx264 -acodec libfaac -ab 20k -ar 44100 -y
  ${OUTPATH}${FILEWOEXT}.part${CURRENT_NODE}-128000.ts 
  ${OUTPATH}${FILEWOEXT}.part${CURRENT_NODE}-128000.log.txt 21; then
  ERROR=1
  ERRORLOG=${ERRORLOG}Failed: 128 Bitrate
 Conversion
  fi
  else
  if ! ffmpeg -threads ${CPUNO} -ss
  ${START_TIME} -t ${LENGTH} -i ${FILENAME} -movflags rtphint -b:v
  128k -vcodec libx264 -acodec libfaac -ab 20k -ar 44100 -y
  ${OUTPATH}${FILEWOEXT}.part${CURRENT_NODE}-128000.ts 
  ${OUTPATH}${FILEWOEXT}.part${CURRENT_NODE}-128000.log.txt 21; then
  ERROR=1
  ERRORLOG=${ERRORLOG}Failed: 128 Bitrate
 Conversion
  fi
  fi

 To this:
  transcode() {
  # 128 Bitrate
  MULBIT128=$(echo  ${1}|sed 's#x#*#g' |bc)
  if [ ${REOLVIDEO} -gt ${MULBIT128} ]; then
SCALE=-s $1
  else
SCALE=
  fi
  if ! ffmpeg -threads ${CPUNO} -ss
  ${START_TIME} -t ${LENGTH} -i ${FILENAME} $SCALE -movflags rtphint
  -b:v 128k -vcodec libx264 -acodec libfaac -ab 20k -ar 44100 -y
  ${OUTPATH}${FILEWOEXT}.part${CURRENT_NODE}-128000.ts 
  ${OUTPATH}${FILEWOEXT}.part${CURRENT_NODE}-128000.log.txt 21; then
ERROR=1
ERRORLOG=${ERRORLOG}Failed: 128 Bitrate
 Conversion
  fi

 This makes the difference between the if and the else clause much
 clearer!

 MULBIT128, MULBIT256, MULBIT512 could also be differentiated by simple
 variables/function arguments, and one very common ffmpeg command line.
 That also makes modifying other arguments to ffmpeg much easier. You
 don't have to do it X times. That's the whole point of scripting! SCNR.

  eval $(ffprobe -v error -of flat=s=_ -select_streams
  v:0 -show_entries stream=height,width ${FILENAME})
  SIZE=${streams_stream_0_width}x${streams_stream_0_height}
 
  REOLVIDEO=$(echo ${SIZE} |sed 's#x#*#g' | bc)
  RESOLUTION=$(echo scale=1;
  $streams_stream_0_width/$streams_stream_0_height | bc)

 So REOLVIDEO is the number of pixels, RESOLUTION is what we usually
 call the aspect ratio? I wouldn't use that to choose the target sizes,
 but just maintain the aspect ratio. But that's your call.

 I would use this filter now (we can ignore Mahesh's multi-bitrates for
 this question):

 $ ffmpeg [...] -vf
 scale=w=if(gt(iw*ih\,1280*720)\,iw*min(1280/iw\,1024/ih)\,iw):h=-2 [...]

 This scales any video with more pixels than 1280*720 inside of a box of
 1280*720. An improvement would be to scale it to the correct number of
 pixels. More math. ;-)

 Moritz
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org
 http://ffmpeg.org/mailman/listinfo/ffmpeg-user

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


[FFmpeg-user] Scale down if resolution is greater than given?

2015-07-28 Thread vedran
I'm looking for simple bash script which scales down video only if it has
greater resolution than given.


The problem is also with vertical videos. So i need to check width and
height.


Please, if you have got some script that does that, send it to me.

greetings

p.s.
So far i'm very confused that all those basic steps ffmpeg does through
numerous bash tricks.
It is not possible to get video height/width or length easily but i often
would have to use awk and so many more applications to achieve that.
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] Help to convert some formats to web suitable. I sould pay for help

2015-07-25 Thread vedran
if it helps me i would send you something for sure.. however just give me
those instructions..

i hope you understand what i actually need..

for me it would be great and enough if i just had 5-6 ffmpeg commands that
do this and that is all.. i have another script that would handle when
where and how that starts

On Sat, Jul 25, 2015 at 6:41 PM, Mahesh Patade patademah...@gmail.com
wrote:

 You do not have to pay a single penny. JUST follow instructions i have
 given in my blog.

 Thanks Mahesh
 On Jul 25, 2015 10:05 PM, vedran valaj...@gmail.com wrote:

  Well if solves my problems, I would pay.
 
  What I needed is what I asked. ..
 
 
  Please give me some more info.
 
  How sophisticated is your code, how can I use it, how much would i have
 to
  pay.
  On Jul 25, 2015 3:00 PM, Another Sillyname 
 anothersn...@googlemail.com
  wrote:
 
   If you're willing to do some work I have a script I use that does most
   of what you want, happy to let you have it and you could use it as the
   'base' for what you're trying to do.
  
   The problem with paying for something like this is frankly you
   probably wouldn't want to pay a sensible commercial rate so the
   numbers wouldn't make sense.
  
  
  
  
  
   On 25 July 2015 at 13:40, vedran valaj...@gmail.com wrote:
i'm not into ffmpeg so i feel that i would have to spend A LOT OF
 TIME
tuning this.. and i would rather pay for somebody writing me commands
   which
i would put into a scrips.. also it would be great to have multiple
   output
once it is created...
   
i saw it here:
   https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs
   
   
   
On Sat, Jul 25, 2015 at 2:38 PM, vedran valaj...@gmail.com wrote:
   
debian with multimedia repos
   
On Sat, Jul 25, 2015 at 2:37 PM, Another Sillyname 
anothersn...@googlemail.com wrote:
   
would help if you stated windows or 'nix
   
On 25 July 2015 at 13:32, vedran valaj...@gmail.com wrote:
 Hello guys,

 i need somebody to write me commands for converting videos i'm
   prepared
to
 pay that. it should be able to process feew different formats and
convert
 videos to a few most popular formats.. nothing which would not
 work
   out
of
 box in ffmpeg.. and maybe some tweaking about processor usage and
quality
 but that second part is less important. Anyone interested?


 Please send me how much would that cost aprox. I need to convert
   *most
of*
 these:

 mov (QuickTime Movie)
 mp4 (MPEG-4 Video)
 mpe (MPEG Video)
 mpeg (MPEG Video)
 mpeg4 (MPEG-4 Video)
 3g2 (Mobile Video)
 3gp (Mobile Video)
 3gpp (Mobile Video)
 asf (Windows Media Video)
 avi (AVI Video)



 And convert to *most of* these:


- HTML5, Flash: MP4/H.264, High profile
- HTML5: WebM
- HTML5: Ogg
- Mobile: MP4/H.264, Baseline profile, 480x360, for wide
compatibility
- Mobile: MP4/H.264, Main profile, 1280x720, for newer iOS
  devices
(iPhone 4, iPad, Apple TV)
- Mobile: 3GP/MPEG4, 320x240 and/or 177x144, for
  non-smartphones*




 Important is to support being played in chrome, firefox, ie9 and
   iphone
and
 android.. .. at least, most of those with importance of being
 able
  to
play
 on iphones


 p.s. i use videojs for video play.



 Greetings
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org
 http://ffmpeg.org/mailman/listinfo/ffmpeg-user
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user
   
   
   
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user
   ___
   ffmpeg-user mailing list
   ffmpeg-user@ffmpeg.org
   http://ffmpeg.org/mailman/listinfo/ffmpeg-user
  
  ___
  ffmpeg-user mailing list
  ffmpeg-user@ffmpeg.org
  http://ffmpeg.org/mailman/listinfo/ffmpeg-user
 
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org
 http://ffmpeg.org/mailman/listinfo/ffmpeg-user

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] Help to convert some formats to web suitable. I sould pay for help

2015-07-25 Thread vedran
aha, @Mahesh Patade i'm soory i looked this, s much more than i need..
i need solution for single server, locally .. doing one video at a time..

On Sat, Jul 25, 2015 at 6:46 PM, vedran valaj...@gmail.com wrote:

 if it helps me i would send you something for sure.. however just give me
 those instructions..

 i hope you understand what i actually need..

 for me it would be great and enough if i just had 5-6 ffmpeg commands that
 do this and that is all.. i have another script that would handle when
 where and how that starts

 On Sat, Jul 25, 2015 at 6:41 PM, Mahesh Patade patademah...@gmail.com
 wrote:

 You do not have to pay a single penny. JUST follow instructions i have
 given in my blog.

 Thanks Mahesh
 On Jul 25, 2015 10:05 PM, vedran valaj...@gmail.com wrote:

  Well if solves my problems, I would pay.
 
  What I needed is what I asked. ..
 
 
  Please give me some more info.
 
  How sophisticated is your code, how can I use it, how much would i have
 to
  pay.
  On Jul 25, 2015 3:00 PM, Another Sillyname 
 anothersn...@googlemail.com
  wrote:
 
   If you're willing to do some work I have a script I use that does most
   of what you want, happy to let you have it and you could use it as the
   'base' for what you're trying to do.
  
   The problem with paying for something like this is frankly you
   probably wouldn't want to pay a sensible commercial rate so the
   numbers wouldn't make sense.
  
  
  
  
  
   On 25 July 2015 at 13:40, vedran valaj...@gmail.com wrote:
i'm not into ffmpeg so i feel that i would have to spend A LOT OF
 TIME
tuning this.. and i would rather pay for somebody writing me
 commands
   which
i would put into a scrips.. also it would be great to have multiple
   output
once it is created...
   
i saw it here:
   https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs
   
   
   
On Sat, Jul 25, 2015 at 2:38 PM, vedran valaj...@gmail.com wrote:
   
debian with multimedia repos
   
On Sat, Jul 25, 2015 at 2:37 PM, Another Sillyname 
anothersn...@googlemail.com wrote:
   
would help if you stated windows or 'nix
   
On 25 July 2015 at 13:32, vedran valaj...@gmail.com wrote:
 Hello guys,

 i need somebody to write me commands for converting videos i'm
   prepared
to
 pay that. it should be able to process feew different formats
 and
convert
 videos to a few most popular formats.. nothing which would not
 work
   out
of
 box in ffmpeg.. and maybe some tweaking about processor usage
 and
quality
 but that second part is less important. Anyone interested?


 Please send me how much would that cost aprox. I need to convert
   *most
of*
 these:

 mov (QuickTime Movie)
 mp4 (MPEG-4 Video)
 mpe (MPEG Video)
 mpeg (MPEG Video)
 mpeg4 (MPEG-4 Video)
 3g2 (Mobile Video)
 3gp (Mobile Video)
 3gpp (Mobile Video)
 asf (Windows Media Video)
 avi (AVI Video)



 And convert to *most of* these:


- HTML5, Flash: MP4/H.264, High profile
- HTML5: WebM
- HTML5: Ogg
- Mobile: MP4/H.264, Baseline profile, 480x360, for wide
compatibility
- Mobile: MP4/H.264, Main profile, 1280x720, for newer iOS
  devices
(iPhone 4, iPad, Apple TV)
- Mobile: 3GP/MPEG4, 320x240 and/or 177x144, for
  non-smartphones*




 Important is to support being played in chrome, firefox, ie9 and
   iphone
and
 android.. .. at least, most of those with importance of being
 able
  to
play
 on iphones


 p.s. i use videojs for video play.



 Greetings
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org
 http://ffmpeg.org/mailman/listinfo/ffmpeg-user
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user
   
   
   
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user
   ___
   ffmpeg-user mailing list
   ffmpeg-user@ffmpeg.org
   http://ffmpeg.org/mailman/listinfo/ffmpeg-user
  
  ___
  ffmpeg-user mailing list
  ffmpeg-user@ffmpeg.org
  http://ffmpeg.org/mailman/listinfo/ffmpeg-user
 
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org
 http://ffmpeg.org/mailman/listinfo/ffmpeg-user



___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] Help to convert some formats to web suitable. I sould pay for help

2015-07-25 Thread vedran
man, this is good but I need very simple thing.

If somebody have time just to write me ffmpeg commands how to convert to
following formats and that is it.
On Jul 25, 2015 3:22 PM, Mahesh Patade patademah...@gmail.com wrote:

 Hey,

 Please check below url. I have written scripts to convert videos in multi
 bitrate format.

 http://patademahesh.github.io/Distributed-Video-Transcoding/

 Thanks
 Mahesh
 On Jul 25, 2015 6:30 PM, Another Sillyname anothersn...@googlemail.com
 wrote:

  If you're willing to do some work I have a script I use that does most
  of what you want, happy to let you have it and you could use it as the
  'base' for what you're trying to do.
 
  The problem with paying for something like this is frankly you
  probably wouldn't want to pay a sensible commercial rate so the
  numbers wouldn't make sense.
 
 
 
 
 
  On 25 July 2015 at 13:40, vedran valaj...@gmail.com wrote:
   i'm not into ffmpeg so i feel that i would have to spend A LOT OF TIME
   tuning this.. and i would rather pay for somebody writing me commands
  which
   i would put into a scrips.. also it would be great to have multiple
  output
   once it is created...
  
   i saw it here:
  https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs
  
  
  
   On Sat, Jul 25, 2015 at 2:38 PM, vedran valaj...@gmail.com wrote:
  
   debian with multimedia repos
  
   On Sat, Jul 25, 2015 at 2:37 PM, Another Sillyname 
   anothersn...@googlemail.com wrote:
  
   would help if you stated windows or 'nix
  
   On 25 July 2015 at 13:32, vedran valaj...@gmail.com wrote:
Hello guys,
   
i need somebody to write me commands for converting videos i'm
  prepared
   to
pay that. it should be able to process feew different formats and
   convert
videos to a few most popular formats.. nothing which would not work
  out
   of
box in ffmpeg.. and maybe some tweaking about processor usage and
   quality
but that second part is less important. Anyone interested?
   
   
Please send me how much would that cost aprox. I need to convert
  *most
   of*
these:
   
mov (QuickTime Movie)
mp4 (MPEG-4 Video)
mpe (MPEG Video)
mpeg (MPEG Video)
mpeg4 (MPEG-4 Video)
3g2 (Mobile Video)
3gp (Mobile Video)
3gpp (Mobile Video)
asf (Windows Media Video)
avi (AVI Video)
   
   
   
And convert to *most of* these:
   
   
   - HTML5, Flash: MP4/H.264, High profile
   - HTML5: WebM
   - HTML5: Ogg
   - Mobile: MP4/H.264, Baseline profile, 480x360, for wide
   compatibility
   - Mobile: MP4/H.264, Main profile, 1280x720, for newer iOS
 devices
   (iPhone 4, iPad, Apple TV)
   - Mobile: 3GP/MPEG4, 320x240 and/or 177x144, for
 non-smartphones*
   
   
   
   
Important is to support being played in chrome, firefox, ie9 and
  iphone
   and
android.. .. at least, most of those with importance of being able
 to
   play
on iphones
   
   
p.s. i use videojs for video play.
   
   
   
Greetings
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user
   ___
   ffmpeg-user mailing list
   ffmpeg-user@ffmpeg.org
   http://ffmpeg.org/mailman/listinfo/ffmpeg-user
  
  
  
   ___
   ffmpeg-user mailing list
   ffmpeg-user@ffmpeg.org
   http://ffmpeg.org/mailman/listinfo/ffmpeg-user
  ___
  ffmpeg-user mailing list
  ffmpeg-user@ffmpeg.org
  http://ffmpeg.org/mailman/listinfo/ffmpeg-user
 
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org
 http://ffmpeg.org/mailman/listinfo/ffmpeg-user

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] Help to convert some formats to web suitable. I sould pay for help

2015-07-25 Thread vedran
look, just say that you know to do it, now and fast, i'm really into that..
i have no doubts that we would agree on that..

i have no clue how much could that cost.. that is why i'm not offering..

on one hand it could be 20 minutes to tweak that and in another case, maybe
somebody would need a day..i don't have feeling about that



On Sat, Jul 25, 2015 at 7:56 PM, Another Sillyname 
anothersn...@googlemail.com wrote:

 OK, Let's cut to the chase..how much would you want to pay (and I
 ask this having stated earlier you won't be offering commercial
 rates).

 If you want it done I would suggest that you need to attract someone
 willing to do it for the money, therefore you need to tell them what
 you're willing to pay.

 Asking how much they want isn't going to work in my opinion.



 On 25 July 2015 at 17:49, vedran valaj...@gmail.com wrote:
  aha, @Mahesh Patade i'm soory i looked this, s much more than i
 need..
  i need solution for single server, locally .. doing one video at a time..
 
  On Sat, Jul 25, 2015 at 6:46 PM, vedran valaj...@gmail.com wrote:
 
  if it helps me i would send you something for sure.. however just give
 me
  those instructions..
 
  i hope you understand what i actually need..
 
  for me it would be great and enough if i just had 5-6 ffmpeg commands
 that
  do this and that is all.. i have another script that would handle when
  where and how that starts
 
  On Sat, Jul 25, 2015 at 6:41 PM, Mahesh Patade patademah...@gmail.com
  wrote:
 
  You do not have to pay a single penny. JUST follow instructions i have
  given in my blog.
 
  Thanks Mahesh
  On Jul 25, 2015 10:05 PM, vedran valaj...@gmail.com wrote:
 
   Well if solves my problems, I would pay.
  
   What I needed is what I asked. ..
  
  
   Please give me some more info.
  
   How sophisticated is your code, how can I use it, how much would i
 have
  to
   pay.
   On Jul 25, 2015 3:00 PM, Another Sillyname 
  anothersn...@googlemail.com
   wrote:
  
If you're willing to do some work I have a script I use that does
 most
of what you want, happy to let you have it and you could use it as
 the
'base' for what you're trying to do.
   
The problem with paying for something like this is frankly you
probably wouldn't want to pay a sensible commercial rate so the
numbers wouldn't make sense.
   
   
   
   
   
On 25 July 2015 at 13:40, vedran valaj...@gmail.com wrote:
 i'm not into ffmpeg so i feel that i would have to spend A LOT OF
  TIME
 tuning this.. and i would rather pay for somebody writing me
  commands
which
 i would put into a scrips.. also it would be great to have
 multiple
output
 once it is created...

 i saw it here:
https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs



 On Sat, Jul 25, 2015 at 2:38 PM, vedran valaj...@gmail.com
 wrote:

 debian with multimedia repos

 On Sat, Jul 25, 2015 at 2:37 PM, Another Sillyname 
 anothersn...@googlemail.com wrote:

 would help if you stated windows or 'nix

 On 25 July 2015 at 13:32, vedran valaj...@gmail.com wrote:
  Hello guys,
 
  i need somebody to write me commands for converting videos
 i'm
prepared
 to
  pay that. it should be able to process feew different formats
  and
 convert
  videos to a few most popular formats.. nothing which would
 not
  work
out
 of
  box in ffmpeg.. and maybe some tweaking about processor usage
  and
 quality
  but that second part is less important. Anyone interested?
 
 
  Please send me how much would that cost aprox. I need to
 convert
*most
 of*
  these:
 
  mov (QuickTime Movie)
  mp4 (MPEG-4 Video)
  mpe (MPEG Video)
  mpeg (MPEG Video)
  mpeg4 (MPEG-4 Video)
  3g2 (Mobile Video)
  3gp (Mobile Video)
  3gpp (Mobile Video)
  asf (Windows Media Video)
  avi (AVI Video)
 
 
 
  And convert to *most of* these:
 
 
 - HTML5, Flash: MP4/H.264, High profile
 - HTML5: WebM
 - HTML5: Ogg
 - Mobile: MP4/H.264, Baseline profile, 480x360, for wide
 compatibility
 - Mobile: MP4/H.264, Main profile, 1280x720, for newer iOS
   devices
 (iPhone 4, iPad, Apple TV)
 - Mobile: 3GP/MPEG4, 320x240 and/or 177x144, for
   non-smartphones*
 
 
 
 
  Important is to support being played in chrome, firefox, ie9
 and
iphone
 and
  android.. .. at least, most of those with importance of being
  able
   to
 play
  on iphones
 
 
  p.s. i use videojs for video play.
 
 
 
  Greetings
  ___
  ffmpeg-user mailing list
  ffmpeg-user@ffmpeg.org
  http://ffmpeg.org/mailman/listinfo/ffmpeg-user
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org

[FFmpeg-user] Help to convert some formats to web suitable. I sould pay for help

2015-07-25 Thread vedran
Hello guys,

i need somebody to write me commands for converting videos i'm prepared to
pay that. it should be able to process feew different formats and convert
videos to a few most popular formats.. nothing which would not work out of
box in ffmpeg.. and maybe some tweaking about processor usage and quality
but that second part is less important. Anyone interested?


Please send me how much would that cost aprox. I need to convert *most of*
these:

mov (QuickTime Movie)
mp4 (MPEG-4 Video)
mpe (MPEG Video)
mpeg (MPEG Video)
mpeg4 (MPEG-4 Video)
3g2 (Mobile Video)
3gp (Mobile Video)
3gpp (Mobile Video)
asf (Windows Media Video)
avi (AVI Video)



And convert to *most of* these:


   - HTML5, Flash: MP4/H.264, High profile
   - HTML5: WebM
   - HTML5: Ogg
   - Mobile: MP4/H.264, Baseline profile, 480x360, for wide compatibility
   - Mobile: MP4/H.264, Main profile, 1280x720, for newer iOS devices
   (iPhone 4, iPad, Apple TV)
   - Mobile: 3GP/MPEG4, 320x240 and/or 177x144, for non-smartphones*




Important is to support being played in chrome, firefox, ie9 and iphone and
android.. .. at least, most of those with importance of being able to play
on iphones


p.s. i use videojs for video play.



Greetings
___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] Help to convert some formats to web suitable. I sould pay for help

2015-07-25 Thread vedran
debian with multimedia repos

On Sat, Jul 25, 2015 at 2:37 PM, Another Sillyname 
anothersn...@googlemail.com wrote:

 would help if you stated windows or 'nix

 On 25 July 2015 at 13:32, vedran valaj...@gmail.com wrote:
  Hello guys,
 
  i need somebody to write me commands for converting videos i'm prepared
 to
  pay that. it should be able to process feew different formats and convert
  videos to a few most popular formats.. nothing which would not work out
 of
  box in ffmpeg.. and maybe some tweaking about processor usage and quality
  but that second part is less important. Anyone interested?
 
 
  Please send me how much would that cost aprox. I need to convert *most
 of*
  these:
 
  mov (QuickTime Movie)
  mp4 (MPEG-4 Video)
  mpe (MPEG Video)
  mpeg (MPEG Video)
  mpeg4 (MPEG-4 Video)
  3g2 (Mobile Video)
  3gp (Mobile Video)
  3gpp (Mobile Video)
  asf (Windows Media Video)
  avi (AVI Video)
 
 
 
  And convert to *most of* these:
 
 
 - HTML5, Flash: MP4/H.264, High profile
 - HTML5: WebM
 - HTML5: Ogg
 - Mobile: MP4/H.264, Baseline profile, 480x360, for wide compatibility
 - Mobile: MP4/H.264, Main profile, 1280x720, for newer iOS devices
 (iPhone 4, iPad, Apple TV)
 - Mobile: 3GP/MPEG4, 320x240 and/or 177x144, for non-smartphones*
 
 
 
 
  Important is to support being played in chrome, firefox, ie9 and iphone
 and
  android.. .. at least, most of those with importance of being able to
 play
  on iphones
 
 
  p.s. i use videojs for video play.
 
 
 
  Greetings
  ___
  ffmpeg-user mailing list
  ffmpeg-user@ffmpeg.org
  http://ffmpeg.org/mailman/listinfo/ffmpeg-user
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org
 http://ffmpeg.org/mailman/listinfo/ffmpeg-user

___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user


Re: [FFmpeg-user] Help to convert some formats to web suitable. I sould pay for help

2015-07-25 Thread vedran
i'm not into ffmpeg so i feel that i would have to spend A LOT OF TIME
tuning this.. and i would rather pay for somebody writing me commands which
i would put into a scrips.. also it would be great to have multiple output
once it is created...

i saw it here: https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs



On Sat, Jul 25, 2015 at 2:38 PM, vedran valaj...@gmail.com wrote:

 debian with multimedia repos

 On Sat, Jul 25, 2015 at 2:37 PM, Another Sillyname 
 anothersn...@googlemail.com wrote:

 would help if you stated windows or 'nix

 On 25 July 2015 at 13:32, vedran valaj...@gmail.com wrote:
  Hello guys,
 
  i need somebody to write me commands for converting videos i'm prepared
 to
  pay that. it should be able to process feew different formats and
 convert
  videos to a few most popular formats.. nothing which would not work out
 of
  box in ffmpeg.. and maybe some tweaking about processor usage and
 quality
  but that second part is less important. Anyone interested?
 
 
  Please send me how much would that cost aprox. I need to convert *most
 of*
  these:
 
  mov (QuickTime Movie)
  mp4 (MPEG-4 Video)
  mpe (MPEG Video)
  mpeg (MPEG Video)
  mpeg4 (MPEG-4 Video)
  3g2 (Mobile Video)
  3gp (Mobile Video)
  3gpp (Mobile Video)
  asf (Windows Media Video)
  avi (AVI Video)
 
 
 
  And convert to *most of* these:
 
 
 - HTML5, Flash: MP4/H.264, High profile
 - HTML5: WebM
 - HTML5: Ogg
 - Mobile: MP4/H.264, Baseline profile, 480x360, for wide
 compatibility
 - Mobile: MP4/H.264, Main profile, 1280x720, for newer iOS devices
 (iPhone 4, iPad, Apple TV)
 - Mobile: 3GP/MPEG4, 320x240 and/or 177x144, for non-smartphones*
 
 
 
 
  Important is to support being played in chrome, firefox, ie9 and iphone
 and
  android.. .. at least, most of those with importance of being able to
 play
  on iphones
 
 
  p.s. i use videojs for video play.
 
 
 
  Greetings
  ___
  ffmpeg-user mailing list
  ffmpeg-user@ffmpeg.org
  http://ffmpeg.org/mailman/listinfo/ffmpeg-user
 ___
 ffmpeg-user mailing list
 ffmpeg-user@ffmpeg.org
 http://ffmpeg.org/mailman/listinfo/ffmpeg-user



___
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user