GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   How to add GIF file into FVL file? (https://gfy.com/showthread.php?t=851896)

teomaxxx 09-01-2008 09:04 AM

How to add GIF file into FVL file?
 
I need to put at the beggining of FVL files GIF image. How to do it?

I know all the work, how to join regular files like WMV, JPG, but working with FVL is for me is a "spanish village" .

SmokeyTheBear 09-01-2008 09:18 AM

u sure you dont mean flv ?

Theres a few ways to do it that are much easier than trying to alter the video.

Most flv players will let you use playlists so you simply run the gif before the flv.

Another option is to convert the gif into a video file first then combine the videos using mencoder

-------------------
mkfifo temp1.a
mkfifo temp1.v
mkfifo temp2.a
mkfifo temp2.v
mkfifo all.a
mkfifo all.v
ffmpeg -i input1.flv -vn -f u16le -acodec pcm_s16le -ac 2 -ar 44100 - > temp1.a < /dev/null &
ffmpeg -i input2.flv -vn -f u16le -acodec pcm_s16le -ac 2 -ar 44100 - > temp2.a < /dev/null &
ffmpeg -i input1.flv -an -f yuv4mpegpipe - > temp1.v < /dev/null &
ffmpeg -i input2.flv -an -f yuv4mpegpipe - > temp2.v < /dev/null &
cat temp1.a temp2.a > all.a &
cat temp1.v temp2.v > all.v &
ffmpeg -f u16le -acodec pcm_s16le -ac 2 -ar 44100 -i all.a \
-f yuv4mpegpipe -i all.v \
-sameq -y output.flv
rm temp[12].[av] all.[av]

CaptainHowdy 09-01-2008 09:19 AM

Quote:

Originally Posted by teomaxxx (Post 14693574)
but working with FVL is for me is a "spanish village" .

QUÉ?

I would like to know as well...

teomaxxx 09-01-2008 09:24 AM

Quote:

Originally Posted by SmokeyTheBear (Post 14693605)
u sure you dont mean flv ?


of course. thats why I wrote that working with FLV files is spanish village for me :winkwink:


All times are GMT -7. The time now is 02:32 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123