Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (84)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (5581)

  • c# - WAV file trimming and adding silence

    2 janvier 2017, par Piotr C

    I have two recordings of same event, different lengths, started at different times. I want to synchronize them, time offset is known. I want to achieve the following :

    1. Align second one in time by the time offset.
    2. Trim second one to match the length of the first one
    3. When there is nothing to trim, add silence to match the length of the first one.

      I found the way to trim the audio, but I couldn’t find solution for adding silence. Is there any way to do this with NAudio, ffmpeg or Aurio ?

  • ffmpeg playback speed lost on re-encoding

    30 octobre 2018, par Salman Muhammad

    so I am trying to encode a video using myffmpeg with the following custom command to increase the playback speed by 10 times

    -filter_complex "[0:v]setpts=PTS/10[v];[0:a]atempo=10.0[a]" -map "[v]" -map "[a]"

    all goes well and the playback speed in output file is indeed 10x the original speed. however, when I use this output file as a source file for another encode job (or just a conversion to another format job) it loses the speed (goes back to normal). I’m not sure what I’m missing here as I am a beginner :) hoping for some help here.

  • How to include font in FFMPEG command without using the fontfile option ?

    26 novembre 2020, par Avinash Modi

    I am using the following command to add watermark in my video using font TIMESNEWROMAN :

    


    ffmpeg -i input.webm -vf "drawtext=text='© Krishna':fontfile=C//:/Windows/Fonts/times.ttf:x=(main_w-text_w-10):y=(main_h-text_h-10):fontsize=32:fontcolor=black:box=1:boxcolor=white@0.5: boxborderw=5" -preset ultrafast output.mp4


    


    Now, I want to provide the font TIMESNEWROMAN or any other font instead of fontfile path. Is it possible to do that ?