Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (109)

  • 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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

Sur d’autres sites (10680)

  • MPEG4 X264 vs NVENC H264 encoding play compatibility on old devices

    28 mars 2021, par Root

    I always encoding videos on x264, this encoding work well on old devices or mobile phones.
    
To increase the encoding speed I try to replace encoding method with NVENC H264 with nVidia GPU.

    


    Question 1 : Device combability for play the NVENC H264 is different with x264 ?
    
Question 2 : Old devices can play NVENC H264 file same as x264 ?

    


    Old devices : (All devices that can play x264) Android 6+, TV Setup box, TV, Google chrome 48+

    


  • MPEG4 X264 vs NVENC H264 encoding play compatibility on old devices

    28 mars 2021, par Root

    I always encoding videos on x264, this encoding work well on old devices or mobile phones.
    
To increase the encoding speed I try to replace encoding method with NVENC H264 with nVidia GPU.

    


    Question 1 : Device combability for play the NVENC H264 is different with x264 ?
    
Question 2 : Old devices can play NVENC H264 file same as x264 ?

    


    Old devices : (All devices that can play x264) Android 6+, TV Setup box, TV, Google chrome 48+

    


  • Encoded mp4 video won't play in Firefox v33

    3 novembre 2014, par Michael Heuberger

    When this video is encoded with the following ffmpeg command, it cannot be played in Firefox v33 (a blank screen appears). But when I play it in the native VLC player, it works. So here the long ffmpeg command :

    $ ffmpeg -r 15 -f image2 -i /home/(...)/frames/%d.jpg -i
     /home/(...)/preview.wav -y -acodec libfdk_aac -b:a 128k
     -vcodec libx264 -b:v 386k -preset ultrafast -profile:v baseline
     -crf 6 -pix_fmt yuv420p -loglevel warning -movflags faststart
     /home/(...)/preview.mp4

    As you can see, preview.mp4 is encoded by a sequence of jpg images with a given wav file.

    The ffmpeg output is just this

    [wav @ 0x35ff460] Estimating duration from bitrate, this may be inaccurate
    Guessed Channel Layout for  Input Stream #1.0 : mono
    [swscaler @ 0x35f0d80] deprecated pixel format used, make sure you did set range correctly

    Any clues why it won’t play on Firefox (and what the other ffpmeg warnings mean) ?

    Thanks !!!