Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (44)

  • 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

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

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

Sur d’autres sites (8053)

  • msvc/icl : Intel Compiler support on Windows

    25 mai 2013, par Alex Smith
    msvc/icl : Intel Compiler support on Windows
    

    Initial support for the ICL compiler on windows. Requires a new
    c99wrap with ICL support (1.0.2+).

    Currently not much different speed wise compared to msvc. In the
    future with a few changes it can be made to support the inline asm.
    This would be the primary reason for using it.

    Passed all fate tests, versions tested :
    13.1.1.171 (2013 Update 3) x86 and x64
    12.1.5.344 (2011 Update 11) x86 and x64

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] configure
  • Running ffmpeg silently on NodeJS (Windows)

    5 janvier 2021, par Paulo Bertotti

    I'm trying to run FFMPEG as a child process on NodeJS to extract a snapshot of an mp4 video on Windows. But even spawning the process with the "silent" option, it stills opening the command prompt for a short period. Any idea of what might be happening ?

    &#xA;

    The code looks something like this :

    &#xA;

    const snapshot = spawn(&#xA;              "ffmpeg",&#xA;              [&#xA;                "-ss",&#xA;                "00:00:07",&#xA;                "-i",&#xA;                `${this.directory}\\${file.name}`,&#xA;                "-vframes",&#xA;                "1",&#xA;                "-q:v",&#xA;                "2",&#xA;                `${this.directory}\\channel${this.channelNum}_snapshot.png`,&#xA;              ],&#xA;              { silent: true }&#xA;            );&#xA;

    &#xA;

  • Unable To Add Comment Metadata to MP3 File Using Windows FFMPEG

    4 avril 2019, par Muldesia

    I’ve previously used FFMPEG to successfully add various ID3 tags to MP3 files. However, I’m having trouble adding a ’comment’ tag.

    ffmpeg -i "InputFile.wav" -metadata comment="comment text" "OutputFile.mp3"

    ffprobe.exe, when examing the output file, shows the comment tag with the expected value. If I then go into the file properties in Windows, and view the Details tab, I see an empty comments field. Also appears empty in iTunes.

    If I give a value to the ’comments’ field using the Window’s file properties window, and then run ffprobe on the file again, I can see the comment tag with the updated value. So Windows can write to it successfully. The tag name appears identical as to when I use FFMPEG to set the comment.

    Does FFMPEG support writing the comment ID3 tag to MP3 files ? If so, how can I do this ?

    Many thanks !