Page 10 of 11 FirstFirst ... 891011 LastLast
Results 91 to 100 of 108

Thread: FFmpeg Mplayer VLC - News & Howtos

  1. #91
    Join Date
    Dec 2006
    Beans
    7,349

    Re: FFmpeg Mplayer VLC - News & Howtos

    For those who do not follow the svn MPlayer there is an MPlayer release earlier this month: 1.1.1. A few details here:

    http://www.mplayerhq.hu/design7/news.html

    BTW I am considering adding a guide for MPlayer to the 'Tutorials' section, still watching to make sure there are no further changes to this subforum before I undertake this not small amount of effort...
    You think that's air you're breathing now?

  2. #92
    Join Date
    Jul 2009
    Location
    Hippiesoldierstan Norwich
    Beans
    2,326
    Distro
    Lubuntu 22.04 Jammy Jellyfish

    Text to Video

    found this
    Code:
    ffmpeg -chars_per_frame 200 -i input.txt output.mkv
    posted earlier by FakeOutdoorsman
    to turn text [.txt file]to video

    and thought how nice! but how to use it so that it can be used to post the resulting video on a video-sharing site (seriously) or that thoughtful ransom note [aargh!] in a way that is readable
    so here:


    Code:
    ffmpeg -chars_per_frame 200  -s hd720 -i NAME.txt -b:v 4000k  output.mkv && \
    ffmpeg  -i output.mkv -filter:v 'setpts=6.5*PTS' -b:v 4000k  outputslow.mkv \
    && rm output.mkv

    if you want slower try 7.0 or 7.5 or even slower 12.0 is a really comfortable reading speed
    Last edited by shantiq; May 19th, 2013 at 12:19 PM.
    Linux is Latin for off-the-beaten-track
    what I like MOST about our Ubuntu ... The Community ie 50 brains are better than one
    Playing with Slackware too now ...
    ShanArt

  3. #93
    Join Date
    Mar 2008
    Beans
    209

    Re: FFmpeg Mplayer VLC - News & Howtos

    That's actually pretty neat. Thank you.

  4. #94
    Join Date
    Dec 2006
    Beans
    7,349

    Re: FFmpeg Mplayer VLC - News & Howtos

    As a trial I have placed an MPlayer compile guide back on these Forums:

    Howto: Build the svn MPlayer under the latest release version of Ubuntu
    http://ubuntuforums.org/showthread.php?t=2149564

    Interesting to see if it sinks or swims
    You think that's air you're breathing now?

  5. #95
    Join Date
    Sep 2006
    Beans
    3,713

    Re: FFmpeg Mplayer VLC - News & Howtos

    New filter: rotate. Now you can rotate your videos using any arbitrary angle. Note that the angle is expressed in radians, although you can have it convert radians to degrees for you.

    Rotate 33 degrees clockwise:
    Code:
    $ ffplay input.mkv -vf rotate="33*(PI/180)"
    hop.jpg
    (That is a hop plant if you're wondering).

    Examples from the docs:

    Apply a constant rotation with period T, starting from an angle of PI/3:
    Code:
    rotate=PI/3+2*PI*t/T
    Rotate the video, output size is chosen so that the whole rotating input video is always completely contained in the output:
    Code:
    rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
    Rotate the video, reduce the output size so that no background is ever shown:
    Code:
    rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
    Last edited by FakeOutdoorsman; June 14th, 2013 at 06:38 PM.

  6. #96
    Join Date
    Dec 2006
    Beans
    7,349

    Re: FFmpeg Mplayer VLC - News & Howtos

    My brain hurts a little after reading those commandlines
    You think that's air you're breathing now?

  7. #97
    Join Date
    Jul 2009
    Location
    Hippiesoldierstan Norwich
    Beans
    2,326
    Distro
    Lubuntu 22.04 Jammy Jellyfish

    Re: FFmpeg Mplayer VLC - News & Howtos

    Quote Originally Posted by andrew.46 View Post
    My brain hurts a little after reading those commandlines
    Maybe time for Windows or a Big Mac Just joking....

    Soon gonna be a time ffmpeg can walk on water or at least has a line of code that allows you to do that

    say
    Code:
    ffmpeg -i Jesus Copy [and for good measure]  -f///¹²³-457--0 --Galilee --feet--on--water //0
    or at the very least makes you breakfast .... it is amazing software
    Last edited by shantiq; June 14th, 2013 at 08:51 AM.
    Linux is Latin for off-the-beaten-track
    what I like MOST about our Ubuntu ... The Community ie 50 brains are better than one
    Playing with Slackware too now ...
    ShanArt

  8. #98
    Join Date
    Dec 2006
    Beans
    7,349

    Re: FFmpeg Mplayer VLC - News & Howtos

    Quote Originally Posted by shantiq View Post
    Maybe time for Windows or a Big Mac Just joking....
    I run Windows at work and I have downloaded a nice static version of FFmpeg that runs very nicely with Console 2. Not the same as Linux of course but the FFmpeg magic still produces great media files even on the limited platform of Windows . But as for a Big Mac I am a pretty dedicated vegan so that will not happen any time soon!
    You think that's air you're breathing now?

  9. #99
    Join Date
    Jul 2009
    Location
    Hippiesoldierstan Norwich
    Beans
    2,326
    Distro
    Lubuntu 22.04 Jammy Jellyfish

    Re: FFmpeg Mplayer VLC - News & Howtos

    well Andrew me too no meat [i meant the machine not the food]; the animals were never guilty and do not deserve murder is my creed

    i am sure here we can get help again from the mighty F

    Code:
    ffmpeg  -i me  --nomeat --no dairy copy /0¹²v-y+x

    and seriously all interlude jokes apart ffmpeg is more and more mighty by the month and thanx to all guys here who keep showing us the tricks
    Last edited by shantiq; June 14th, 2013 at 09:14 AM.
    Linux is Latin for off-the-beaten-track
    what I like MOST about our Ubuntu ... The Community ie 50 brains are better than one
    Playing with Slackware too now ...
    ShanArt

  10. #100
    Join Date
    Sep 2006
    Beans
    3,713

    Re: FFmpeg Mplayer VLC - News & Howtos

    ffplay can play itself:
    Code:
    $ ffplay /usr/bin/ffplay
    It might be loud, and your ffplay binary location will probably vary.

Page 10 of 11 FirstFirst ... 891011 LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •