Recherche avancée

Médias (91)

Autres articles (39)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9126)

  • Merge commit 'ffb9b7a6bab6c6bfd3dd9a7c32e3724209824999'

    11 septembre 2018, par James Almer
    Merge commit 'ffb9b7a6bab6c6bfd3dd9a7c32e3724209824999'
    

    * commit 'ffb9b7a6bab6c6bfd3dd9a7c32e3724209824999' :
    libfdk-aac : Consistently use a proper version check macro for detecting features

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/libfdk-aacdec.c
    • [DH] libavcodec/libfdk-aacenc.c
  • How to stop ffmpeg from manipulating mp3 metadata ?

    13 septembre 2024, par he rambled

    I'm using ffmpeg to change bitrate of my mp3 files. It works well, but one thing is very frustrating.

    &#xA;&#xA;

    ffmpeg automatically changes some of metadata fields. Specifically it converts ID3v2.3 to ID3v2.4, and it does it incorrectly. For example, it writes TYER field that actually does not exist in ID3v2.4. But the most frustrating thing is, it converts USLT field to lyrics-LANGCODE(like lyrics-eng). Most of music players does not recognise this tag !

    &#xA;&#xA;

    I don't want ffmpeg to mess up with metadata fields. I just want it to change bitrate. Is there anyway to tell ffmpeg that it should not touch any metadata fields ?

    &#xA;&#xA;

    I'm running ffmpeg 4.0.2 in windows 64bit. Options are :

    &#xA;&#xA;

    ffmpeg -i input.mp3 -codec:a libmp3lame -b:a 128k output.mp3&#xA;

    &#xA;&#xA;

    And no, -id3v2_version 3 did not help. It corrected TYER problem, but not lyrics problem.

    &#xA;

  • Looping over images in a batch script [on hold]

    31 juillet 2018, par Santosh Kr

    I’m trying to convert .jpg images in a directory to .yuv images with the ffmpeg command :

    ffmpeg -i 1.jpg -s 6720x3360 -pix_fmt nv12 1.yuv

    I’m trying to loop over them using a batch script as follows :

    set "sourcedir=C:\Users\santvenk\Desktop\Repo\Testing"
    PUSHD "%sourcedir%"
    for %%f in (*.jpg) DO ffmpeg -i "%%f" -s 6720x3360 -pix_fmt nv12 "%sourcedir%\%%~nf.yuv"

    But this is how it’s printing in the command prompt :

    ffmpeg -i "2.JPG" -s 6720x3360 -pix_fmt nv12 "C:\Users\santvenk\Desktop\Repo\Testing\2.JPG.yuv"

    How do I fix this ?

    EDIT : I had made few syntactical errors and now I have corrected it. The correct syntax for anyone looking for a solution to a similar problem is :

    FOR %%f in (*.jpg) DO ffmpeg -i %%f -s 6720x3360 -pix_fmt nv12 %%~nf.yuv