Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (49)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (7397)

  • How to configure FFmpeg library with ndk r12 using windows 7 64 bit operating system for android

    13 juillet 2016, par jack

    I want to merge mp3 audio file with surfaceview recorded video in background. So after lots of research i get FFmpeg concept for achieving this kind of functionality. But i am not know how to configure Ffmpeg library with ndk in android studio using windows 7 64 bit os. So if any one can have knowledge about it so please share with me. Thank you in advance.

    enter image description here

  • FFmpeg error - “at least one output file must be specified” windows version

    30 juin 2016, par AComputert

    I’m having a little trouble, and I feel like the solution is probably starting me in the face.
    How Can I extract mp4 from HTTP live streaming m3u8 file ? I Tried this command below :

    ffmpeg -i http://ms1.movieland.ir/marci6z9OSicn34CRRcin2y4nv6KRZvigAIBsBbBGlj2HUPZBeEOY1019Zxc6zlQrq3ZkYrW0PiM1WDbpVn2JQ2/vod/5787c62c-fb29-4ca4-a328-b7447bb83436/medialist.m3u8?rpt=%5C2016%5C6%5C5787c62c-fb29-4ca4-a328-b7447bb83436&pid=0 -c copy -bsf:a aac_adtstoasc f:\stream\dora.mp4

    When run, this yells at me that "At least one output file must be specified". I’ve been knocking me head on the wall for hours now, what am I missing ?

  • Windows : How to build X264.lib instead of .dll

    25 juin 2015, par user1884325

    I downloaded the X264 source and installed mingw.

    Step 1 :

    Executed this in the MINGW bash :

    ./configure —disable-cli —enable-shared —enable-win32thread -
    - extra-ldflags=-Wl,—output-def=libx264.def

    and then ’make’

    Step 2 :

    Renamed the libx264-142.dll to libx264.dll and Opened up VS2012 Command Prompt and executed this :

    LIB /DEF:libx264.def

    which gave me libx264.lib and object libx264.exp

    Step 3 :

    Included the lib file in a VS2012 project which uses the X264 API.

    Problem :

    When I start the project I get the following error message :

    "The program can’t start because libx264.dll is missing from your computer"

    Question :

    Why is it looking for the dll when I’m linking the static library in ?

    How do I resolve this ? I would like to build a static X264 library which I can link in with my project.

    EDIT :

    I just had to put the dll in the same directory as the project executable.

    However - My question still stands : How do I build a static x264 library ? So I don’t need the dll ?