Recherche avancée

Médias (91)

Autres articles (36)

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

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

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

Sur d’autres sites (5690)

  • Ffmpeg change audio file bitrate and pass the output to pipe

    11 novembre 2020, par kmrinmoy07

    I used to change the bitrate of audio files by using

    


      ffmpeg -i input.mp3 -ab 96k output.mp3


    


    and it works perfectly. Now I want to pass the output as pipe in Ffmpeg and perform some other task. I have took the reference of this documentation and modified the above ffmpeg command into

    


    ffmpeg -i input.mp3 -ab 96k pipe:1 | aws s3 cp - s3://mybucket/output.mp3


    


    But this doesn't work.
Only if i use pipe as below then it works.

    


    ffmpeg -i input.mp3 -f mp3 pipe:1 | aws s3 cp - s3://mybucket/output.mp3


    


    But this doesn't change the bitrate of the audio. Can anyone please help me how can I achieve my target of changing the bitrate and passing the output as Pipe

    


  • Is there any way to change subtitle font from a mkv file in batch ?

    20 octobre 2019, par Sadao Maou

    I have been using aegis subs till now but i need to do in batch is there any way to do it in batch from ffmpeg or some cli ?

  • Change video file used for saving in table

    9 août 2017, par CR7

    I am trying to convert uploaded video file to mp4 format. It is working properly. But after that in my DB, it is saving the old video file details instead of converted file. Also the converted file is saved in the uploaded video name and extension. I am using streamio-ffmpeg gem

    In my model I have the following code.

    mount_uploader :video, VideoUploader

    and in the video_uploader.rb

    require 'streamio-ffmpeg'

    class VideoUploader < CarrierWave::Uploader::Base
     process :encode_video

     def encode_video
       file = FFMPEG::Movie.new(current_path)      
       filename = "#{current_path.chomp(File.extname(current_path))}.mp4"
       file.transcode(filename)
       FileUtils.mv(filename, current_path)
     end  
    end

    How can I set the current_path file to the converted file path