Recherche avancée

Médias (91)

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (7742)

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

    


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

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