nachher

Text

ffprobe /run/media/maniactwister/eda1f4e7-8a69-4348-b152-756d468606b9/maniactwister/ftp/Alltagsgeschichte.mkv
ffprobe version 2.4.4 Copyright (c) 2007-2014 the FFmpeg developers
built on Dec 1 2014 05:59:35 with gcc 4.9.2 (GCC)
configuration: --prefix=/usr --disable-debug --disable-static --disable-stripping --enable-avisynth --enable-avresample --enable-fontconfig --enable-gnutls --enable-gpl --enable-libass --enable-libbluray --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libv4l2 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libxvid --enable-runtime-cpudetect --enable-shared --enable-swresample --enable-vdpau --enable-version3 --enable-x11grab
libavutil 54. 7.100 / 54. 7.100
libavcodec 56. 1.100 / 56. 1.100
libavformat 56. 4.101 / 56. 4.101
libavdevice 56. 0.100 / 56. 0.100
libavfilter 5. 1.100 / 5. 1.100
libavresample 2. 1. 0 / 2. 1. 0

vorher

Text

$ ffprobe /run/media/maniactwister/346670b9-01d9-47cb-9c19-0cdb272227b2/aufnahmen/Alltagsgeschichte.m2t
ffprobe version 2.4.4 Copyright (c) 2007-2014 the FFmpeg developers
built on Dec 1 2014 05:59:35 with gcc 4.9.2 (GCC)
configuration: --prefix=/usr --disable-debug --disable-static --disable-stripping --enable-avisynth --enable-avresample --enable-fontconfig --enable-gnutls --enable-gpl --enable-libass --enable-libbluray --enable-libfreetype --enable-libfribidi --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopencore_amrnb --enable-libopencore_amrwb --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libv4l2 --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-libxvid --enable-runtime-cpudetect --enable-shared --enable-swresample --enable-vdpau --enable-version3 --enable-x11grab
libavutil 54. 7.100 / 54. 7.100
libavcodec 56. 1.100 / 56. 1.100
libavformat 56. 4.101 / 56. 4.101
libavdevice 56. 0.100 / 56. 0.100
libavfilter 5. 1.100 / 5. 1.100
libavresample 2. 1. 0 / 2. 1. 0

$t->timestamp('updated_at')
->default(DB::raw('CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP'));

Fehlschlag

Text

W: Fehlschlag beim Holen von https://launchpad.net/~maniactwister/+archive/ubuntu/mmm/+packages/dists/trusty/main/binary-amd64/Packages HttpError404
W: Fehlschlag beim Holen von https://launchpad.net/~maniactwister/+archive/ubuntu/mmm/+packages/dists/trusty/main/binary-i386/Packages HttpError404
W: Fehlschlag beim Holen von https://launchpad.net/~maniactwister/+archive/ubuntu/mmm-legacy/+packages/dists/trusty/main/binary-amd64/Packages HttpError404
W: Fehlschlag beim Holen von https://launchpad.net/~maniactwister/+archive/ubuntu/mmm-legacy/+packages/dists/trusty/main/binary-i386/Packages HttpError404
E: Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden ignoriert oder alte an ihrer Stelle benutzt.

#!/usr/bin/env python2
#
# Quick and dirty ffmpeg command crafter
#
# Outputs the ffmpeg command to encode your raw MPEG2 Video file with h264 into
# a matroska container. You can optionally select start/end time and a specific
# audio tracks (e.g ac3).
#
# Copyright (c) 2014 by ManiacTwister
#

<?php
$offers = Car::with(array('Bids' => function($query){
$query->orderBy('gebot', 'ASC');
}))->get();
return $offers;
?>
RETURNS:

<?php
$offers = Car::with(array('Bids' => function($query){
$query->orderBy('gebot', 'ASC');
}))->get();
return $offers;
?>
RETURNS:

// Find an existing epg entry by eventid
// If no entry exists with the given eventid we'll search
// entries with similar start time ( +-10 minutes )
// TODO: Maybe implement levenshtein for title
DvbSharedEpgEntry DvbEpgModel::findExistingEntry(DvbEpgEntry &newEntry)
{
DvbSharedEpgEntry existingEntry;
existingEntry = eventIds.value(QPair<DvbSharedChannel, int>(newEntry.channel, newEntry.eventid));

// Find an existing epg entry by eventid
// If no entry exists with the given eventid we'll search
// entries with similiar start time ( starttime/2 <> 10 minutes )
DvbSharedEpgEntry DvbEpgModel::findExistingEntry(DvbEpgEntry &newEntry)
{
DvbSharedEpgEntry existingEntry;
existingEntry = eventIds.value(QPair<DvbSharedChannel, int>(newEntry.channel, newEntry.eventid));
if(existingEntry.isValid()) return existingEntry;

DvbSharedEpgEntry DvbEpgModel::findExistingEntry(DvbEpgEntry &entry)
{
DvbSharedEpgEntry existingEntry;
existingEntry = eventIds.value(QPair<DvbSharedChannel, int>(entry.channel, entry.eventid));
if(existingEntry.isValid()) return existingEntry;
DvbEpgEntry fakeEntry(entry.channel);
int newDurSecs = QTime(0,0).secsTo(entry.duration);