Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (61)

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

Sur d’autres sites (11770)

  • libavformat/mov.c : allow QuickTime metadata to come after traks

    4 décembre 2015, par Neil Birkbeck
    libavformat/mov.c : allow QuickTime metadata to come after traks
    

    QuickTime metadata can come after trak data. Add indicator for which trak is being parsed (-1 if none) so that global metadata after the trak can be parsed.

    Signed-off-by : Neil Birkbeck <neil.birkbeck@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • Python script and equivalent command do not run the same

    19 août 2021, par user32882

    I would like to use youtubedl to download the audio from a YouTube video into an mp3 file. I came up with the following command to do so :

    &#xA;

    youtube-dl -x --audio-format mp3 https://www.youtube.com/watch?v=SF8DGbfOFig&amp;ab_channel=derang

    &#xA;

    When I run the above command through my command line, it seems that I successfully manage to download the file in mp3 format :

    &#xA;

    [youtube] SF8DGbfOFig: Downloading webpage&#xA;[download] Destination: Total Science &amp; S.P.Y - Piano Funk (Ft. Riya &amp; DāM FunK) [320k]-SF8DGbfOFig.webm&#xA;[download] 100% of 5.57MiB in 00:03&#xA;[ffmpeg] Destination: Total Science &amp; S.P.Y - Piano Funk (Ft. Riya &amp; DāM FunK) [320k]-SF8DGbfOFig.mp3&#xA;Deleting original file Total Science &amp; S.P.Y - Piano Funk (Ft. Riya &amp; DāM FunK) [320k]-SF8DGbfOFig.webm (pass -k to keep)&#xA;

    &#xA;

    I then tried to convert the above command to an equivalent python script as follows :

    &#xA;

    import youtube_dl&#xA;links = ["https://www.youtube.com/watch?v=SF8DGbfOFig&amp;ab_channel=derang"]&#xA;ydl_args = {&#xA;        &#x27;audioformat&#x27;: &#x27;mp3&#x27;,&#xA;        &#x27;outtmpl&#x27;: &#x27;%(title)s.%(ext)s&#x27;,&#xA;        &#x27;extractaudio&#x27;: True&#xA;    }&#xA;with youtube_dl.YoutubeDL(ydl_args) as ydl:&#xA;    results = ydl.download(links)&#xA;

    &#xA;

    However, this does not succeed in generating an mp3 file of the audio. These are the logs I am getting :

    &#xA;

    WARNING: Requested formats are incompatible for merge and will be merged into mkv.&#xA;[download] Destination: Total Science &amp; S.P.Y - Piano Funk (Ft. Riya &amp; DāM FunK) [320k].f135.mp4&#xA;[download] 100% of 4.42MiB in 00:02&#xA;[download] Destination: Total Science &amp; S.P.Y - Piano Funk (Ft. Riya &amp; DāM FunK) [320k].f251.webm&#xA;[download] 100% of 5.57MiB in 00:03&#xA;[ffmpeg] Merging formats into "Total Science &amp; S.P.Y - Piano Funk (Ft. Riya &amp; DāM FunK) [320k].mkv"&#xA;Deleting original file Total Science &amp; S.P.Y - Piano Funk (Ft. Riya &amp; DāM FunK) [320k].f135.mp4 (pass -k to keep)&#xA;Deleting original file Total Science &amp; S.P.Y - Piano Funk (Ft. Riya &amp; DāM FunK) [320k].f251.webm (pass -k to keep)&#xA;

    &#xA;

    What am I doing wrong here ? Aren't my command and python script equivalent ?

    &#xA;

  • Android FFMPEG doesn't recognize file : protocol

    6 mai 2013, par kev

    I'm running an android ffmpeg build through the Runtime.getRuntime().exec() command
    Problem is that when i specify the input as a file i get this error :

    E/MainActivity(18168): file:/mnt/sdcard/young.flv: Protocol not found

    Initially i just specified the file name without the "file :" prefix and still get the same error. How can i specify input files ?