Recherche avancée

Médias (91)

Autres articles (77)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (10869)

  • avfilter/vf_gblur : add x86 SIMD optimizations

    15 mai 2019, par Ruiling Song
    avfilter/vf_gblur : add x86 SIMD optimizations
    

    The horizontal pass get 2x performance with the patch
    under single thread.

    Tested overall performance using the command(avx2 enabled) :
    ./ffmpeg -i 1080p.mp4 -vf gblur -f null /dev/null
    ./ffmpeg -i 1080p.mp4 -vf gblur=threads=1 -f null /dev/null
    For single thread, the fps improves from 43 to 60, about 40%.
    For multi-thread, the fps improves from 110 to 130, about 20%.

    Signed-off-by : Ruiling Song <ruiling.song@intel.com>

    • [DH] libavfilter/gblur.h
    • [DH] libavfilter/vf_gblur.c
    • [DH] libavfilter/x86/Makefile
    • [DH] libavfilter/x86/vf_gblur.asm
    • [DH] libavfilter/x86/vf_gblur_init.c
  • FFMPEG get ID3v2 tag size

    5 février 2016, par Riverchimp

    In ffmpeg is there a way to get the size of an ID3v2 tag ? When I open the song file with avformat_open_input ffmpeg prints out these logs.

    V/FFMPEG: Probing mp3 score:12 size:2048
    V/FFMPEG: Format mp3 probed with size=2048 and score=50
    V/FFMPEG: id3v2 ver:3 flags:00 len:1075646
    V/FFMPEG: Skipping 0 bytes of junk at 1075656.

    I could parse these logs to get the size but I would prefer a more robust solution.

  • FFmpeg - inverting one of two audio files and merging them

    3 février 2023, par kubinka0505

    I want to merge two files with FFmpeg, but one with inverted phase.

    &#xA;

    I've used following command, but It doesn't work.

    &#xA;

    ffmpeg -i "Song.wav" -i "Vocals.wav" -filter_complex "[0:a][1:a]amerge=inputs=2,pan=stereo|c0=c0|c1=-c1[a]" -map [a] "Instrumental.wav"

    &#xA;

    [Parsed_pan_1 @ 04c69000] Expected in channel name, got "-c1"&#xA;[AVFilterGraph @ 04b9bd80] Error initializing filter &#x27;pan&#x27; with args &#x27;stereo|c0=c0|c1=-c1&#x27;&#xA;Error initializing complex filters.&#xA;Invalid argument&#xA;

    &#xA;

    I've also tried multiple variants of c0code>, etc.

    &#xA;

    What command should I use ? Or maybe there's an easier workaround ?

    &#xA;