Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (14998)

  • How to combine a .MP4 video with a .WAV audio to create a new .MP4 video using ffmpeg from command line arguments ?

    18 mai 2017, par Ashish

    I want to merge a .WAV audio file with a .MP4 video file to create a new .MP4 video file.

    And i am currently using the following codes to do that :

    ffmpeg -i input_vid.mp4 -i input_audio.wav -vcodec copy -acodec copy output.mp4

    But it is only creating output.mp4 file but no videos embedded with that means if i am playing that output.mp4 file then nothing is playing.
    And i don’t know where i am doing wrong so that it is creating like this.

    I know this type of questions already asked by may persons but that didn’t help me much so if anybody can find where i am doing wrong or how to solve this problem please help me to solve my problem.

  • how to convert a video to H264 video codec format & webm and ogv with watermark via ffmpeg

    5 mars 2015, par ali

    I used this code :

    function convert()
    {
     exec("$ffmpegPath  -i $inputPath -i $watermark -filter_complex overlay=10:10 $outPath");
    }

    convert('test.mp4');
    convert('test.webm');
    convert('test.ogv');

    This code works...but not in browser !
    I can run output videos via KMPLAYER in desktop (ovg only video - no audio)

    I want to run it on web via videojs.

    mp4 playback with videojs in browsers - audio plays but video is blank.

    I googled and I think I must convert it to h264 format...

    Can somebody change my orginal code to 3 valid codes for h264,webm and ogv ?

  • ffmpeg : How can I add video-1 at the beginning of video-2

    10 juin 2012, par Crazy_Bash

    I want to add video-1 at the beginning of video-2 with command line in linux, is it possible ?