Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (77)

  • Le profil des utilisateurs

    12 avril 2011, par

    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 novembre 2010, par

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

  • avcodec/jpeglsenc : Only use one line at a time as spare buffer

    3 septembre 2020, par Andreas Rheinhardt
    avcodec/jpeglsenc : Only use one line at a time as spare buffer
    

    ls_encode_line() encodes one line of input from left to right and
    to do so it uses the values of the left, upper left, upper and upper
    right pixels for prediction (i.e. the values that a decoder gets when it
    decodes the already encoded part of the picture). So a simple algorithm
    would use a buffer that can hold two lines, namely the current line as
    well as the last line and swap the pointers to the two lines after
    decoding each line. Yet if one is currently encoding the pixel with
    index k of a line, one doesn't need any pixel with index < k - 1 of the
    last line at all and similarly, no pixels with index >= k have been
    written yet. So the overlap in the effective lifetime is pretty limited
    and since the last patch (which stopped reading the upper left pixel and
    instead reused the value of the upper pixel from the last iteration of
    the loop) it is inexistent. Ergo one only needs one line and doesn't
    need to swap the lines out.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/jpeglsenc.c
  • Visual Studio & ffmpeg : Building FFmpeg in visual studio - 'ffmpeg.obj'

    11 mai 2021, par Simba_cl25

    I am new here and I am trying to link ffmpeg with visual studio following some guides like :

    &#xA;

    &#xA;

    I added librairies in the project propreties :

    &#xA;

      &#xA;
    • In C/C++ —> General —> Additional Include Directories
    • &#xA;

    • In Linker —> General —> Additional Library Directories
    • &#xA;

    • In Linker —> Input —> Additional Dependencies
    • &#xA;

    &#xA;

    But I have encountered the following problem :

    &#xA;

    &#xA;

    Error LNK1104 cannot open file 'ffmpeg.obj'

    &#xA;

    &#xA;

    I tried to add double quotes around path of the libraries but it hasn't changed the outcome.

    &#xA;

    Nevertheless, I can't find anything about 'ffmpeg.obj'&#xA;What is this file ? What could I change to avoid this error ?

    &#xA;

  • Using Windows named pipes with ffmpeg pipes (Doesnt work)

    25 octobre 2019, par Estr

    I’m trying to send audio and video RAW through c# pipes to FFMPEG, I’ve been reading and trying to follow what’s shown here : https://docs.microsoft.com/en-us/dotnet/api/system.io.pipes.namedpipeserverstream?view=netframework-4.8

    This a fragment of the code...

           NamedPipeServerStream p_1;
           NamedPipeServerStream p_2;
           p_1 = new NamedPipeServerStream("p_1", PipeDirection.Out, 1, PipeTransmissionMode.Byte);
           p_2 = new NamedPipeServerStream("p_2", PipeDirection.Out, 1, PipeTransmissionMode.Byte);

           p_1.WaitForConnection();

           p_2.WaitForConnection();

    .......

    I run this command in FFMPEG : ffmpeg.exe -i \.\pipe\p_1 -vcodec hevc -r 8 -f alaw -ar:a 16000 -ac:a 1 -i \.\pipe\p_2 o.mp4

    But the program stays on the line : p_2.WaitForConnection() ;

    How can I solve it ?