Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (59)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (13598)

  • produce .lib library from ffmpeg [duplicate]

    10 décembre 2017, par Saeed

    This question is an exact duplicate of :

    I want to use ffmpeg library to work with video and send it from one point to another.

    For some reasons i don’t want use dynamic libraries, so when i try to compile ffmpeg in windows with this instruction :

    ./configure --toolchain=msvc --arch=x86 --enable-yasm --enable-asm  --disable-shared --enable-static

    the output format is .a (which is suitable for linux) instead of .lib(which is suitable for windows).

    how i can produce .lib to use it in windows ?

  • ffmpeg not finding vcodec libx264

    30 juillet 2013, par Ofeargall

    I've installed the latest ffmpeg but it seems unable to locate the video codecs. Do I need to completeley remove ffmpeg and re run the ./configure differently in order for ffmpeg to find the video codecs ?

    Here's my current configuration :

    FFmpeg version git-f61cbc2, Copyright (c) 2000-2011 the FFmpeg developers
     built on Jan 18 2011 10:59:49 with gcc 4.0.1 (Apple Inc. build 5465)
     configuration: --enable-libmp3lame --enable-shared --disable-mmx --arch=x86_64
     libavutil     50.36. 0 / 50.36. 0
     libavcore      0.16. 1 /  0.16. 1
     libavcodec    52.108. 0 / 52.108. 0
     libavformat   52.94. 0 / 52.94. 0
     libavdevice   52. 2. 3 / 52. 2. 3
     libavfilter    1.74. 0 /  1.74. 0
     libswscale     0.12. 0 /  0.12. 0

    Or, can I just re-run the make command to include the library ?

    Here's my snippet for transcoding :

    ffmpeg -i ~/Desktop/watercarts.mov -vcodec libx264 -b 250k -bt 50k -acodec libfaac -ab 56k -ac 2 -s 480x320 ~/Desktop/watercartsipod.mp4

    And the error :

    Unknown encoder 'libx264'

    Thank you in advance.

  • Deploy project on Raspberry Pi with Qt Creator using third party libraries

    1er juillet 2018, par Cristiano

    I successfully created the toolchain and the relative kit for the device.
    Now I want to deploy an existing project that uses some third party libraries such as FFmpeg. The problem happens changing kit for the project, in particular I cannot anymore use the FFmpeg function and so I have an undefined reference error. I also tried to download the third library source and ricompiled it with the cross compiler that generates some .a files, but the results doesn’t changed. I used this command :

    ./configure --enable-cross-compile --cross-prefix=/home/usr/raspi/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin/arm-linux-gnueabihf- --arch=armel --target-os=linux --prefix=/home/usr/ffmpeg-compiled

    Do I have to move these files in order to make them visible for the compiler ? Do I need to copy them also on the Raspberry ?
    Thanks