Recherche avancée

Médias (91)

Autres articles (54)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (7475)

  • Why doesn't the ffmpeg output display the stream in the browser ? [closed]

    10 mai 2024, par Tebyy

    Why is it that when I create a livestream in Python using ffmpeg, and then I open the browser and visit the page, the page keeps loading continuously, and in PyCharm logs, I see binary data ? There are no errors displayed, and the code seems correct to me. I even tried saving to a file for testing purposes, and when I play the video, everything works fine. Does anyone know what might be wrong here ?

    


    Code :

    


    def generate_frames():
    cap = cv2.VideoCapture(os.path.normpath(app_root_dir().joinpath("data/temp", "video-979257305707693982.mp4")))
    while cap.isOpened():
        ret, frame = cap.read()
        if not ret:
            break

        yield frame


@app.route('/video_feed')
def video_feed():
    ffmpeg_command = [
        'ffmpeg', '-f', 'rawvideo', '-pix_fmt', 'bgr24',
        '-s:v', '1920x1080', '-r', '60',
        '-i', '-', '-vf', 'setpts=2.5*PTS', # Video Speed
        '-c:v', 'libvpx-vp9', '-g', '60', '-keyint_min', '60',
        '-b:v', '6M', '-minrate', '4M', '-maxrate', '12M', '-bufsize', '8M',
        '-crf', '0', '-deadline', 'realtime', '-tune', 'psnr', '-quality', 'good',
        '-tile-columns', '6', '-threads', '8', '-lag-in-frames', '16',
        '-f', 'webm', '-'
    ]
    ffmpeg_process = subprocess.Popen(ffmpeg_command, stdin=subprocess.PIPE, stderr=subprocess.PIPE, bufsize=-1)
    frames_generator = generate_frames()
    for frame in frames_generator:
        ffmpeg_process.stdin.write(frame)
        ffmpeg_process.stdin.flush()

    ffmpeg_process.stdin.close()
    ffmpeg_process.wait()

    def generate_video_stream(process):
        startTime = time.time()
        buffer = []
        sentBurst = False
        for chunk in iter(lambda: process.stderr.read(4096), b''):
            buffer.append(chunk)

            # Minimum buffer time, 3 seconds
            if sentBurst is False and time.time() > startTime + 3 and len(buffer) > 0:
                sentBurst = True
                for i in range(0, len(buffer) - 2):
                    print("Send initial burst #", i)
                    yield buffer.pop(0)

            elif time.time() > startTime + 3 and len(buffer) > 0:
                yield buffer.pop(0)

            process.poll()
            if isinstance(process.returncode, int):
                if process.returncode > 0:
                    print('FFmpeg Error', process.returncode)

                break

    return Response(stream_with_context(generate_video_stream(ffmpeg_process)), mimetype='video/webm', content_type="video/webm; codecs=vp9", headers=Headers([("Connection", "close")]))



    


  • Merge commit ’7a745f014f528d1001394ae4d2f4ed1a20bf7fa2’

    13 novembre 2016, par Hendrik Leppkes
    Merge commit ’7a745f014f528d1001394ae4d2f4ed1a20bf7fa2’
    

    * commit ’7a745f014f528d1001394ae4d2f4ed1a20bf7fa2’ :
    options_table : Add aliases for color properties

    Merged-by : Hendrik Leppkes <h.leppkes@gmail.com>

    • [DH] libavcodec/options_table.h
    • [DH] libavcodec/version.h
  • wav file from fluent-ffmpeg not working for asterisk if returned as stream nodejs

    7 mars 2023, par Sunil Garg

    I am using aws polly for text to speech and generating mp3 out of it, to get the certain wav as asterisk needs wav with specific paramters, I am using fluent-ffmpeg npm package.

    &#xA;

    I generated the file by providing the destination path, and returned from the api using sendFile method on response. Here is the code

    &#xA;

    _convertMp3ToWav(mp3Buffer, destPath) {&#xA;        const { options } = this;&#xA;        return new Promise((resolve, reject) => {&#xA;            ffmpeg(mp3Buffer)&#xA;                .audioFilter(`highpass=f=300, lowpass=f=3400`)&#xA;                .outputOptions([`-ar 8000`, `-ac 1`]&#xA;                .output(destPath)&#xA;                .on(&#x27;error&#x27;, (err) => {&#xA;                    log.error(`An error occured: ${err?.message || err?.stack}`);&#xA;                    reject({ err: &#x27;Failed to convert from mp3 to wav&#x27; });&#xA;                })&#xA;                .on(&#x27;end&#x27;, async () => {&#xA;                    log.info(`successfully converted mp3 to wav at ${destPath}`);&#xA;                    resolve({ msg: "voice file generated" });&#xA;                }).run();&#xA;        });&#xA;    }&#xA;&#xA;res.status(200).sendFile(wavFilePath)&#xA;

    &#xA;

    file is playable on local machine as well as working on asterisk server.

    &#xA;

    But i tried to avoid intermediate file generation, generated the stream and returned that stream using res.send(buffer)

    &#xA;

    Here is the code

    &#xA;

    _convertMp3ToWav(mp3Buffer) {&#xA;        return new Promise((resolve, reject) => {&#xA;            // create a writable output stream to store wav stream&#xA;            const outputStream = new Stream.Writable();&#xA;            const buffer = [];&#xA;            // redefining _write function to write wav stream&#xA;            outputStream._write = function (chunk, encoding, done) {&#xA;                buffer.push(chunk);&#xA;                done();&#xA;            };&#xA;            // convert mp3 buffer to wav buffer &#xA;            ffmpeg(mp3Buffer)&#xA;                .audioFilter(`highpass=f=300, lowpass=f=3400`)&#xA;                .outputOptions([`-ar 8000`, `-ac 1`])&#xA;                .output(outputStream)&#xA;                .format(&#x27;wav&#x27;)&#xA;                .on(&#x27;error&#x27;, (err) => {&#xA;                    log.error(`An error occured: ${err?.message || err?.stack}`);&#xA;                    reject({ err: &#x27;Failed to convert from mp3 to wav&#x27; });&#xA;                })&#xA;                .on(&#x27;end&#x27;, async () => {&#xA;                    try {&#xA;                        // create wav buffer &#xA;                        const wavBuffer = Buffer.concat(buffer);&#xA;                        log.info(`successfully converted mp3 to wav buffer`);&#xA;                        &#xA;                        resolve({ wavBuffer });&#xA;                    }&#xA;                    catch (err) {&#xA;                        log.error(`failed to create wav buffer : ${err?.message || err?.stack}`);&#xA;                        reject({ err: &#x27;Failed to create wav buffer&#x27; });&#xA;                    }&#xA;                }).run();&#xA;        });&#xA;    }&#xA;&#xA;const buffer = await this._convertMp3ToWav(bufferStream);&#xA;res.send(buffer.wavBuffer);&#xA;

    &#xA;

    I tried using as well

    &#xA;

    // set content type to audio/wav&#xA;res.set(&#x27;Content-Type&#x27;, &#x27;audio/wav&#x27;);&#xA;

    &#xA;

    the file is playable on local but not working on asterisk.

    &#xA;

    Is there any problem with sending or encoding issues ?

    &#xA;

    Update1

    &#xA;

    tried writing directly to the res like this

    &#xA;

    _convertMp3ToWav(mp3Buffer, res) {&#xA;    return new Promise((resolve, reject) => {&#xA;        // create a writable output stream to send wav stream in response&#xA;        const outputStream = new Stream.Writable();&#xA;        outputStream._write = function (chunk, encoding, done) {&#xA;            res.write(chunk, encoding);&#xA;            done();&#xA;        };&#xA;        // convert mp3 buffer to wav buffer&#xA;        ffmpeg(mp3Buffer)&#xA;            .audioFilter(`highpass=f=300, lowpass=f=3400`)&#xA;            .outputOptions([`-ar 8000`, `-ac 1`])&#xA;            .output(outputStream)&#xA;            .format(&#x27;wav&#x27;)&#xA;            .on(&#x27;error&#x27;, (err) => {&#xA;              reject({ err: &#x27;Failed to convert from mp3 to wav&#x27; });&#xA;            })&#xA;            .on(&#x27;end&#x27;, async () => {&#xA;                try {&#xA;         // end the response stream&#xA;                    res.end();&#xA;                    resolve();&#xA;                }&#xA;                catch (err) {&#xA;                    reject({ err: &#x27;Failed to send wav buffer in response&#x27; });&#xA;                }&#xA;            }).run();&#xA;    });&#xA;}&#xA;

    &#xA;

    files generated from both functions mentioned in questions are not playable on asterisk, I checked the properties of these files using this website

    &#xA;

    and both files are showing

    &#xA;

    at least one of the list chunks has an incorrect length&#xA;

    &#xA;

    other properties that asterisk understands are the same

    &#xA;

    enter image description here

    &#xA;

    and this file i can play on windows machine. Any help ?

    &#xA;