# HG changeset patch # User bgruening # Date 1745326904 0 # Node ID 288f703056b06ad3e1331e7fee5f29ad2a2f9ebf planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/ffmpeg commit 7e231a4e855cf86f73c5814b6de8a049bc720aa7 diff -r 000000000000 -r 288f703056b0 ffmpeg_converter.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ffmpeg_converter.xml Tue Apr 22 13:01:44 2025 +0000 @@ -0,0 +1,88 @@ + + Convert between video and audio formats using FFmpeg + + ffmpeg + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + This tool uses FFmpeg to convert between common video and audio file formats. + + Input formats: + - Video: MP4, MOV, AVI, MKV + - Audio: MP3, WAV, FLAC, AAC, OGG + + Select the output format you want, and FFmpeg will handle the conversion. + + + + @article{tomar2006converting, + title={Converting video formats with FFmpeg}, + author={Tomar, Suramya}, + journal={Linux Journal}, + volume={2006}, + number={146}, + pages={10}, + year={2006}, + publisher={Belltown Media} + } + + + diff -r 000000000000 -r 288f703056b0 test-data/.gitignore --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/.gitignore Tue Apr 22 13:01:44 2025 +0000 @@ -0,0 +1,1 @@ +SampleVideo_360x240_1mb.mp4 diff -r 000000000000 -r 288f703056b0 test-data/SampleVideo_360x240_1mb.mp4 Binary file test-data/SampleVideo_360x240_1mb.mp4 has changed diff -r 000000000000 -r 288f703056b0 test-data/SampleVideo_360x240_cut.flac Binary file test-data/SampleVideo_360x240_cut.flac has changed diff -r 000000000000 -r 288f703056b0 test-data/SampleVideo_360x240_cut.mkv Binary file test-data/SampleVideo_360x240_cut.mkv has changed diff -r 000000000000 -r 288f703056b0 test-data/SampleVideo_360x240_cut.mp3 Binary file test-data/SampleVideo_360x240_cut.mp3 has changed diff -r 000000000000 -r 288f703056b0 test-data/SampleVideo_360x240_cut.mp4 Binary file test-data/SampleVideo_360x240_cut.mp4 has changed diff -r 000000000000 -r 288f703056b0 test-data/SampleVideo_360x240_cut.webm Binary file test-data/SampleVideo_360x240_cut.webm has changed diff -r 000000000000 -r 288f703056b0 test-data/converted.mp3 Binary file test-data/converted.mp3 has changed diff -r 000000000000 -r 288f703056b0 test-data/flac_to_ogg.ogg Binary file test-data/flac_to_ogg.ogg has changed diff -r 000000000000 -r 288f703056b0 test-data/readme.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/readme.txt Tue Apr 22 13:01:44 2025 +0000 @@ -0,0 +1,7 @@ +ffmpeg -ss 00:00:02 -to 00:00:04 -i SampleVideo_360x240_1mb.mp4 -c copy SampleVideo_360x240_cut.mp4 + +ffmpeg -i SampleVideo_360x240_cut.mp4 SampleVideo_360x240_cut.webm +ffmpeg -i SampleVideo_360x240_cut.mp4 SampleVideo_360x240_cut.flac +ffmpeg -i SampleVideo_360x240_cut.mp4 SampleVideo_360x240_cut.mp3 +ffmpeg -i SampleVideo_360x240_cut.flac flac_to_ogg.ogg +ffmpeg -i SampleVideo_360x240_cut.mp4 SampleVideo_360x240_cut.mkv