Recherche avancée

Médias (2)

Mot : - Tags -/map

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (6784)

  • How to save frames to the video using their timestamps (variable frame rate, vfr, PyAV)

    9 juillet 2019, par Vladyslav Moisieienkov

    Shorty, I would like to write frames to the video according to their timestamps. FFmpeg example could be found here - How do I render a video from a list of time-stamped images ? , and I need something like that in Python. Probably PyAV library should be used as it provides bindings for FFmpeg. Maybe, it also possible by using OpenCV.

  • How to save file to s3 after processing by ffmpeg using carrierwave

    25 septembre 2013, par loganathan

    I am trying to convert the bit rate of the Mp3 file before uploading to S3, I can able to create version for the mp3 file but the version is not saving in s3 instead original file is uploading to s3.

     version :bitrate_96k do
       process :resample => "96"
     end

    def resample(bitrate)
       tmp_path   = File.join( File.basename(current_path), "tmpfile" )
       File.rename current_path, tmp_path
       audio_details  = `ffmpeg -i '#{tmp_path}' 2>&1`.split(",").split("\n").flatten
       file_bitrate =  audio_details.grep(/bitrate/).grep(/bitrate/).join.split("bitrate: ").last.split("\s").first
       unless file_bitrate == bitrate
         `ffmpeg -i #{tmp_path.shellescape}  -acodec libmp3lame -y -ab 96k #{current_path.path}`
         File.unlink(current_path)
        FileUtils.mv(temp_path, current_path)
       end
     end
  • FFMPEG : how can I properly add a text overlay to my video and save it to a thumbnail ?

    12 août 2013, par AWainb

    I have a ffmpeg command that goes to a url and successfully creates thumbnails at specified intervals. What I would like to do is add the time (eg : 03:45:20) to the bottom-left corner of the video in white text with a black shadow. I have seen a few examples online with drawtext but none of them seem to work with my current command :

    C:\ffmpeg\bin\ffmpeg.exe -ss 00:23:12 -i "http://myvideourl.com/videofile.mp4" -f mjpeg -vframes 1 -y C:\thumb2.jpg

    Can someone suggest how I can implement the correct drawtext filter with my current command so that it outputs the thumbnail with the duration stamped at the bottom-left corner ?