Recherche avancée

Médias (91)

Autres articles (21)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (4587)

  • Latest docs

    28 octobre 2012, par Scott Schiller

    m doc/generated/script/soundmanager2.html Latest docs

  • Youtube-dl Python3 ERROR : audio conversion failed : No such file or directory

    21 avril 2020, par WhiteAB

    I was building a small executable, using the youtube-dl module and it is giving me the following error, and I have tried several things and nothing has worked for me

    



    import pyperclip

url=pyperclip.paste()

os.system('''youtube-dl  --no-playlist -x --prefer-ffmpeg --audio-format mp3 --audio-quality 0  '''+ url)


    



    when i try to run it does this

    



    [youtube] Ak6ynwcCv1Q: Downloading webpage
[youtube] Downloading just video Ak6ynwcCv1Q because of --no-playlist
[download] Bad Computer - Disarray [Monstercat Release]-Ak6ynwcCv1Q.webm has already been downloaded
[download] 100% of 4.49MiB
[ffmpeg] Destination: Bad Computer - Disarray [Monstercat Release]-Ak6ynwcCv1Q.mp3
ERROR: audio conversion failed: file:Bad Computer - Disarray [Monstercat Release]-Ak6ynwcCv1Q.mp3: No such file or directory


    



    I believe that I need define a path to the mp3 file but I don't know where this path should be defined

    


  • Calling one CLU(command line utility) with argument from another CLU in cmd ( youtube-dl from ffmpeg with additional arguments)

    3 septembre 2019, par beastboy

    I am able to run youtube-dl using command prompt , I have already kept youtube-dl.exe in the ffmpeg main folder and the ffmpeg bin folder and also I have kept ffmpeg.exe in the youtube_dl folder,

    now I am trying to call ffmpeg.exe in command prompt from youtube-dl with some additional arguments in ffmpeg and vice versa with the below commands
    and getting the following erros.

    Command

    C:\ffmpeg>youtube-dl -f 160 https://www.youtube.com/watch?v=u3APNJYMrLo --hls-prefer-ffmpeg --external-downloader ffmpeg --external-downloader-args -ss 00:00:20 -to 00:00:30

    Command

    C:\youtube_dl>youtube-dl -f 160 https://www.youtube.com/watch?v=u3APNJYMrLo --hls-prefer-ffmpeg --external-downloader ffmpeg --external-downloader-args -ss 00:00:20 -to 00:00:30

    Error

    Usage: youtube-dl [OPTIONS] URL [URL...]

    youtube-dl: error: using output template conflicts with using title, video ID or auto number

    and

    Command

    ffmpeg -ss 00:00:20 -to 00:00:30 -i "$(youtube-dl -f 160 -g https://www.youtube.com/watch?v=u3APNJYMrLo)" -c copy youtube.mp4

    Error

    $(youtube-dl: No such file or directory

    Command

    ffmpeg -ss 00:00:20 -to 00:00:30 -i $(youtube-dl -f 160 -g https://www.youtube.com/watch?v=u3APNJYMrLo) -c copy youtube.mp4

    Error

    $(youtube-dl -f 160 -g https://www.youtube.com/watch?v=u3APNJYMrLo): Invalid argument

    as per my understanding and the documentation pages of youtube-dl and ffmpeg the commands should work and should download the videos in the specified resolution but its not working.
    Can someone guide me on this , what is wrong with the code and how to rectify it if any.