
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
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
Autres articles (47)
-
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (4217)
-
Motion jpeg can not be captured well for motion jpeg on ffmpeg [migrated]
13 février 2014, par pocI set my network camera's codec to
motion jpeg
10 fps
By the command
ffmpeg -y -t 2 -f mjpeg -i http://172.19.1.42/video3.mjpg -acodec copy -vcodec copy test.avi
I expected the video should contain 20 frames in total,but the video seems fast-forwarded
and the information shown by the
ffprobe
is very strange.$ ffprobe -v quiet -show_format -show_streams test.avi
[STREAM]
index=0
codec_name=mjpeg
codec_long_name=MJPEG (Motion JPEG)
profile=unknown
codec_type=video
codec_time_base=1/50
codec_tag_string=MJPG
codec_tag=0x47504a4d
width=640
height=480
has_b_frames=0
sample_aspect_ratio=1:1
display_aspect_ratio=4:3
pix_fmt=yuvj420p
level=-99
timecode=N/A
id=N/A
r_frame_rate=50/1
avg_frame_rate=0/0
time_base=1/50
start_pts=0
start_time=0.000000
duration_ts=99
duration=1.980000
bit_rate=N/A
nb_frames=99
nb_read_frames=N/A
nb_read_packets=N/A
DISPOSITION:default=0
DISPOSITION:dub=0
DISPOSITION:original=0
DISPOSITION:comment=0
DISPOSITION:lyrics=0
DISPOSITION:karaoke=0
DISPOSITION:forced=0
DISPOSITION:hearing_impaired=0
DISPOSITION:visual_impaired=0
DISPOSITION:clean_effects=0
DISPOSITION:attached_pic=0
[/STREAM]
[FORMAT]
filename=test.avi
nb_streams=1
format_name=avi
format_long_name=AVI (Audio Video Interleaved)
start_time=0.000000
duration=1.980000
size=3903310
bit_rate=15770949
TAG:encoder=Lavf54.63.104
[/FORMAT] -
Using ffmpegFrameRecorder the merged video is short ?
10 février 2014, par stack5I am using ffmpegFrameRecorder from JavaCV Api to merge several mp4 videos to one . Here is my code :
FrameGrabber grabberlist[] = new FFmpegFrameGrabber[filenamelist
.size()];
for (int i = 0; i < grabberlist.length; i++) {
System.out.println("FILES" + filenamelist.get(i));
grabberlist[i] = new FFmpegFrameGrabber(filenamelist.get(i));
grabberlist[i].start();
}
FrameRecorder recorder = new FFmpegFrameRecorder(
Environment.getExternalStorageDirectory()
+ "/Apptavia/output.mp4",
grabberlist[0].getImageWidth(),
grabberlist[0].getImageHeight(), 1);
recorder.start();
for (int i = 0; i < grabberlist.length; i++) {
Frame frame;
while ((frame = grabberlist[i].grabFrame()) != null) {
recorder.record(frame);
}
}
for (int i = 0; i < audioList.size(); i++) {
recorder.record(audioList.get(i));
}
recorder.stop();
for (int i = 0; i < grabberlist.length; i++) {
grabberlist[i].stop();
}
}The output video is created but the video length is less . I have debugged the number of frames from .grab() method is less than the total frames. What could be the solution for this . Please help.
-
vp9/x86 : 16x16 iadst_idct, idct_iadst and iadst_iadst (ssse3+avx).
16 janvier 2014, par Ronald S. Bultjevp9/x86 : 16x16 iadst_idct, idct_iadst and iadst_iadst (ssse3+avx).
Sample timings on ped1080p.webm (of the ssse3 functions) :
iadst_idct : 4672 -> 1175 cycles
idct_iadst : 4736 -> 1263 cycles
iadst_iadst : 4924 -> 1438 cycles
Total decoding time changed from 6.565s to 6.413s.