Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (23)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (4529)

  • Batch file to Drag and Drop files to convert via FFMPEG

    17 août 2022, par james_castrello

    this is probably my first time ever posting on stack overflow.

    


    I have successfully installed and tested ffmpeg.

    


    Now I want to create a batch file where I can drag and drop my .mp4 or .mkv files to convert to .mp3.

    


    I have no experience with ffmpeg or what parameters to use (the test was a copy/paste with the correct file names filled in) and I haven't touched batch scripting in a long time.

    


    Here is the batch script I found online that kind of works but gives me issues.

    


    @echo off
Pushd "Filepath"
for %%a in (*) do (
  ffmpeg -i "%%~fa" "%%~na.mp3"
)
pause;


    


    Batch file is stored on usb drive, along with the shortcut to it (also stored in same folder). The reason for the shortcut is to be able to run the batch as admin once a file is dropped in. The mp4 file is also stored on the same usb in the same folder.

    


    Things are starting to get kind of complicated, and a little above my pay grade.

    


    If anybody has solutions please let me know, maybe the batch script I stole off the internet is wrong.

    


  • Using ffmpeg, I'm trying to mute all 5.1 channels of audio for a period of time within a video

    1er novembre 2019, par cozmonaut

    I’m wanting to mute audio for a portion of a video clip while keeping the video exactly as it is.

    I came across this online.

    ffmpeg -i ~/Downloads/in.mov -vcodec copy -af "volume=enable='between(t,0,3)':volume=0" ~/Downloads/out2.mov

    Although it works, it converts the 5.1 audio to stereo. Isn’t it possible to mute the first 3 seconds of all 5.1 channels of audio, while keeping the 5.1 channels intact within the finished output video file ?

    Here are the specs on my video/audio clip :

    Stream #0:0[0x100]: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], Closed Captions, 59.94 fps, 59.94 tbr, 90k tbn, 119.88 tbc
    Stream #0:1[0x101]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, stereo, fltp, 192 kb/s
    Stream #0:2[0x102]: Audio: ac3 ([129][0][0][0] / 0x0081), 48000 Hz, 5.1(side), fltp, 384 kb/s

    Thank you.

  • Is there a way to send ffmpeg data directly to a TCP Client ?

    3 février 2021, par KosmosisDire

    I am using ffmpeg to send screen capture directly to a C# TCP server. However, due to some bug or technical limitation, the Quest 2 (my build device) cannot bind ports. (There is very little info regarding this bug online, but as far as I can tell I can't get around it). So I cannot have a C# server on the Quest, I must have a client on the quest to receive data. However, ffmpeg sends data as a TCP client. So I need ffmpeg to act as a server.

    


    I tried sending the data through a server on my computer that then sends the data to the C# client. But I get less than 1 fps with huge lag. Normally, I get a good 30 fps with low latency when sending directly to a server.

    


    So my question :

    


    Is there a way to get ffmpeg data directly to a client, or indirectly without increasing the latency ?

    


    Here is the ffmpeg command I am using :

    


    ffmpeg -f gdigrab -i desktop -pixel_format rgb8 -video_size 896x504 -vf scale=896:504 -framerate 5 -r 30 -f rawvideo tcp://127.0.0.1:846


    


    I can include code for my C# client and server attempts as well as the middleman server, if I need.

    


    Thanks for any help !