Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (87)

Sur d’autres sites (15554)

  • Redirecting output to different path

    9 septembre 2020, par user14245857

    this is probably a quite easy question. I tried to solve it myself, looking at a whole bunch of different sites but couldn't find an answer.

    


    Here it is : Change the variable "$output" so the output file of ffmpeg is written in a DIFFERENT directory than the current directory where the input files are.

    


    Code is as follows :

    


    $inputfiles = ls *.mxf

  foreach ($file in $inputfiles)
 
{$output = [io.path]::ChangeExtension($file, '.mp4')

  ffmpeg -i $file -map 0 -c:v libx264 -c:a aac $output}


    


    Looking forward to your answers

    


    Thank you very much in advance

    


  • Stream live webcam AV feed to wowza using FFMPEG

    23 mars 2016, par thisisppn

    I have been trying to find out how to live stream my webcam feed to my wowza server. I am trying to make a web application in php that lets users stream live video through their webcam.

    I am confused, if i need to install FFMPEG in every user’s computer that uses my application or just installing it in my web server will do ??

    Thank you in advance. A little help would be much appreciated.

  • Windows FFMPEG : Open Icecast Stream and output Metadata / "icy_metadata_packet" continuously

    6 octobre 2017, par Henry

    I managed to open a mp3 stream and save it to 6-second-files continuously.

    What I can’t find is a way to save the song titles to a file or output them.

    I came across "icy_metadata_packet" which should do exactly what I need but it is not well-documented as it seems. Can I use that option in the command line as an option or do I need a script of some sort to put this value somewhere ?
    If so, what’s the easiest way/language for a script like this ? (maybe a .bat file ?)

    Thanks in advance for your help !