Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (73)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

Sur d’autres sites (7974)

  • LNK2019 : unresolved external symbol __imp__dclass

    18 avril 2019, par ssk

    I am trying to build ffmpeg on visual studio for ARM architecture. I run into following linker errors :

    Error   58  error LNK2019: unresolved external symbol __imp__dclass referenced in function mov_read_tkhd avformat.lib(mov.o)

    Error   59  error LNK2001: unresolved external symbol __imp__dclass avformat.lib(thp.o)

    Error   60  error LNK2001: unresolved external symbol __imp__dclass avutil.lib(rational.o)

    Error   61  error LNK2001: unresolved external symbol __imp__dclass avutil.lib(eval.o)

    What is __imp__dclass and where it is defined in Visual Studio / FFMPEG ?

    I get the following when I do "dumpbin /symbols mov.o"

    22D 00000000 UNDEF  notype       External     | __imp__dclass

    Any ideas ?

  • An application for decoding videos

    15 janvier 2016, par user5765185

    How I can use the ffmpeg or libde265 to decode videos which coded with x265 encoder note that i works with windows 7 and the IDE is visual studio 2012 .

  • How to hack ffmpeg to consider I-Frames as key frames ?

    2 février 2012, par justanothercoder

    I'm trying to get ffmpeg to seek h264 interlaced videos, and i found that i can seek to any frame if i just force it.

    I already hacked the decoder to consider I - Frames as keyframes, and it works nicely with the videos i need it to work with. And there will NEVER be any videos encoded with different encoders.

    However, i'd like the seek to find me an I - Frame and not just any frame.

    What i'd need to do is to hack The AVIndexEntry creation so that it marks any frame that is an I-Frame to be a key frame.
    Or alternatively, hack the search thing to return I - Frames.

    The code does get a tad dfficult to follow at this point.

    Can someone please point me at the correct place in ffmpeg code which handles this ?