Recherche avancée

Médias (1)

Mot : - Tags -/karaoke

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (10368)

  • Solution to convert FLV to MP4 from streaming server [on hold]

    10 avril 2015, par user3799647

    I am looking for solution to convert FLV video file from streaming server like Vidzer, to HTML5 friendly format like mp4. I have small website with movies and I want to watch movies on my phone which support MP4.

    Is there any way to do that ? I have dedicated server, I don’t want to save files on server and convert, but convert on the fly using cURL, PHP and ffmpeg.

  • Choose good solution for streaming video in android [closed]

    28 novembre 2013, par Alex Tran

    I always find solution for fixing this bug

    "Invalid streaming" or "Can not play video"

    on many devices.

    I researched and found many people get this bug.

    There are two solutions :

    1. At Server side : Convert to appropriate "h264 avc baseline + web optimized *.mp4" format for Android device can stream & play video.

    2. At Android side : Use third-party library to fix :

      • VitamioBundle : I tested on many devices,
        some devices (Android version 4.0.3 or above, and have StageFright
        framework) stream & play video very good, but the others (before
        Android version 4.0) is not . I think the framework on the device causes it. (related to OpenCore/StageFright framework)

      • Ffmpeg : I researched about Android NDK. And know how to build to file *.so.

    Actually, I can not edit at server side.

    Can I use ffmpeg in second solution ?

    But I don't really know it is the good way or not ?

    p/s : Actually, I want to stream and play video from the server on all devices have version from Froyo 2.2.

    Please tell me,

    Regards,

  • ffmpeg thumbnails in equal intervals

    29 juin 2013, par user2392940

    my current code

    $file= "C:/wamp/www/as.mp4";
    $ffmpeg = "C:/wamp/bin/ffmpeg/bin/ffmpeg";

    ob_start();
    passthru("$ffmpeg -i ".$file." 2>&1");
    $duration = ob_get_contents();
    ob_end_clean();

    $search='/Duration: (.*?)[.]/';
    $duration=preg_match($search, $duration, $matches, PREG_OFFSET_CAPTURE);
    $duration = $matches[1][0];
    list($hours, $mins, $secs) = preg_split('[:]', $duration);
    $totaltime = $secs+($mins*60)+($hours*3600);

    $percent = round($totaltime/12);

    exec ("$ffmpeg -i $file -threads 1 -b 64k -f image2 -s 220x180 -vf fps=fps=1/$percent img%03d.jpg");

    This code works perfectly if the total time/12 remainder is equal to or less than 60 seconds. The goal here is to make 12 thumbnails in equal intervals but ffmpeg will not allow more than 1 frame per 60 seconds any suggestions ?

    Thanks