
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (46)
-
Les vidéos
21 avril 2011, parComme 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 (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Problèmes fréquents
10 mars 2010, parPHP 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 (6940)
-
Android ffmpeg - 3gp to mp4(or avi) videos - not playing
18 juillet 2013, par santhoshI 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 AhmadWhen 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 ishas_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 ZahoorThis 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.