Advanced search

Medias (1)

Tag: - Tags -/MediaSPIP

Other articles (111)

  • Le profil des utilisateurs

    12 April 2011, by

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 November 2010, by

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • XMP PHP

    13 May 2011, by

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

On other websites (10729)

  • -8969 error decoding h264 stream with intra-refresh

    28 December 2017, by ciclopez

    I’m trying to decode an h264 stream using video-toolbox, I create it with ffmpeg and it’s working nicely when I use this command:

    ffmpeg -y -f:v rawvideo -c:v rawvideo -s 1280x720 -pix_fmt bgra -r 30 -an -i - -pix_fmt yuv420p -c:v libx264 -tune zerolatency -preset fast -b:v 5M -refs 1 -g 30 -profile:v high -level 4.1 -f rtp rtp://192.168.1.100:5678

    however, when I enable intra-refresh

    -intra-refresh 1

    decoding fails with error code -8969 when VTDecompressionSessionDecodeFrame() is called.

    As you can see, I send the stream through the network using rtp, so I take care of processing UDP packets to extract NAL Units. I triple checked this process and discarded a problem with this part of the code.

    I didn’t find any info about Video-toolbox not supporting intra-refresh, so the question is, does Video-toolbox support intra-refresh? and if it does, am I missing something in the ffmpeg side that makes the stream not supported by Video-toolbox?

  • Ffmpeg makes audio longer when changing bitrate

    17 March 2020, by ReflexLevel0

    I’ve been using ffmpeg convert audio from one format to another and to change audio’s bitrate. When I try to convert aac audio to mp3 audio using the command:

    ffmpeg -i SomeAudio.aac -c:a mp3 -b:a 128k SomeOutputPath.mp3

    everything works correctly and output audio is of the same length as the input audio (6 minutes, 15 seconds).

    However, when I try converting it to aac audio using a similar command:

    ffmpeg -i SomeAudio.aac -c:a aac -b:a 128k SomeOutputPath.aac

    it makes the output audio longer (around 10 minutes). I have tried specifying output length but that still makes the video longer, it just cuts of part of the audio:

    ffmpeg -i SomeAudio.aac -c:a aac -b:a 128k -t 00:06:15 SomeOutputPath.aac

    Here is a link to the screenshot:

    Changing aac bitrate

    My suspicion is that message "Estimating duration from bitrate, this may be innacurate" (the one in the screenshot) is the root of my problem but I just haven’t been able to find any useful information about it on the web.

    Thanks a lot for any help in advance :)

  • Get JS to C# to get ffmpeg progress to progressbar? [duplicate]

    19 March 2018, by adrifcastr

    This question already has an answer here:

    So I am running ffmpeg from C# using this code and I need to get the conversion progress being shown as progressbar, so on another question I found this, which should do the trick, but thats in Javascript, and I have no Idea how to implement that in C#. I#d appreciate any help.

    also here is the question where the code snippet is taken from.