A Photography forum. PhotoBanter.com

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PhotoBanter.com forum » Digital Photography » Digital Photography
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

How can I convert a video to jpeg files?



 
 
Thread Tools Display Modes
  #1  
Old July 10th 19, 08:12 PM posted to rec.photo.digital
BillAhearn
external usenet poster
 
Posts: 3
Default How can I convert a video to jpeg files?

How can I convert a 1280x725 MP4 video to a few dozen jpeg files?
  #2  
Old July 10th 19, 08:45 PM posted to rec.photo.digital
Savageduck[_3_]
external usenet poster
 
Posts: 16,487
Default How can I convert a video to jpeg files?

On Jul 10, 2019, BillAhearn wrote
(in article ):

How can I convert a 1280x725 MP4 video to a few dozen jpeg files?


I wouldn’t hold out hope for decent quality JPEG images given what you are
working with, but I would start with capable video editing software, and then
make individual frame captures.

--
Regards,
Savageduck

  #3  
Old July 10th 19, 08:49 PM posted to rec.photo.digital
nospam
external usenet poster
 
Posts: 24,165
Default How can I convert a video to jpeg files?

In article .com,
Savageduck wrote:


How can I convert a 1280x725 MP4 video to a few dozen jpeg files?


I wouldnąt hold out hope for decent quality JPEG images given what you are
working with, but I would start with capable video editing software, and then
make individual frame captures.


any decent video player can export individual frames.

there are also automated tools that create screenshots at predetermined
intervals and you get whatever happened at those timecodes, regardless
if it's visually interesting, such as dark frames after a fadeout.
  #4  
Old July 10th 19, 08:53 PM posted to rec.photo.digital
newshound
external usenet poster
 
Posts: 458
Default How can I convert a video to jpeg files?

On 10/07/2019 20:49, nospam wrote:
In article .com,
Savageduck wrote:


How can I convert a 1280x725 MP4 video to a few dozen jpeg files?


I wouldnÂąt hold out hope for decent quality JPEG images given what you are
working with, but I would start with capable video editing software, and then
make individual frame captures.


any decent video player can export individual frames.


I'd start with VLC as a very solid free example. Check the help files
and print off a list of the hotkeys. They are not always very intuitive,
but they are very comprehensive.



there are also automated tools that create screenshots at predetermined
intervals and you get whatever happened at those timecodes, regardless
if it's visually interesting, such as dark frames after a fadeout.


  #5  
Old July 10th 19, 09:28 PM posted to rec.photo.digital
nospam
external usenet poster
 
Posts: 24,165
Default How can I convert a video to jpeg files?

In article ,
newshound wrote:

How can I convert a 1280x725 MP4 video to a few dozen jpeg files?

I wouldn1t hold out hope for decent quality JPEG images given what you are
working with, but I would start with capable video editing software, and
then make individual frame captures.


any decent video player can export individual frames.


I'd start with VLC as a very solid free example. Check the help files
and print off a list of the hotkeys. They are not always very intuitive,
but they are very comprehensive.


i said decent video player.
  #6  
Old July 10th 19, 10:18 PM posted to rec.photo.digital
gray_wolf
external usenet poster
 
Posts: 31
Default How can I convert a video to jpeg files?

On 7/10/2019 2:53 PM, newshound wrote:
On 10/07/2019 20:49, nospam wrote:
In article .com,
Savageduck wrote:


How can I convert a 1280x725 MP4 video to a few dozen jpeg files?

I wouldnÂąt hold out hope for decent quality JPEG images given what you are
working with, but I would start with capable video editing software, and then
make individual frame captures.


any decent video player can export individual frames.


I'd start with VLC as a very solid free example. Check the help files and print
off a list of the hotkeys. They are not always very intuitive, but they are very
comprehensive.


VLC works for me when the other apps won't.



there are also automated tools that create screenshots at predetermined
intervals and you get whatever happened at those timecodes, regardless
if it's visually interesting, such as dark frames after a fadeout.




  #7  
Old July 10th 19, 10:23 PM posted to rec.photo.digital
nospam
external usenet poster
 
Posts: 24,165
Default How can I convert a video to jpeg files?

In article , gray_wolf
wrote:

How can I convert a 1280x725 MP4 video to a few dozen jpeg files?

I wouldn1t hold out hope for decent quality JPEG images given what you are
working with, but I would start with capable video editing software, and
then
make individual frame captures.

any decent video player can export individual frames.


I'd start with VLC as a very solid free example. Check the help files and
print
off a list of the hotkeys. They are not always very intuitive, but they are
very
comprehensive.


VLC works for me when the other apps won't.


then you're using the wrong other apps.
  #8  
Old July 10th 19, 11:01 PM posted to rec.photo.digital
Benjamin Esham
external usenet poster
 
Posts: 1
Default How can I convert a video to jpeg files?

BillAhearn wrote:

How can I convert a 1280x725 MP4 video to a few dozen jpeg files?


If you're willing to use a command-line tool, you could do this with
FFmpeg [1]:

ffmpeg -i movie.mp4 -r 1 frame%03d.jpeg

That will extract one frame every second and save the resulting files as
frame001.jpeg, frame002.jpeg, and so on. If you want to extract *every*
frame then omit the "-r 1" part.

[1]: https://ffmpeg.org/

Hope this helps,
--
Benjamin Esham
https://esham.io
  #9  
Old July 11th 19, 11:11 AM posted to rec.photo.digital
newshound
external usenet poster
 
Posts: 458
Default How can I convert a video to jpeg files?

On 10/07/2019 22:23, nospam wrote:
In article , gray_wolf
wrote:

How can I convert a 1280x725 MP4 video to a few dozen jpeg files?

I wouldn1t hold out hope for decent quality JPEG images given what you are
working with, but I would start with capable video editing software, and
then
make individual frame captures.

any decent video player can export individual frames.

I'd start with VLC as a very solid free example. Check the help files and
print
off a list of the hotkeys. They are not always very intuitive, but they are
very
comprehensive.


VLC works for me when the other apps won't.


then you're using the wrong other apps.

Please elucidate.
  #10  
Old July 11th 19, 03:15 PM posted to rec.photo.digital
nospam
external usenet poster
 
Posts: 24,165
Default How can I convert a video to jpeg files?

In article ,
newshound wrote:


I'd start with VLC as a very solid free example. Check the help files and
print
off a list of the hotkeys. They are not always very intuitive, but they
are
very
comprehensive.

VLC works for me when the other apps won't.


then you're using the wrong other apps.


Please elucidate.


vlc is one of the most unintuitive, poorly designed and buggiest apps.
it can't even scrub without dropping frames. it's hard to imagine that
anything could be worse, but apparently there is.
 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Convert 8mm video to DVD Jeff Digital Photography 8 June 24th 08 06:26 PM
Convert video segments to JPEG Robert Coe Digital Photography 7 April 30th 07 07:38 PM
Q: How to convert JPG files to MPG/AVI Jordan Digital Photography 4 February 17th 05 08:31 AM


All times are GMT +1. The time now is 10:55 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PhotoBanter.com.
The comments are property of their posters.