Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (24)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6925)

  • doc : delete viterbi.txt

    10 novembre 2013, par Timothy Gu
    doc : delete viterbi.txt
    

    The description has been moved to the FFmpeg wiki :
    https://trac.ffmpeg.org/wiki/ViterbiAlgorithm

    Signed-off-by : Timothy Gu <timothygu99@gmail.com>

    • [DH] doc/viterbi.txt
  • How convert High bitrate mp3 to lower rate using ffmpeg in android

    23 mars 2018, par Android Team

    We want to convert 320kbps mp3 file to 128kbps mp3 so currently we are using below ffmpeg command but its not working.

    ffmpeg -i input.mp3 -codec:a libmp3lame -qscale:a 5 output.mp3

    Result :-the output bitrate same as input mp3.

    And we are following the FFmpeg Encoding guideline for that here is the link :- https://trac.ffmpeg.org/wiki/Encode/MP3

    so please suggest any solution.

  • Alter YUV values of AVFrames in FFMpeg

    1er février 2012, par Kage

    I'm trying to apply an effect to a video by altering the YUV values using FFMpeg programmatically in C.

    Let's say I want to increase the luminescence of each pixel of each frame by 100.

    I tried just altering the first frame of a video stream. I decoded the frame, added 100 to each Y value in the AVFrame->data[0], encoded the frame again and saved it into the video.

    However when I play the video back, it is not only the first frame that has been altered, but the first 30 frames.

    Why are the other frames effected when I only change the AVFrame->data of the first frame ?

    I tried again by changing all the Y, U and V values in AVFrame->data to 0 for only the first frame.

    When I play back the video, it starts off completely green like expected, after the first frame the video stays green for 30 frames. I can see the other frames start to come slowly through the green for 30 frames and then suddenly the green disappears and the video plays as normal. Why is it not just the first frame that is green ?

    My method is as follows :

    Video Stream

    |
    |     *(Get a frame)*
    |
    v

    AVPacket (encoded data)

    |
    |     *(Decode the frame)*
    |
    v

    AVFrame (raw data) --------------------------------------------------> AVFrame (raw data)

                     *(Edit AVFrame->data values)*

                                                          |
                                                          |     *(encode frame)*
                                                          |
                                                          V
                                                 AVPacket (encoded data)

                                                          |
                                                          |     *(save frame)*
                                                          |
                                                          V
                                                     Video Stream

    Am I doing something obviously wrong ?

    How can I change just one frame without effecting the others ?