Recherche avancée

Médias (91)

Autres articles (81)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

  • avfilter/vf_unsharp : enable slice threading

    7 mai 2019, par Ruiling Song
    avfilter/vf_unsharp : enable slice threading
    

    benchmarking with a simple command :
    ffmpeg -i 1080p.mp4 -vf unsharp=la=3:ca=3 -an -f null /dev/null
    with the patch, the fps increase from 50 to 120 on my local machine (i7-6770HQ).

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

    • [DH] libavfilter/unsharp.h
    • [DH] libavfilter/vf_unsharp.c
  • when all filter are applied with extreme value

    13 novembre 2013, par user2361120

    when I applied three filter(such as bass treble,equalizer) of ffmpeg simultaneously with extreme value .i am unable to hear song from both speaker of headphone.

    please suggest me any solution .I already wasted three week on it

  • Uncomplete path recognition (FFmpeg) [duplicate]

    23 septembre 2022, par Francesco Battisti

    The script should download an entire playlist (only one song for this test) from YT and convert all the downloaded MP4 to MP3 :

    &#xA;

    from distutils import extension&#xA;from pytube import Playlist&#xA;import os&#xA;&#xA;link = input("Enter YouTube Playlist URL: ")&#xA;&#xA;yt_playlist = Playlist(link)&#xA;&#xA;for video in yt_playlist.videos:&#xA;    downloaded_file = video.streams.filter(only_audio=True).first().download(r"C:\Users\Francesco\Desktop\Music\JC&#x27;s\&#x2B;&#x2B;&#x2B;NEW&#x2B;&#x2B;&#x2B;")&#xA;    file, extension = os.path.splitext(downloaded_file)&#xA;    # Convert video into .mp3 file&#xA;    os.system(&#x27;ffmpeg -i {file}{ext} {file}.mp3&#x27;.format(file=file, ext=extension))&#xA;

    &#xA;

    Now, when I put the playlist's url in input, the script downloads the song but it can't convert it because :

    &#xA;

    C:\Users\Francesco\Desktop\Music\JC&#x27;s\&#x2B;&#x2B;&#x2B;NEW&#x2B;&#x2B;&#x2B;\Ariete: No such file or directory&#xA;

    &#xA;

    but the right path is :

    &#xA;

    C:\Users\Francesco\Desktop\Music\JC&#x27;s\&#x2B;&#x2B;&#x2B;NEW&#x2B;&#x2B;&#x2B;\Ariete - LULTIMA NOTTE Testo  Lyrics&#xA;

    &#xA;

    so it stops when is there a space in directory name...

    &#xA;