Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (62)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (11216)

  • How to modify pitch in audio of video file with singing voices

    9 janvier 2020, par Keith Bennett

    I have some karaoke .mp4 video files (legally obtained) for Thai songs, and want to convert the pitch downward to fit my singing range. I’ve gotten most of the way there thanks to https://superuser.com/questions/292833/how-to-change-audio-frequency/1076762#1076762
    using a command line like this :

    ffmpeg -i in.mp4 -af 'asetrate=35280.0,atempo=1.25' out.mp4

    ...but the human singing voices don’t sound natural at the modified pitch.

    Is there a better way to change the pitch ? I know some commercial products can do this.

    By the way, I wrote a Ruby script to simplify this ffmpeg call ; it’s at https://gist.github.com/keithrbennett/9ba7043792bfb2fcc92d615076a8413f. It enables you to specify a single factor, and modifies both pitch and tempo accordingly.

  • What does ffprobe -show_packets output means

    27 mai 2014, par Sajjad Ashraf

    When i run this command ffprobe -print_format json -show_packets -i sound.mp3 i get an array filled with small objects like these

           {
               "codec_type": "audio",
               "stream_index": 0,
               "pts": 3157032960,
               "pts_time": "223.712653",
               "dts": 3157032960,
               "dts_time": "223.712653",
               "duration": 368640,
               "duration_time": "0.026122",
               "size": "418",
               "pos": "3579819",
               "flags": "K"
           },

    What do these values mean, i am trying to get the frequencies of sound at every second. I have searched the ffmpeg and ffprobe documentation but no luck.

  • Ffmpeg images to video

    29 septembre 2013, par user1306579

    I merge images with ffmpeg.
    I use command

    ffmpeg -v -y -r 12.245451/1 -i /tmp/images/img%03d.jpg -i /tmp/sounds/sound.3gp -vcodec mpeg4 out.avi

    with -r I want to tell ffmpeg that I want to have 12.245451 images per second. It works only if I call ffmpeg with int values like -r 12/1. How can I tell ffmpeg -r 12.245451 ?

    The problem is that actual rate is 12.245451 if I pass -r 12/1, sound shifts. How can I deal with it ?