Recherche avancée

Médias (91)

Autres articles (75)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (5688)

  • Android ffmpeg - 3gp to mp4(or avi) videos - not playing

    18 juillet 2013, par santhosh

    I am doing an android application which is used to merge two videos and after merge completed play the result video. For this I am using ffmpeg.

    When I record two mpeg or mp4 videos, the result merged video playing fine. Now I record the videos as 3gp and convert it into mp4(or avi) and merged it. Then the result video is not playing.

    Can anybody help me What may be the problem ?

    I am using the following code :

    String args[] = {"ffmpeg","-i",""+filename[i]+"",
                               "-qscale","1",
                               ""+Environment.getExternalStorageDirectory().getPath()+"/Movies/i"+(i + 1)+".mp4(or avi)"};

    To merge the videos :

    String args[] = {"ffmpeg","-i","concat:"+concatPath.toString()+"",
                                 "-vcodec", "copy" ,
                                 "-acodec" ,"copy",
                                 "-vbsf", "aac_adtstoasc",
                                 ""+Environment.getExternalStorageDirectory().getPath()+"/Movies/3.mp4"};
  • How to run .mp4 videos on firefox

    19 novembre 2015, par Haseeb Ahmad

    When play mp4 videos on chrome it works fine.But same videos not playing on firefox. After some search I found this

    Firefox does not support .mp4 playback. Try conveting the video to .ogg format which is fast becoming a standard format for html 5 applications.

    Now how I convert this to ogg for firefox.
    My model code is

    has_attached_file :videod, :styles => {
     :medium => { :geometry => "640x480", :format => 'mp4' },
     :thumb => { :geometry => "100x100#", :format => 'jpg', :time => 10 }
    }, :processors => [:ffmpeg]
    validates_attachment_size :videod, :less_than => 100.megabytes
       validates_attachment_presence :videod
       validates_attachment_content_type :videod, :content_type => /\Avideo\/.*\Z/
  • FFMPEG 4 videos merge in one screen [duplicate]

    10 août 2018, par Farukh Zahoor

    This question already has an answer here :

    I found a sample that merge 2 videos on one screen

    ffmpeg.exe -i 1.mp4 -i 2.mp4 -filter_complex "[0:v]scale=iw/2:ih/2,pad=2*iw:ih[left];[1:v]scale=iw/2:ih/2[right];[left][right]overlay=main_w/2:0[out]" -map [out] -map 0:a? -map 1:a? -b:v 768k output.mp4

    I tried this command to merge 4 videos on one screen

    ffmpeg.exe -i 1.mp4 -i 2.mp4 -i 3.mp4 -i 4.mp4 -filter_complex "[0:v]scale=iw/2:ih/2,pad=2*iw:ih[upperleft];[1:v]scale=iw/2:ih/2[upperright];[2:v]scale=iw/2:ih/2,pad=2*iw:ih[lowerleft];[3:v]scale=iw/2:ih/2[lowerright];[upperleft][upperright]overlay=main_w/2:0;[lowerleft][lowerright]overlay=main_w/2:0[out]" -map [out] -map 0:a? -map 1:a? -b:v 768k output.mp4

    But this generates output similar to 1st command having 2 videos merged in one view. I need all 4 videos to be shown on one screen. Additionally I want audio of 1st video file should be used for output. Please guide

    The suggested duplicate link and examples merge videos with exact same quality and takes lot of time to generate output file. I want dimension of video should be changed to half and should quickly generate the output file. The example I shared working fine for 2 videos but not for 4 videos.