facut video fundal muzica

https://cooltext.com/Logo-Design-Outline

music da altri video, see in description of any video

trebuie sa introduc in description titlu de muzica

Documentary Technology Background Music | No Copyright Music | Royalty Free

https://www.youtube.com/watch?v=KLdXqY5krqs

--------------------------------------------------------------------------------

https://www.youtube.com/watch?v=m7koGDPcnq4

https://www.youtube.com/watch?v=kXiFgNm9LrQ

https://www.youtube.com/watch?v=te9OaSZ0kf8

https://www.youtube.com/watch?v=4PnUz1ORb9s

https://www.youtube.com/watch?v=CqePrbeAQoM

music

https://soundcloud.com/deep-sour-collective/cant-you-see-deep-sour-collective-master

https://soundcloud.com/deep-sour-collective/deep-sour-collective-respira-marco-parodi-remix

https://www.youtube.com/watch?v=Myu6KWz1tXI

free music no copyright

[Vocal Deep House] Rich James - What Must I Do [No Copyrighted Music]

Adventures - A Himitsu - SoundCloud (No Copyright Music)

Ash O'Connor - You [NCS Release]

Beach Buggy Ride - Elexive (Royalty Free Music)

Buddha - Kontekst - SoundCloud (No Copyright Music)

Crimson Fly - Huma-Huma - YouTube Audio Library

Dublin Deep by Paulo Arruda

enigmatic music mix 4

Non Copyrighted Music for Gaming - Casi - Majestic

Peyruis - Escape - FreeBackgroundMusic

Vocal Deep House - Zeuny ft Farayen and Leonie - No way back [No Copyright Music]

video in video

bat file

ffmpeg.exe -i master_video.avi -vf "movie=smaller_inner_video.avi[inner]; [in][inner] overlay [out]" completed.mp4

pause 0

extract

ffmpeg -ss 00:00:30 -i 1.avi -t 00:00:01,100 -vcodec copy -acodec copy newfile.avi

toate

rem % for command line, %% for batch file.

rem wrong ffmpeg -ss 0 -i rawvid.flv -t 33 -vf scale=640x480 -b:21504 test.mpg

rem correct ffmpeg -ss 0 -i in.mp4 -filter:v scale=640:480 -b:v 21504 -t 5 test.mpg

rem (for %%i in (*.mp4) do @ECHO file '%%i') > mylist.txt

ffmpeg -f concat -i mylist.txt -c copy output.mp4

rem ffmpeg.exe -i master_video.mp4 -vf "movie=smaller_inner_video.mp4[inner]; [in][inner] overlay [out]" completed.mp4

pause 0

------------------------------

https://www.youtube.com/watch?v=1Xf1DfvVJbs

Combine MP4 files using FFMPEG on Windows (without re-encoding)

(for %i in (*.mp4) do @echo file '%i') > mylist.txt

ffmpeg -f concat -i mylist.txt -c copy output.mp4

------------------------------------------------------------------------------

rem ffmpeg -i Mononoke.Hime.mkv -ss 00:23:00 -frames:v 1 out2.jpg

ffmpeg -ss 00:00:01 -i 1.avi -vframes 120 -c:v libx264 -an -strict -2 p.avi

ffmpeg -ss 00:00:12 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p1.avi

ffmpeg -ss 00:00:16 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p2.avi

ffmpeg -ss 00:00:19 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p3.avi

ffmpeg -ss 00:00:22 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p4.avi

ffmpeg -ss 00:00:24 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p5.avi

ffmpeg -ss 00:01:30 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p6.avi

ffmpeg -ss 00:01:33 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p7.avi

ffmpeg -ss 00:01:35 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p9.avi

ffmpeg -ss 00:01:40 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p10.avi

ffmpeg -ss 00:01:44 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p11.avi

ffmpeg -ss 00:01:46 -i 1.avi -vframes 60 -c:v libx264 -an -strict -2 p12.avi

ffmpeg -ss 00:01:54 -i 1.avi -vframes 200 -c:v libx264 -an -strict -2 p13.avi

ffmpeg -f concat -i mylist.txt -c copy output.avi

rem Convert all *.avi files to mp4 with h264 and aac audio

rem for %%a in ("*.avi") do ffmpeg -i "%%a" -c:v libx264 -preset slow -crf 20 -c:a libvo_aacenc -b:a 128k "newfiles\%%~na.mp4"

-----------------------------------------------------------------------

rem http://stackoverflow.com/questions/12379412/virtualdub-script-to-concatenate-a-series-of-videos

Set Mfps=23.976

Set Bpath="E:\- Video Extractions\Virtualdub\1920x1280 (23.976fps pure,93%%,MPEG2,deinterlaced)auto openNsave.vcf"

rem Set Bpath="E:\- Video Extractions\Virtualdub\852x480 DAR3 (16x9) (24fps,96%%,MPEG2,deinterlaced).vcf"

Set Vdpath="E:\- Video Extractions\Virtualdub\VirtualDub-1.8.8\"

Set Svpath="D:\"

for %%A in (*.mkv *.avi *.mpg *.mpeg *.m2ts *.vob) do >%%~nA.avs echo # M2ts file & >>%%~nA.avs echo SetMemoryMax(128) & >>%%~nA.avs echo DirectShowSource("%%~dA%%~pA%%~nA%%~xA", fps=%Mfps%, audio=true, seekzero = true, convertfps=true) & >>%%~nA.avs echo EnsureVBRMP3Sync() & start /d %Vdpath% VirtualDub.exe /i %Bpath% "%%~dA%%~pA%%~nA.avs" "%Svpath%%%~nA.avi"

rem ---Notes---

rem code requires: Avisynth, virtualdub, pre-existing (.vcf) config file

rem most people prefer to use virtualdub with jobs in queue; run them in sequence. This runs jobs in parallel by searching the directory of the script, finding all listed wildcard masked files below, generating a simple avisynth script file for each file, then opening virtualdub and autosaving the video to .avi

rem caution, this will stress your system. you may only be able to handle 1 file at a time. I can input 30 blueray .m2ts files just fine, so long as i set vdub process to idle or low. Modify the code to your hearts content ~ TigerWild

rem create a unique .vcf that you will use with this batch file only. Do this by running Virtualdub, opening a video file, configuring all your settings as you want them, then selecting File->save processing settings->.vcf

rem use a text editor to open the vcf file you made, and add these 2 lines: VirtualDub.Open(VirtualDub.params[0]); VirtualDub.SaveAVI(VirtualDub.params[1]);

rem ---References---

rem http://stackoverflow.com/questions/8749637/dos-command-to-sperate-file-name-and-extension-into-variables

rem http://forum.doom9.org/archive/index.php/t-152842.html with a nod to stax76

------------------------------------------------------------------------------------

// Set Video and Audio to Direct Stream Copy

VirtualDub.video.SetMode(0);

VirtualDub.audio.SetMode(0);

VirtualDub.Open(U"D:\path\to\file1.avi");

VirtualDub.Append(U"D:\path\to\file2.avi");

VirtualDub.Append(U"D:\path\to\file3.avi");

VirtualDub.SaveAVI(U"D:\path\to\concatenatedFile.avi");

VirtualDub.Close();

-------------------------------------------------------------------------------------------------------

autosubtitle

https://github.com/agermanidis/autosub/issues/23

set python path

-------------------------------------------------

down vote

accepted

You know what has worked for me really well on windows.

My Computer > Properties > Advanced System Settings > Environment Variables >

Then under system variables I create a new Variable called PythonPath. In this variable I have C:\Python27\Lib;C:\Python27\DLLs;C:\Python27\Lib\lib-tk;C:\other-foolder-on-the-path

--------------------------------------

pana la urma am creat un bat cu:

C:\Python27\python.exe C:\Python27\scripts\autosub_app.py -S it -D it test.mp4

pause 0

si am introdus acest bat si test.mp4 in C:\Python27\Scripts

ca imi dadea eraoare altfel

------------------------------

exemple batch ffmpeg

http://forum.videohelp.com/threads/356314-How-to-batch-convert-multiplex-any-files-with-ffmpeg