Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (30)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

  • Python ffmpeg not working on heroku, no error but it just kind off freezes at that line

    17 octobre 2020, par MidasN74

    When I run the bot offline it just works but when i run it on the heroku server it doesn't. it prints the time right at the first time, then the bot connects to the channel and then it just freezes, i get no errors in the heroku logs, the bot just stays online. I've added the ffmpeg buildpack into the buildpacks in heroku and added ffmpeg to the requirements.txt. the time is also correct (i defined the time earlier using an other package) so it can asses the sound file but it just sort of freezes at the ffmep line and doesn't play the sound, and then doesn't print the time and doesn't disconnect.

    


    voice = await channel.connect()
print(time)
voice.play(discord.FFmpegPCMAudio(f'sounds/{arg}.mp3'))
print(time)
sleep(time)
await voice.disconnect()


    


  • ffmpeg reduce video size with least quality loss

    13 janvier 2017, par MattJ

    I am trying to reduce video size(as Mb) for storage saving since i will store them online. Could someone help me with the recommended parameters because as much as I have tried the video quality gets a big hit (clear squares). Current parameters size (480x ?) the length is variable, using mpeg4 videoCodec, 30 Fps and libmp3lame audio codec and then add native.
    Original :
    enter image description here

    What I get :

    enter image description here

    Ps. I am using node.js and fluent-ffmpeg, but that should not matter much. Uses local ffmpeg.

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