Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (86)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (13435)

  • Bash Script to convert all flv file in a directory to mp3

    11 août 2014, par UnbrandedTech

    This is my code so far.

    #!/bin/bash
    #James Kenaley
    #Flv to Mp3 directory converter

    find /home/downloads -iname "*.flv" | \
    while read I;
    do
       `ffmpeg -i ${I} -acodec copy  ${I/%.flv/.mp3}`
       echo "$I has been converted"
    done

    but its picking up white spaces in the names of the flv files and throws a error saying its not in the directory. how do make it use the whole file name and not the just the first word before the space ?

  • h264_slice : Wait for refs to be available before we use them in error concealment

    12 décembre 2016, par Derek Buitenhuis
    h264_slice : Wait for refs to be available before we use them in error concealment
    

    This could happen when there was a frame number gap and frame threading was used.

    Debugging-by : Ronald S. Bultje <rsbultje@gmail.com>
    Debugging-by : Justin Ruggles <justin.ruggles@gmail.com>
    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    CC:libav-stable@libav.org
    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavcodec/h264_slice.c
  • FFMPEG loses drop frame flag when converting from 29.97 mov to mp4

    18 décembre 2018, par dementis

    I’ve got a 29.97 drop frame video, proven with the mediainfo output lines framerate: 29.97 and Delay_DropFrame: Yes. I want to convert it to an mp4.

    Running ffmpeg -i INPUT.mov -y -b:v 1500k -vcodec libx264 -vf scale=640:-1 -pix_fmt yuv420p -movflags +faststart -strict -2 OUTPUT.mp4
    yields a non-drop frame video. When I run mediainfo against the new file, I can see that the framerate is still 29.97, but there is no indication of drop frame anymore.
    This also happens when i run the above outputting an mov, and also when i run ffmpeg -i INPUT.mov OUTPUT.mov, so i think it’s purely in the conversion where the data is being lost.

    One lead i’m following is that mediainfo outputs 3 sections for the original mov, [General], [Video], [Other], while my new mp4 only outputs [General] and [Video].

    My FFMPEG version is 3.4.1
    Any ideas ?