
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (23)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
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 -
Liste des distributions compatibles
26 avril 2011, parLe tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)
Sur d’autres sites (3096)
-
Auto detect rotation and rotate video accordingly with java, ffmpeg
16 octobre 2013, par Lakshmi Priya.KCan anyone please help me with this ?
On converting videos to SWF, MOV files are rotated 90 degrees by default. I am using the JAVE Swf Converter and the JAVE Encoder.
If I use :
ffmpeg -i in.mov -vf "transpose=1" out.mov
All mov files are getting rotated, but what I need is to automatically detect just the rotated videos and change orientation for just those videos. Please help.
How can I automatically detect the rotation or orientation of the video during upload and rotate if needed, so that all "mov" files play in the correct orientation ?
Thanks,
Lakshmi Priya.K -
net.ypresto.qtfaststartjava not supporting in maven java
9 mai 2018, par UserI am using Qtfaststart to stream mp4 video(place MOOV atom to first) faster. I got maven repository from the link https://javalibs.com/artifact/net.ypresto.qtfaststartjava/qtfaststart .
<dependency>
<groupid>net.ypresto.qtfaststartjava</groupid>
<artifactid>qtfaststart</artifactid>
<version>0.1.0</version>
</dependency>I am getting
Missing artifact net.ypresto.qtfaststartjava:qtfaststart:jar:0.1.0
error in the pom.xmlThis dependency is not supporting, Can anyone help me how to solve this OR any other libraries to place MOOV atom like Qtfaststart.
-
Grab frame from video (as Inputstream) using JavaCV in Java
23 janvier 2020, par Praveen GopalI am using JavaCV to grab frame from Video.
I can grab if video is in absolute path. But if video is in HTTP than JavaCV throw error.
url = new URL("http://www.sample-videos.com/video/mp4/720/SampleVideo.mp4");
urlConnection = (HttpURLConnection) url.openConnection();
InputStream inputStream = urlConnection.getInputStream();
Java2DFrameConverter bimConverter = new Java2DFrameConverter();
FFmpegFrameGrabber frameGrabber = new FFmpegFrameGrabber(inputStream);
String output = "C:\\Users\\xxxx\\Downloads\\Test";
frameGrabber.start();
Frame frame;
double frameRate=frameGrabber.getFrameRate();
int imgNum=5;
System.out.println("Video has "+frameGrabber.getFrameRate()+" frames and has frame rate of "+frameRate);
try {
frameGrabber.setFrameNumber(1000);
frame = frameGrabber.grabKeyFrame();
BufferedImage bi = bimConverter.convert(frame);
String path = output+File.separator+imgNum+".jpg";
ImageIO.write(bi,"png", new File(path));
frameGrabber.stop();
frameGrabber.close();
frameGrabber.flush();
} catch (Exception e) {
e.printStackTrace();
}Any help would be helpful.
Thanks in advance.