
Recherche avancée
Autres articles (93)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (14276)
-
avconv much longer than ffmpeg
18 mars 2014, par fsulserI was using ffmpeg to generate some images from a video. Now I read that I shouldn't use ffmpeg longer and use avconv from libav instead.
So I tried to do the same thing with avconv.The ffmpeg is looking like this :
ffmpeg -ss 1000 -t 5 -i 'test.mp4' -s '120*90' -r 10 out%2d.bmp
Same with avconv :
avconv -ss 1000 -t 5 -i 'test.mp4' -s '120*90' -r 10 out%2d.bmp
ffmpeg needs less than one second to finish. Avconv about 90 seconds for the same task.
Is this usual or do I need to change some things to work with avconv ? -
Fast video compression like Whatsapp
5 août 2015, par Douglas AnunciaçãoI need to speed up video compression in my Android app. I’m using FFMPEG and it takes 3 minutes to compress 80MB video. Does anyone knows a better solution ?
The command I’m using is :
/data/data/com.moymer/app_bin/ffmpeg -y -i /storage/emulated/0/DCIM/Camera/VID_20150803_164811363.mp4 -s 640x352 -r 25 -vcodec mpeg4 -ac 1 -preset ultrafast -strict -2 /storage/emulated/0/DCIM/Camera/compressed_video.mp4
I’m running this command using FFMPEG for Android from this github repo : https://github.com/guardianproject/android-ffmpeg-java
The code to use FFMPEG in my project is inside an AsyncTask and is copied below :
@Override
protected Object doInBackground(Object... params) {
ItemRoloDeCamera compressedVideo = new ItemRoloDeCamera();
File videoInputFile = new File(video.getSdcardPath());
File videoFolderFile = videoInputFile.getParentFile();
File videoOutputFile = new File(videoFolderFile, "video_comprimido_moymer.mp4");
if (videoFolderFile.exists())
android.util.Log.e("COMPRESS VIDEO UTILS", "video folder exist");
else
android.util.Log.e("COMPRESS VIDEO UTILS", "video folder DON'T exist");
if (videoInputFile.exists())
android.util.Log.e("COMPRESS VIDEO UTILS", "video input file exist");
else
android.util.Log.e("COMPRESS VIDEO UTILS", "video input file DON'T exist");
if (videoOutputFile.exists())
android.util.Log.e("COMPRESS VIDEO UTILS", "video output file exist");
else
android.util.Log.e("COMPRESS VIDEO UTILS", "video output file DON'T exist");
FfmpegController ffmpegController;
try {
ffmpegController = new FfmpegController(context, videoFolderFile);
Clip clipIn = new Clip(videoInputFile.getAbsolutePath());
ffmpegController.getInfo(clipIn, new ShellUtils.ShellCallback() {
@Override
public void shellOut(String shellLine) {
videoInfo.add(shellLine);
}
@Override
public void processComplete(int exitValue) {
videoInfo.add(String.valueOf(exitValue));
}
});
int rotate = getRotateMetadata();
Clip clipOut = new Clip(videoOutputFile.getAbsolutePath());
clipOut.videoFps = "24";
clipOut.videoBitrate = 512;
clipOut.audioChannels = 1;
clipOut.width = 640;
clipOut.height = 352;
if (rotate == 90)
clipOut.videoFilter = "transpose=1";
else if (rotate == 180)
clipOut.videoFilter = "transpose=1,transpose=1";
else if (rotate == 270)
clipOut.videoFilter = "transpose=1,transpose=1,transpose=1";
millisDuration = getVideoDuration(videoInputFile.getAbsolutePath());
float secondsDuration = millisDuration / 1000f;
clipOut.duration = secondsDuration;
ffmpegController.processVideo(clipIn, clipOut, true, new ShellUtils.ShellCallback() {
@Override
public void shellOut(String shellLine) {
android.util.Log.e("COMPRESS VIDEO UTILS", "shellOut - " + shellLine);
float percentage = getTimeMetadata(shellLine);
if (percentage >= 0f)
publishProgress(percentage);
}
@Override
public void processComplete(int exitValue) {
android.util.Log.e("COMPRESS VIDEO UTILS", "proccess complete - " + exitValue);
}
});
} catch (IOException e) {
e.printStackTrace();
} catch (Exception e) {
e.printStackTrace();
} finally {
if (videoOutputFile.exists()) {
android.util.Log.e("COMPRESS VIDEO UTILS", "finished ffmpeg ---> video output file exist");
compressedVideo.setSdcardPath(videoOutputFile.getAbsolutePath());
return compressedVideo;
} else
android.util.Log.e("COMPRESS VIDEO UTILS", "finished ffmpeg ---> video output file DON'T exist");
}
return compressedVideo;
}
private float getTimeMetadata(String shellLine) {
float percentage = -1;
if (shellLine.contains("time=")) {
String[] timeLine = shellLine.split("=");
String time = timeLine[5];
time = time.replace("bitrate", "");
time = time.trim();
// String source = "00:10:17";
String[] tokens = time.split(":");
int secondsToMs = (int) (Float.parseFloat(tokens[2]) * 1000);
int minutesToMs = Integer.parseInt(tokens[1]) * 60000;
int hoursToMs = Integer.parseInt(tokens[0]) * 3600000;
long timeInMillis = secondsToMs + minutesToMs + hoursToMs;
percentage = (timeInMillis * 100.0f) / millisDuration;
}
return percentage;
}
private int getRotateMetadata() {
int rotate = 0;
String durationString = "";
for (String shellLine : videoInfo) {
if (shellLine.contains("rotate")) {
//rotate : 270
String[] rotateLine = shellLine.split(":");
rotate = Integer.parseInt(rotateLine[1].trim());
}
}
return rotate;
}
public static long getVideoDuration(String videoPath) {
MediaMetadataRetriever retriever = new MediaMetadataRetriever();
retriever.setDataSource(videoPath);
String time = retriever
.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION);
long timeInmillisec = Long.parseLong(time);
return timeInmillisec;
}The only change I made in the processVideo method was to add the following lines when building the commmand :
cmd.add("-preset");
cmd.add("ultrafast"); -
ffmpeg : failed to convert m3u8 to mp4
4 mars 2016, par MrSmile07I want to convert a .m3u8 file into .mp4, for that I am using ffmpeg.
The only Thing that disturbs is, that one file work with the Command and the other not.Here the command :
ffmpeg -i http://91.250.77.10:8134/hls-vod/jp/523.mp4.m3u8 -acodec copy -vcodec copy -y -loglevel info -f mp4 Namezurspeicherrung.mp4
that file works, but by the other file :
ffmpeg -i http://91.250.77.10:8134/hls-vod/mk/01.mp4.m3u8 -acodec copy -vcodec copy -y -loglevel info -f mp4 Namezurspeicherrung2.mp4
doesn’t work.
_
_OK : Here the Output from file 2 :
ffmpeg -i http://91.250.77.10:8134/hls-vod/mkmp4.m3u8 -acodec copy -vcodec copy -y -loglevel info -f mp4 Wasichsiewirklichgernefragenwuerde.mp4 ffmpeg version 0.8.10-4:0.8.10-0ubuntu0.12.04.1, Copyright (c) 2000-2013 the Libav developers built on Feb 6 2014 20:56:59 with gcc 4.6.3 *** THIS PROGRAM IS DEPRECATED *** This program is only provided for compatibility and will be removed in a future release. Please use avconv instead. [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [NULL @ 0x16b5120] non-existing PPS referenced [h264 @ 0x1825a60] non-existing PPS 0 referenced [h264 @ 0x1825a60] decode_slice_header error [h264 @ 0x1825a60] no frame ! [applehttp @ 0x16ab9a0] max_analyze_duration reached [applehttp @ 0x16ab9a0] Estimating duration from bitrate, this may be inaccurate
Seems stream 0 codec frame rate differs from container frame rate : 180000.00 (180000/1) -> 1000.00 (1000/1)
Input #0, applehttp, from ’http://91.250.77.10:8134/hls-vod/mk/01.mp4.m3u8’ :
Duration : 00:23:30.00, start : 8.700000, bitrate : N/A
Stream #0.0 : Video : h264, 1k tbr, 90k tbn, 180k tbc
Stream #0.1 : Audio : aac, 48000 Hz, stereo, s16
[mp4 @ 0x1826640] dimensions not set
Output #0, mp4, to ’Wasichsiewirklichgernefragenwuerde.mp4’ :
Stream #0.0 : Video : libx264, q=2-31, 90k tbn, 90k tbc
Stream #0.1 : Audio : libvo_aacenc, 48000 Hz, stereo
Stream mapping :
Stream #0.0 -> #0.0
Stream #0.1 -> #0.1
Could not write header for output file #0 (incorrect codec parameters ?)Last Edit : 23.03.2014 20:08