Recherche avancée

Médias (91)

Autres articles (74)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (9420)

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

    


  • 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'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 !!