li to dt switcheroo

This commit is contained in:
Ashley Blewer 2015-12-01 20:48:25 -05:00
parent 0cc2a1fedf
commit 034ad0c42a

View File

@ -124,10 +124,10 @@ Change the above data-target field, the button text, and the below div class (th
<h3>Create Bash Script named “Rewrap.MXF.sh” to do Batch FFmpeg Processing</h3>
<p><code>for f in *.MXF; do ffmpeg -i "$f" -c:a copy -c:v copy "${f%.MXF}.mov"; done</code></p>
<p>Re-wrap .MFX files in a specified directory to .mov files by using this code within a .sh file. The shell script (.sh file) and all MXF files must be contained in the same directory, and the script must be run from the directory itself (cd ~/Desktop/MXF_file_directory). Execute .sh file with the command <code>sh Rewrap-MXF.sh</code></p>
<ul>
<li>-c:a copy (copy audio codec)</li>
<li>-c:v copy (copy video codec)</li>
</ul>
<dl>
<dt>-c:a copy (copy audio codec)</dt>
<dt>-c:v copy (copy video codec)</dt>
</dl>
<p>Modify the ffmpeg script as needed to perform different transcodes :)</p>
</div>
</div>