
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (70)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (6499)
-
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"}; -
Playing videos one after another
29 septembre 2023, par AABI can play the videos in grid one by one, but I want to get the playing video become bigger in size in the grid when playing, is it achievable via ffmpeg ?


-
Overlaying multiple videos with ffmpeg [closed]
21 juin 2015, par xZiseI’m trying to overlay multiple videos into one video with ffmpeg. There is already a question with only one overlay, but I want to add multiple videos at the same time (to avoid multiple encodings).
I try to use following line :
ffmpeg -i background.m2v -vf "movie=a.m2v [a]; movie=b.m2v [b]; [in][a] overlay=0:366, [b] overlay=592:41" combined.m2v
The error is now, that the overlay area (0,366) – (720,942) is not within the main area (0,0) – (720, 210). But if I use only one overlay file alone it works.
The sizes of the videos :
- background : 720x576
- a.m2v : 72x48
- b.m2v : 720x210
In the result I want the a.m2v video in the top left corner (the logo) and the b.m2v as a lower third.