Jump to content

Recommended Posts

Posted

I've run into a little problem with Riva Encoder in that it seems to be cutting off the 1st second or so from avi's it converts to flv.

 

This wouldn't normally matter but I've been working with some Year 6s doing some short "shorts" and its makes a big difference on a 9 second clip :(

 

St Leonard's CE

 

Anyone had this problem/overcome it or can suggest another free encoder that they use (no google responses please :) )

 

I can workaround the problem by duplicating the 1st frame but its a bit of a faff :(

 

regards

 

Simon

Posted

I've always avoided SUPER on the basis of the look of the website :)

 

Maybe I'll just have to bite the bullet (if I can actually find the download link on it :) )

 

Simon

Posted

I managed to download it and it did the job but the prog interface makes the website look good :lol:

 

I'll think'll I'll just try to automate repeating the first frame for a second or so :)

 

regards

 

Simon

Posted
Super is just a "friendly" front end to a bunch of open source programs (the company is completely open about this) so what you can do is use Super to start the conversion and then run Sysinternals Process Explorer. You can then see the actual process which is doing the conversion and just run it directly next time you need a conversion.
  • 1 month later...
Posted
Stick 5 seconds or so of black on the front and end using your video editor and then make a new avi. Teach the kids to let the camera roll before and after the action.
Posted
Stick 5 seconds or so of black on the front and end using your video editor

Video Editor???? = you mistake my school as one with money to burn :)

 

I ended up using Super and also used Avisynth to repeat the first and last frames for a few secs as it makes for better viewing anyway.

 

Wouldn't mind a prog that extracts 1st frame to jpeg without haviung to trim the video as you need one to show as the still image on the flash player.

 

regards

 

Simon

Posted (edited)
Wouldn't mind a prog that extracts 1st frame to jpeg without having to trim the video as you need one to show as the still image on the flash player.

ffmpeg can create thumbnails of videos. e.g.

 

ffmpeg -ss 10 -y -i input.avi -f image2 -vframes 1 -an thumb.jpg

 

 

This takes a video file (-i input.avi) and extracts a single frame (-vframes 1) at an offset of 10 seconds (-ss 10) and saves it as thumb.jpg. If you want the thumbnail in PNG format, just change the extension of the image in the command above.

 

If you need the thumbnails to be a particular size, add -s 720x576 to the command line above changing the width and height as necessary. If you leave this out (as I have done above), ffmpeg will determine the correct resolution to use based on the input video.

Edited by Arthur
  • Thanks 1
Posted (edited)

I forgot to mention that if you have a folder full of AVIs you want to capture frames of, the batch file below will make this process a lot easier. Just place it in the same folder as the videos and it will create thumbnails for each one it finds with the same name as the video.

 

 

CreateThumbs.cmd

@echo off
for %%a in (*.avi) do ffmpeg -ss 10 -y -i "%%a" -f image2 -vframes 1 -an "%%~na.png"

Edited by Arthur
Posted (edited)

"Simon: I've been working with some Year 6s doing some short "shorts" and its makes a big difference on a 9 second clip "

 

at least Arthur knows class using a current ffmpeg :grin: but alas its missing some cutting edge x264 patchs options but still a fine cli app to use until DS and the dev's get their audio, TS container muxing, and filter code re-factored in this goggle summer of code....

 

but really STAY AWAY From SUPER Really just stay away , Never tell others to use it, and Never look back, it's codebase is full of Old 3rd party code and will Not produce visual quality and/or smaller files compared to using the original and current 3d party Free SW instead....

 

right , basics: there are 3 main parts to any current digital video, these are the video codec used, the audio codec used and the container you put them in......

 

.flv is a container,as is .AVI , and Why do you want to use the .flv container anyway Simon ?, .mp4 or .mkv are the containers of choice Today ?

 

if you really Need/Want a GUI based video Transcoding and editing app then the cross platform AVIDemux is all you really need and the kids can use it very effectively after a short time learning, and even if you don't need a GUI then still use AVIDemux as it has the cutting edge highest visual quality x264 AVC/H.264 codec Encoder codebase compiled for it regularly and highest visual quality should always be your Number one thing to do....

 

Ohh, and its included video filters for de-noising ,resizing ,and slight sharpening are very handy too, as are the others if you have need of them, but those 3 are the main parts i use for creating, basic editing, and keeping higher quality input content as good as you can.

 

right you can get the most current windows version here Avidemux Builds for Microsoft Windows right now that's Revision 6370 and perhaps using Mulder's most current x264 compiles you simply unpack and place in the top dir of wherever you placed and run AVIDemux

libx264 GIT builds (Page 8) - Windows - Avidemux2 Forum

 

here's the other OS links http://fixounet.free.fr/avidemux/download.html i cant speak for these as i don't know of any dev's compiling current cutting edge x264 patchs for these other OS, but they may exist if you ask on the board

 

you should also perhaps download and start using the cross platform MediaInfo as that is VERY useful to inform you of what codecs, resolution ratio's, and even Encoding options were used on a given video file.

http://en.wikipedia.org/wiki/List_of_common_resolutions

 

My recommendation unless you have a VERY GOOD Reason not to, is converting all your old antiquated AVI container video to Mp4 containers, Always use AVC crf=21 or 18 for transparency to the original, AAC

or Mp3 if you must for audio and be happy at the visual quality and far smaller file-size and bitrate for a given content, Now you might stand a chance of streaming that converted AVC "high profile" high quality 1920×1080 16:9 ratio HD video over your antiquated wireless 11b (USB card you thought you would never be able to re-use again for HD video) LAN section at 3Mbit/s

Edited by pip99
Posted

If I may put my 2p worth in, I know you requested 'free' But for £35 unlimited licence for at least 10 programs try 'AVS Software'. Their encoding software is one of the best I have seen for a long time, encodes everything using simple templates. The video editing software is a bit simple, but perfect for school use. I have deployed this for the Media department( which was a bit problematic), the feedback was great. As the point you mentioned, this handles most forms of video format including flash.

 

URL: AVS4YOU® Best multimedia software on today's market.

  • 2 weeks later...
  • 2 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



  • 12 When would you like EduGeek EDIT 2025 to be held?

    1. 1. Select a time period you can attend


      • I can make it in June\July
      • I can make it in August\Sept
      • Other time period. Please comment in the thread what works for you
      • Either time

×
×
  • Create New...