Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (79)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (8043)

  • How to compare audio channel differences with FFmpeg ?

    30 septembre 2021, par Deivedux

    I'm making a little script for myself to quickly go through a large volume of video and audio files to compress audio for extra space, but for extra efficiency, I also don't want to waste space by keeping both channels if they're identical.

    


    My issue is that I don't know how to, let's say, check if their decoded versions are at least a 99.99% match, in which case I'd only encode the left channel into mono.

    


    How would I go about doing this ?

    


  • ffmpeg : convert video1->images->video2 produce different number of seconds in video1,video2

    25 mai 2016, par mrgloom

    I’m trying to convert video to images, make some image processing and then convert images back to video.

    Code :

    VIDEO_PATH="/home/user/myvideo.mp4"
    SEPARATOR='/'
    BITRATE="4600k"

    VIDEO_BASE_DIR=`dirname $VIDEO_PATH`
    FRAMES_DIR=$VIDEO_BASE_DIR$SEPARATOR"Frames"
    mkdir $FRAMES_DIR

    #check info of original video
    ./ffprobe -show_streams $VIDEO_PATH

    #video to images
    ./ffmpeg -i $VIDEO_PATH $FRAMES_DIR$SEPARATOR"image%d.png"

    #images to video
    ./ffmpeg -y -pattern_type glob -i $FRAMES_DIR$SEPARATOR'*.png' -r 30 -vcodec mpeg4 -b:v $BITRATE $VIDEO_BASE_DIR$SEPARATOR$BITRATE.mp4

    #check info of produced video
    ./ffprobe -show_streams $VIDEO_BASE_DIR$SEPARATOR$BITRATE.mp4

    The problem is that length in second of original and produced videos doesn’t match.

    In ffprobe output I can see that r_frame_rate=30/1 for both videos.
    And nb_frames don’t match nb_frames=339 for first and nb_frames=407 for second video.

    UPDATE :

    Seems this command with -framerate solved the problem :

    ./ffmpeg -framerate 30 -y -start_number 1 -i $FRAMES_DIR$SEPARATOR"image%d.png" -r 30 -vcodec h264 -b:v $BITRATE $VIDEO_BASE_DIR$SEPARATOR$BITRATE.mp4
  • VP8/WebM : Adobe is the key to open video on the Web

    22 mai 2010, par silvia

    Google have today announced the open sourcing of VP8 and the creation of a new media format WebM. Technical Challenges As I predicted earlier, Google had to match VP8 with an audio codec and a container format – their choice was a subpart of the Matroska format and the Vorbis codec. To complete (...)