Recherche avancée

Médias (91)

Autres articles (108)

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

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

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

Sur d’autres sites (10578)

  • Speed up FLAC__bitwriter_write_byte_block (metadata writing)

    2 mars 2019, par Robert Kausch
    Speed up FLAC__bitwriter_write_byte_block (metadata writing)
    
    • [DH] src/libFLAC/bitwriter.c
  • avcodec/qtrle : improve 24bbp decoding speed

    26 février 2019, par Martin Vignali
    avcodec/qtrle : improve 24bbp decoding speed
    

    benchmark on x86_64 :
    mainly raw data : 20 -> 39 fps
    mainly rle data : 97 -> 119fps

    • [DH] libavcodec/qtrle.c
  • Speed up a video without audio to 2x with FFmpeg in android

    12 décembre 2020, par VoidMain

    I am working on a project in which I need to speed up a mute video. I did a little digging around and found the following command.

    



    ffmpeg -i input.mkv -filter:v "setpts=PTS/2" output.mkv 


    



    Tried to use it in android as follows.

    



    new String[]{"-y", "-i", inputFileAbsolutePath, "-filter_complex", "setpts=PTS/2", "-map", "[v]", "-map", "[a]", "-b:v", "2097k", "-r", "60", "-vcodec", "mpeg4", fileOutput};


    



    It doesn't even show anything in the Logcat.

    



    I have also tried a few other solutions but no luck.
Any help would be appreciated.
Thanks.