Advanced search

Medias (91)

Other articles (64)

  • Other interesting software

    13 April 2011, by

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website: http://videopress.com/
    License: GNU/GPL v2
    Source code: (...)

  • Des sites réalisés avec MediaSPIP

    2 May 2011, by

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Taille des images et des logos définissables

    9 February 2011, by

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

On other websites (3859)

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

    22 November 2018, by 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

  • Create animation video or applying different effect on video from set of images [on hold]

    9 January 2016, by Mehul Dudhat

    I tried with FFmpeg but it’s not showing any effect with created video.

    I tried below command with FFmpeg lib:

    ffmpeg -f image2 -r 1/5 -i /&lt;<dir path="path">>/img/img%d.jpg -vcodec libx264 /&lt;<dir path="path">>/output_video.mp4
    </dir></dir>

    The image generated video:

    https://flic.kr/p/CWtxhi

    Is there any other library available to add effect or animation on video during the creation from set of images?

    I would like to give this type of animation or effect:

    https://animoto.com/play/rXBG1fIq9FWN00O7R7wKyQ

  • FFMpeg: how to merge video and audio and tail align video to audio length?

    28 September 2021, by Bobby

    I have a video file and an audio file to merge together. Audio duration is shorter than video. I want to align them at tail and cut off the head part of the video.

    &#xA;

    Graph illustration:

    &#xA;

    [xxxx------] video&#xA;    [------] audio&#xA;    [======] merged&#xA;

    &#xA;

    Where "x" parts of the video is removed.

    &#xA;

    The duration of the video/audio is unknown but the audio duration is guaranteed to be shorter than video. The reason of it being unknown is because I'm generating video dynamically and pipe to FFmpeg, so it is not possible to know the duration beforehand.

    &#xA;