Recherche avancée

Médias (91)

Autres articles (49)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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 (6416)

  • Command of FFMPEG to make a video from Image(JPEG) + Audio(.mp3) & Share video in Whatsapp

    22 novembre 2018, par Neel Mevada

    I am trying to create a video .mp4 file from .mp3 audio & .jpeg image.

    I am able to make a video and able to play in Video Players in Android devices.

    But after creation of file when i tried to Share that Video in Whatsapp, at that time it shows a message "The file format not supported".

    I am using below FFMPEG Command :

    "-loop 1 -r 1 -i " + imageFilePath + " -i " + audioFilePath + " -c:v libx264 -crf 27 -tune stillimage -c:a copy -pix_fmt yuv420p -preset ultrafast -shortest " + pathOutputVideo(sectionName);

    And for Sharing video , i am using below Code :

     MediaScannerConnection.scanFile(ShareQuestionAudioActivity.this, new String[]{FfmpegController.pathOutputVideo(qModel.getSectionName().toUpperCase().replaceAll(" ", "_"))},
                   null, new MediaScannerConnection.OnScanCompletedListener() {
                       public void onScanCompleted(String path, Uri uri) {
                           Intent shareIntent = new Intent(android.content.Intent.ACTION_SEND);
                           shareIntent.setType("video/*");
                           shareIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(FfmpegController.pathOutputVideo(qModel.getSectionName().toUpperCase().replaceAll(" ", "_"))));
                           startActivity(Intent.createChooser(shareIntent, "Share Question"));
                       }
                   });

    From this Link I found that i need to use H264 + AAC. but still not able to share video with supported file format

  • Share the utf8 to wchar conversion routine between lavf and lavu

    25 novembre 2014, par Martin Storsjö
    Share the utf8 to wchar conversion routine between lavf and lavu
    

    This doesn’t add any dependency on library internals, since this
    only is a static inline function that gets built into each of the
    calling functions - this is only to reduce the code duplication.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/os_support.h
    • [DH] libavutil/file_open.c
    • [DH] libavutil/wchar_filename.h
  • Android, Share library dependency

    2 février 2012, par NadavRub
    1. I am Implementing an application that is using LibAv/ffmpeg on Android
    2. I am using JNI to interact with the Native code
    3. my 'Shared Lib' is using libswscale.so, libavutil.so, libavformat.so, libavdevice.so, libavcore.so and libavcodec.so.
    4. All the 'Shared Libs' are verified to be packed to the same directory on the APK file
    5. I am debugging on the device ( no emulator )
    6. Runtime.loadLibrary($MY_LIB_NAME) trigger an UnsatisfiedLinkError exception
    7. Directly running 'System.loadLibrary("swscale")' also cause an UnsatisfiedLinkError exception

    My guess is that libav*.so is dependent on additional libs that should be added to the APK, however, I am not sure how to detect these.
    Is there any tool to detect dependent Shared libraries ? ( Window ddepends equivalent ) ?

    Any help will be appreciated.

     Nadav