Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (55)

  • 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 ;

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (8182)

  • Revision 195883023b : VPX : subpixel_8t_ssse3 asm using x86inc This is based on the original patch opt

    2 septembre 2015, par Scott LaVarnway

    Changed Paths :
     Modify /vpx_dsp/vpx_dsp.mk


     Modify /vpx_dsp/x86/vpx_subpixel_8t_intrin_ssse3.c


     Modify /vpx_dsp/x86/vpx_subpixel_8t_ssse3.asm



    VPX : subpixel_8t_ssse3 asm using x86inc

    This is based on the original patch optimized for 32bit
    platforms by Tamar/Ilya and now uses the x86inc style asm.
    The assembly was also modified to support 64bit platforms.

    Change-Id : Ice12f249bbbc162a7427e3d23fbf0cbe4135aff2

  • ffmpeg droplet with alternative outputs based on user input

    13 janvier 2015, par cathor

    I’ve been looking into scripting a droplet in applescript where i can drop a bunch of videos on the app, get a dialog box, and convert the files with different settings (mainly resolution, gamma, rotation) based on user input via the dialog. The encoded files should be placed in a folder called "mp4" in the source dir.

    How would i go ahead and set the dropped files as a variable to feed into the ffmpeg "-i" switch ?

    How do i get the directory of the source files to run makedir in that folder ?

    TIA

    Calle

  • FFMPEG H.265 C++ based encoder : avcodec_open2 fails

    22 juillet 2021, par rt7085

    My FFMPEG based c-code the correctly produces h.264 encoded video files when I set the codec ID to "AV_CODEC_ID_H264". When I change it to "AV_CODEC_ID_HEVC" I get this output from these particular lines of code.

    


    ret = avcodec_open2(c, codec, &opt);
    av_dict_free(&opt);
    if (ret < 0) {
        fprintf(stderr, "Could not open video codec: %s\n", av_err2str(ret));
        exit(1);
    }


    


    [hevc_mf @ 000001F604B62F00] could not find any MFT for the given media type
[hevc_mf @ 000001F604B62F00] could not create MFT
Could not open video codec: Function not implemented


    


    I have the FFMPEG version 4.1 build. I was under the assumption that H.265 codec where part of this release. What am missing ?