Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (66)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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 (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (13501)

  • FFmpeg's -bt (Bitrate Tolerance) options...?

    7 décembre 2012, par RRN

    I want to encode video for Tablets and Mobile Phones by FFmpeg, is it important to set the '-bt' option ?? If I just skip this option, does this affect the video playback on the devices ??

    ‘-bt tolerance’ Set video bitrate tolerance (in bits, default 4000k).
    Has a minimum value of : (target_bitrate/target_framerate). In 1-pass
    mode, bitrate tolerance specifies how far ratecontrol is willing to
    deviate from the target average bitrate value. This is not related to
    min/max bitrate. Lowering tolerance too much has an adverse effect on
    quality.

    Thanks !!

  • Creating a VOD ABR system with HLS

    19 juillet 2016, par Matteo

    I know this is a specific question but I’m new to this and have spent weeks trying to solve this problem.

    I’m creating a mobile app and need to have Video on Demand (VOD) live streaming. Right now I’m converting MP4 video files into HLS using FFMPEG and broadcasting from a server but the load time is pretty long for 3G connections (low bandwith).

    Has anyone else set up this type of system that can help ?

    It looks like I need Adaptive Bitrate Streaming (ABR) and a media server with a CDN.

    My question is - #1 - Can I get away with not using a CDN ? Or perhaps not using a "media server" but just a regular server

    2 - Is it practical to use FFPMEG to set up an ABR stream with HLS

    I know I probably wont get a response to this question but I thought it was worth a shot.

    Thanks

  • FFmpeg enabling external packages 'min-gpl' in swift or Xcode steps

    2 septembre 2020, par Pranav

    I am working with FFmpeg for iOS swift and added in my project using

    


    


    pod 'mobile-ffmpeg-full', ' > 4.4'

    


    


    Whenever I try to compress and convert video using following command it fails with rc=1

    


    MobileFFmpeg.executeAsync("-i old.mp4 -c:v libx265 -crf 28 -c:a aac -b:a 128k -tag:v hvc1 new.mp4", withCallback:self)


    


    I have searched to add or enable external package 'min-gpl' for x265 to config in Xcode or pods but unable to find steps or anything related to it.

    


    Thanks in advance.