Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (59)

  • Les images

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

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (7058)

  • How to deal with "[asf XX] too long payload" message in ffmpeg ?

    28 mars 2019, par Ayorus

    I am trying to cut a small section of a video using the following sentence :

    ffmpeg.exe -i video.wmv -ss 00:20:02 -to 00:20:09 -crf 22  "C:\test.mp4" -y

    However, ffmpeg hangs showing messages like :

    [asf @ 03327b00] too long payload 0kB time=00:00:00.00 bitrate=N/A speed=   0x
          Last message repeated 352 times
    [asf @ 03327b00] too long payload 0kB time=00:00:00.00 bitrate=N/A speed=   0x
         Last message repeated 331 times

    I have waited for more than 30 minutes and ffmpeg did not finish the cutting. Does anyone have any idea how to solve this ?

    Any suggestion will be appreciated

    PD. the ffprobe output of the source file is the following :

    ffprobe version N-81831-g97e7f03 Copyright (c) 2007-2016 the FFmpeg developers
     built with gcc 5.4.0 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-dxva2 --enable-libmfx --enable-nvenc --enable-avisynth --enable-bzlib --enable-libebur128 --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenh264 --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-libzimg --enable-lzma --enable-decklink --enable-zlib
     libavutil      55. 32.100 / 55. 32.100
     libavcodec     57. 60.101 / 57. 60.101
     libavformat    57. 51.102 / 57. 51.102
     libavdevice    57.  0.102 / 57.  0.102
     libavfilter     6. 63.100 /  6. 63.100
     libswscale      4.  1.100 /  4.  1.100
     libswresample   2.  2.100 /  2.  2.100
     libpostproc    54.  0.100 / 54.  0.100
    [asf @ 03b7afe0] too long payload
       Last message repeated 159 times
    Input #0, asf, from 'F:\video.wmv':
     Metadata:
       WMFSDKVersion   : 11.0.5721.5145
       WMFSDKNeeded    : 0.0.0.0000
       IsVBR           : 0
       DeviceConformanceTemplate: M
     Duration: 01:41:25.95, start: 0.000000, bitrate: 1649 kb/s
       Stream #0:0(eng): Video: wmv2 (WMV2 / 0x32564D57), yuv420p, 640x480, 1500 kb/s, 29.97 fps, 29.97 tbr, 1k tbn, 1k tbc
       Stream #0:1(eng): Audio: wmav2 (a[1][0][0] / 0x0161), 44100 Hz, 2 channels, fltp, 128 kb/s
  • Using FFMPEG I get an error when trying to insert a fade after about 35 mins in a long video - is this possible ?

    8 avril 2019, par Matt Gardiner

    I have a source video that is an hour long from which I want to extract a couple of minutes towards the end and add a video fade in at the start of the cropped section.

    Using FFMPEG, I’m specifying the following command :

    ffmpeg -i MyLongVideo.mp4 -q:v 0 -y -ss 00:50:00.000 -to 00:52:00.000 -vf "fade=t=in:st=3000.0:d=1.0, scale=iw*min(1280/iw\,720/ih):ih*min(1280/iw\,720/ih),pad=1280:720:(1280-iw)/2:(720-ih)/2" ./testoutput.ts

    This is intended to crop from the source video from 50:00.000 to 52:00.00 and fade in from the 50th minute for 0.5 seconds (so at 3000 seconds in - st=3000.0).

    This command that we build programmatically, works on shorter videos or when you crop from before about 35 minutes. For this longer video though I get an error that says :

    [fade @ 0000025399981e80] Value 3000.000000 for parameter 'st' out of range [0 - 2147.48]

    The 2147.48 is around the 35 minutes in seconds which explains why this command works for shorter videos or on crops earlier than 35 minutes.

    I’ve seen a number of other issues with FFMPEG talking about this ’magic’ 2147.48 number with parameter values. Is this some sort of hard limit ?

    Is there a way to do what I want to do ? I could do this in two passes - extract the section of video and then add the fade, but I’d rather do it in one command if possible - and it works for shorter/earlier crops.

  • How to set metadata year for a mp3 file and fetch it back in android ?

    6 mai 2019, par Aashit Shah

    I have been changing the metadata of input mp3 file and storing it in output all the metadata is successfully changing but the year metadata is getting as null.

    Below is my code.

    This is how I fetch the metadata in android :

        MediaMetadataRetriever mmr = new MediaMetadataRetriever();
                 mmr.setDataSource(input);
                 String Album = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ALBUM);
                 String Artist = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_ARTIST);
                 String Title = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_TITLE);
                 String Composer = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_COMPOSER);
                 String Genre = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_GENRE);
                 String Year = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_YEAR);
                 Log.e("date","date"+mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DATE));