Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (91)

  • 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 (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9246)

  • Issue with downloading read-only recordings on Teams [closed]

    26 août 2023, par Ankit

    I have been following this guidance to download read-only Microsoft Teams recordings until last month (early July'23) successfully. But now when I am trying the same steps and everything, I am getting some error (given below for reference).

    


    The code that I am trying in CMD -

    


    ffmpeg -i "PASTE_YOUR_COPIED_REQUEST_URL_HERE" -codec copy NAME_OF_DOWNLOADFILE.mp4


    


    The error that I am getting now -

    


    [tls @ <some number="number">] Error in the pull function.&#xA;[tls @ <some number="number">] IO error: Error number -10054 occurred&#xA;[in#0 @ <some number="number">] Error opening input: Error number -10054 occurred&#xA;Error opening input file &#xA;Error opening input files: Error number -10054 occurred&#xA;</some></some></some>

    &#xA;

    I am running Windows 10 Enterprise 64-bit version.

    &#xA;


    &#xA;

    I have tried the following things, but they didn't help -

    &#xA;

      &#xA;
    1. Tried downloading inherently downloadable recordings (that are un-protected, non view-only videos)
    2. &#xA;

    3. Removing some parts of the URL as highlighted/suggested by some Reddit users
    4. &#xA;

    5. Tried different browsers (Edge and Chrome)
    6. &#xA;

    7. Tried refreshing my ffmpeg folder with latest version
    8. &#xA;

    9. Tried running the command in cmd with 'Run as Administrator' option
    10. &#xA;

    &#xA;

    Please suggest how shall I download read-only Teams recording using either ffmpeg or some other tool ?

    &#xA;

  • Ffmpeg configuration to stream the frames of my webcam

    6 juillet 2023, par Ridweng

    I'm trying to build a server in NodeJs to stream in RTSP my webcam using Angular to retrieve the frames and connecting using websockets. The server side is using "express-ws" module to create the Websocket.

    &#xA;

    I was successfull in sending the frames from the webcam to the server in base64, the server is receiving these messages from a function on interval of (1000 / 30)ms.

    &#xA;

    The issue relies on the implementation of my Ffmpeg child process. I retrieve the message and convert it into a buffer to then write this in the function of Ffmpeg.

    &#xA;

    My current implementation is this one :

    &#xA;

    const { spawn } = require(&#x27;child_process&#x27;);&#xA;exports.stream =  (ws ,req) => {&#xA;    try{&#xA;        const mess = `connection from: ${req._remoteAddress} at ${req._startTime}.`&#xA;        const initialMess =`Started ${mess}`&#xA;        ws.uuid = uuidv4()&#xA;        console.log(initialMess)&#xA;&#xA;        ws.on(&#x27;message&#x27;, function incoming(message) {&#xA;            message = JSON.parse(message)&#xA;            console.log(`Res: ${message.width} x ${message.height}`);&#xA;            const ffmpeg = spawn(&#x27;ffmpeg&#x27;, [&#xA;                &#x27;-f&#x27;, &#x27;rawvideo&#x27;,&#xA;                &#x27;-pixel_format&#x27;, &#x27;rgb24&#x27;,&#xA;                &#x27;-video_size&#x27;, `${message.width}x${message.height}`,&#xA;                &#x27;-framerate&#x27;, `${message.framerate}`,&#xA;                &#x27;-i&#x27;, &#x27;-&#x27;,&#xA;                &#x27;-codec:v&#x27;, &#x27;libx264&#x27;,&#xA;                &#x27;-preset&#x27;, &#x27;ultrafast&#x27;,&#xA;                &#x27;-tune&#x27;, &#x27;zerolatency&#x27;,&#xA;                &#x27;-f&#x27;, &#x27;rtsp&#x27;,&#xA;                &#x27;rtsp://127.0.0.1:554/rtsp/stream&#x27;,&#xA;            ]);&#xA;            const base64Data = message.video;&#xA;            const videoData = Buffer.from(base64Data, &#x27;base64&#x27;);&#xA;&#xA;            ffmpeg.stdin.write(videoData);&#xA;            ffmpeg.stdin.end();&#xA;            &#xA;            ffmpeg.stderr.on(&#x27;data&#x27;, (data) => {&#xA;                console.error(`FFmpeg : ${data}`);&#xA;                });&#xA;&#xA;            ffmpeg.on(&#x27;exit&#x27;, (code, signal) => {&#xA;                if (dev) console.log(`FFmpeg process exited with code ${code} and signal ${signal}`);&#xA;        &#xA;                // Close the WebSocket connection&#xA;                ws.close();&#xA;                });&#xA;        });&#xA;        ws.on(&#x27;close&#x27;, () => {&#xA;            const finalMess = `Stopped ${mess}`&#xA;            rem(ws.uuid)&#xA;            console.log(finalMess)&#xA;        })&#xA;    }catch(err){&#xA;        console.log(err)&#xA;    }&#xA;}&#xA;

    &#xA;

    In terms of the message received, this is the Angular side sending the message :

    &#xA;

    const imageData = this.canvas.toDataURL(&#x27;image/jpeg&#x27;);&#xA;socket.send(JSON.stringify({video: imageData, width: this.canvas.width, height: this.canvas.height, framerate: interval }));&#xA;

    &#xA;

    The interval variable is the divisor of the interval that is triggering the function (in this case 30).

    &#xA;

    I'm currently receiving the error message from Ffmpeg :

    &#xA;

    ffmpeg version 6.0 Copyright (c) 2000-2023 the FFmpeg developers&#xA;  built with Apple clang version 14.0.3 (clang-1403.0.22.14.1)&#xA;&#xA;FFmpeg :   configuration: --prefix=/opt/homebrew/Cellar/ffmpeg/6.0 --enable-shared --enable-pthreads --enable-version3 --cc=clang --host-cflags= --host-ldflags= --enable-ffplay --enable-gnutls --enable-gpl --enable-libaom --enable-libaribb24 --enable-libbluray --enable-libdav1d --enable-libmp3lame --enable-libopus --enable-librav1e --enable-librist --enable-librubberband --enable-libsnappy --enable-libsrt --enable-libsvtav1 --enable-libtesseract --enable-libtheora --enable-libvidstab --enable-libvmaf --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxml2 --enable-libxvid --enable-lzma --enable-libfontconfig --enable-libfreetype --enable-frei0r --enable-libass --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libspeex --enable-libsoxr --enable-libzmq --enable-libzimg --disable-libjack --disable-indev=jack --enable-videotoolbox --enable-audiotoolbox --enable-neon&#xA;  libavutil      58.  2.100 / 58.  2.100&#xA;  libavcodec     60.  3.100 / 60.  3.100&#xA;  libavformat    60.  3.100 / 60.  3.100&#xA;  libavdevice    60.  1.100 / 60.  1.100&#xA;  libavfilter     9.  3.100 /  9.  3.100&#xA;  libswscale      7.  1.100 /  7.  1.100&#xA;  libswresample   4. 10.100 /  4. 10.100&#xA;  libpostproc    57.  1.100 / 57.  1.100&#xA;&#xA;FFmpeg : [rawvideo @ 0x150005ff0] Packet corrupt (stream = 0, dts = 0).&#xA;&#xA;FFmpeg : Input #0, rawvideo, from &#x27;fd:&#x27;:&#xA;  Duration: N/A, start: 0.000000, bitrate: 221184 kb/s&#xA;  Stream #0:0: Video: rawvideo (RGB[24] / 0x18424752), rgb24, 640x480, 221184 kb/s, 30 tbr, 30 tbn&#xA;&#xA;FFmpeg : Stream mapping:&#xA;  Stream #0:0 -> #0:0 (rawvideo (native) -> h264 (libx264))&#xA;&#xA;FFmpeg : fd:: corrupt input packet in stream 0&#xA;[rawvideo @ 0x14ef24290] Invalid buffer size, packet size 76343 &lt; expected frame_size 921600&#xA;&#xA;FFmpeg : Error while decoding stream #0:0: Invalid argument&#xA;&#xA;FFmpeg : [libx264 @ 0x14ef25a20] using cpu capabilities: ARMv8 NEON&#xA;&#xA;FFmpeg : [libx264 @ 0x14ef25a20] profile High 4:4:4 Predictive, level 3.0, 4:4:4, 8-bit&#xA;&#xA;FFmpeg : [libx264 @ 0x14ef25a20] 264 - core 164 r3095 baee400 - H.264/MPEG-4 AVC codec - Copyleft 2003-2022 - http://www.videolan.org/x264.html - options: cabac=0 ref=1 deblock=0:0:0 analyse=0:0 me=dia subme=0 psy=1 psy_rd=1.00:0.00 mixed_ref=0 me_range=16 chroma_me=1 trellis=0 8x8dct=0 cqm=0 deadzone=21,11 fast_pskip=1 chroma_qp_offset=6 threads=7 lookahead_threads=7 sliced_threads=1 slices=7 nr=0 decimate=1 interlaced=0 bluray_compat=0 constrained_intra=0 bframes=0 weightp=0 keyint=250 keyint_min=25 scenecut=0 intra_refresh=0 rc=crf mbtree=0 crf=23.0 qcomp=0.60 qpmin=0 qpmax=69 qpstep=4 ip_ratio=1.40 aq=0&#xA;&#xA;FFmpeg : [tcp @ 0x1500078a0] Connection to tcp://127.0.0.1:554?timeout=0 failed: Connection refused&#xA;[out#0/rtsp @ 0x14ef24b00] Could not write header (incorrect codec parameters ?): Connection refused&#xA;&#xA;FFmpeg : [vost#0:0/libx264 @ 0x14ef256d0] Error initializing output stream: &#xA;&#xA;FFmpeg : Conversion failed!&#xA;&#xA;FFmpeg process exited with code 1 and signal null&#xA;

    &#xA;

    This is the reason I believe the issue relies on the configuration of Ffmpeg and how to set it for this case. It would be great to being able to play this RTSP link in my VLC to conclude it as successfull.

    &#xA;

    I would apreciate any suggestions or guidence.&#xA;Thanks in advance.

    &#xA;

  • Invalid data found when processing input for mp3 file in ffmpeg

    15 juillet 2023, par Sai Chaithanya

    My custom compiled FFmpeg build is unable to read mp3 files, suddenly. Interestingly, the custom compiled FFmpeg build generated the mp3 file. For the past 1 year, it was successfully reading the file. I checked with the official FFmpeg build, and it works, so at least the file is not corrupted.

    &#xA;

    Official FFmpeg Build output :

    &#xA;

    ffmpeg version 6.0 Copyright (c) 2000-2023 the FFmpeg developers&#xA;built with gcc 11 (Ubuntu 11.3.0-1ubuntu1~22.04.1)&#xA;configuration: --arch=x86_64 --target-os=linux --disable-network --enable-small --disable-doc &#xA;               --disable-manpages --enable-static --disable-shared --disable-ffprobe &#xA;               --disable-ffplay --enable-lto --prefix=/home/greninja/Downloads/custom_build &#xA;               --extra-cflags=&#x27;-I/home/greninja/Downloads/custom_build/include -O3 -flto&#x27; &#xA;               --extra-ldflags=-L/home/greninja/Downloads/custom_build/lib&#xA;libavutil      58.  2.100 / 58.  2.100&#xA;libavcodec     60.  3.100 / 60.  3.100&#xA;libavformat    60.  3.100 / 60.  3.100&#xA;libavdevice    60.  1.100 / 60.  1.100&#xA;libavfilter     9.  3.100 /  9.  3.100&#xA;libswscale      7.  1.100 /  7.  1.100&#xA;libswresample   4. 10.100 /  4. 10.100&#xA;Input #0, mp3, from &#x27;./test.mp3&#x27;:&#xA;  Metadata:&#xA;    major_brand     : dash&#xA;    minor_version   : 0&#xA;    compatible_brands: iso6mp41&#xA;    encoder         : Lavf59.33.100&#xA;Duration: 00:03:07.09, start: 0.025057, bitrate: 192 kb/s&#xA;Stream #0:0: Audio: mp3, 44100 Hz, stereo, fltp, 192 kb/s&#xA;  Metadata:&#xA;    encoder         : Lavc59.46&#xA;At least one output file must be specified&#xA;

    &#xA;

    My Custom FFmpeg build output :

    &#xA;

    ffmpeg version N-108341-gb1a68127bb Copyright (c) 2000-2022 the FFmpeg developers&#xA;built with gcc 9 (Ubuntu 9.4.0-1ubuntu1~20.04.1)&#xA;configuration: --arch=x86_64 --target-os=linux --disable-everything --disable-network &#xA;               --disable-autodetect --enable-small --disable-debug --disable-doc &#xA;               --disable-manpages --enable-static --disable-shared &#xA;               --enable-decoder=&#x27;aac*,ac3*,opus,vorbis,mjpeg&#x27; &#xA;               --enable-demuxer=&#x27;mov,m4v,matroska,image2&#x27; --enable-protocol=file &#xA;               --enable-muxer=&#x27;mp3,mp4,webm,null&#x27; --enable-libmp3lame &#xA;               --enable-encoder=libmp3lame --enable-filter=aresample --enable-logging &#xA;               --enable-pthreads --enable-parser=&#x27;vorbis,opus,vp9,vp8,mpegaudio,mpegvideo,mpeg4video,ac3*,aac*,mjpeg,h264&#x27; &#xA;               --disable-ffprobe --disable-ffplay --enable-lto &#xA;               --prefix=/home/wade/Downloads/custom_build &#xA;               --extra-cflags=&#x27;-I/home/wade/Downloads/custom_build/include -O3 -flto&#x27; &#xA;               --extra-ldflags=-L/home/wade/Downloads/custom_build/lib&#xA;libavutil      57. 36.102 / 57. 36.102&#xA;libavcodec     59. 46.100 / 59. 46.100&#xA;libavformat    59. 33.100 / 59. 33.100&#xA;libavdevice    59.  8.101 / 59.  8.101&#xA;libavfilter     8. 49.100 /  8. 49.100&#xA;libswscale      6.  8.112 /  6.  8.112&#xA;libswresample   4.  9.100 /  4.  9.100&#xA;./test.mp3: Invalid data found when processing input&#xA;

    &#xA;

    What configuration am I missing ?

    &#xA;