Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (101)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (9174)

  • avformat/hls : copy rw_timeout from parent to child AVIOContexts.

    17 avril 2018, par Richard Shaffer
    avformat/hls : copy rw_timeout from parent to child AVIOContexts.
    

    The rw_timeout option is currently not applied when opening media playlist,
    segment, or encryption key URLs. This can cause the HLS demuxer to block
    indefinitely, even when the rw_timeout option has been specified. This change
    simply enables carrying over the rw_timeout option when the demuxer opens these
    URLs.

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Richard Shaffer <rshaffer@tunein.com>

    • [DH] libavformat/hls.c
  • qsv : Join the derived session to the parent

    24 septembre 2017, par Luca Barbato
    qsv : Join the derived session to the parent
    

    Should improve the performance on multiple transcoding from a single
    source.

    • [DBH] libavcodec/qsv.c
    • [DBH] libavfilter/qsvvpp.c
  • Writing metadata (Artist Name, Song Title, Year, Album, Duration, Genre) to mp3/m4a audio file using youtube-dl (subsequent AtomicParsely error)

    10 décembre 2016, par IRNotSmart

    I am extracting audio only from youtube videos using youtube-dl. I would like to write the metadata (i.e. Artist Name and Song Title, Year, Album, Duration, Genre) into the mp3/m4a file after downloading. My attempt to accomplish this starts with this code :

    @echo off
    youtube-dl --format m4a/mp3 --youtube-skip-dash-manifest --embed-thumbnail -o "%%(title)s.%%(ext)s" --metadata-from-title "%%(artist)s - %%(title)s" --add-metadata 2Y6Nne8RvaA
    pause

    This code produces the following output :

    [youtube] 2Y6Nne8RvaA: Downloading webpage
    [youtube] 2Y6Nne8RvaA: Extracting video information
    [youtube] 2Y6Nne8RvaA: Downloading thumbnail ...
    [youtube] 2Y6Nne8RvaA: Writing thumbnail to: Kungs vs Cookin' on 3 Burners - Thi
    s Girl.jpg
    [download] Destination: Kungs vs Cookin' on 3 Burners - This Girl.m4a
    [download] 100% of 2.99MiB in 00:01
    [ffmpeg] Correcting container in "Kungs vs Cookin' on 3 Burners - This Girl.m4a"

    [fromtitle] parsed title: This Girl
    [fromtitle] parsed artist: Kungs vs Cookin' on 3 Burners
    [ffmpeg] Adding metadata to 'Kungs vs Cookin' on 3 Burners - This Girl.m4a'
    ERROR: AtomicParsley was not found. Please install.
    Press any key to continue . . .

    As you can see, I am able to successfully able to add a few of the tags from the video, but not all of them and the Year is royally screwed up.
    enter image description here

    What is this AtomicParsely error and how do I remedy it ? Do I need this program to correctly add all the Metadata to the file that I want, or can this be accomplished in another way ?

    Referencing Steven Penny’s post, FFmpeg metadata not showing in Windows ?, is solving this problem as simple as using an ffmpeg command ?

    When I do a google search for this song, the first link that shows is the exact link I’m using on YouTube, and the search shows pertinent metadata (see below). I’m not sure if this data is input manually by users, or if Google mined this from the video :
    enter image description here

    I admit that I’m new to using youtube-dl and ffmpeg, but with the help of the commenters on StackOverflow, I’m learning more each day. This post is a follow-up to my previous question : Downloading YouTube to mp3 and writing metadata (artist/song title) to mp3 file using youtube-dl