Recherche avancée

Médias (91)

Autres articles (98)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9463)

  • avformat/dump : lowercase 'Start' prefix for start offset

    15 juin, par Marth64
    avformat/dump : lowercase 'Start' prefix for start offset
    

    Just applying some UX polish.
    This is to match the lowercase trend of attributes in
    the dump string (and similar to chapters).

    Signed-off-by : Marth64 <marth64@proxyid.net>

    • [DH] libavformat/dump.c
  • FFmpeg Arthenica always encodes with x265 Main10 profile [closed]

    5 avril, par Jabed Dhali

    I'm using FFmpeg-Kit (Arthenica) for iOS to compress videos using the libx265 encoder. I'm building FFmpeg with a custom configuration script :

    &#xA;

    export CUSTOM_CONFIG="--disable-indevs \&#xA;  --disable-outdevs \&#xA;  --disable-hwaccels \&#xA;  --enable-videotoolbox \&#xA;  --disable-protocols \&#xA;  --enable-protocol=file,fd,saf,async \&#xA;  --disable-decoders \&#xA;  --enable-decoder=${ENABLE_DECODER_LIST} \&#xA;  --disable-encoders \&#xA;  --enable-encoder=${ENABLE_ENCODER_LIST}"&#xA;&#xA;export CUSTOM_CONFIG_IOS=${CUSTOM_CONFIG}&#xA;  ./ios.sh --enable-ios-videotoolbox --enable-lame --enable-libaom  --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libwebp --enable-libxml2 --enable-opencore-amr --enable-openh264 --enable-opus --enable-twolame --enable-x264 --enable-x265 --enable-gpl&#xA;

    &#xA;

    Then I run FFmpeg with the following commands :

    &#xA;

    -y -hide_banner -i input.MOV -vcodec libx265 -x265-params profile=main output.mov&#xA;-y -hide_banner -i input.MOV -vcodec libx265 -x265-params profile=main10 output.mov&#xA;

    &#xA;

    However, regardless of the profile I set, the output always ends up being encoded with the Main10 profile.

    &#xA;

    Here’s the log output :

    &#xA;

    x265 [info]: HEVC encoder version 3.4&#xA;x265 [info]: build info [Mac OS X][clang 16.0.0][32 bit][noasm] 10bit&#xA;x265 [info]: using cpu capabilities: none!&#xA;x265 [info]: Main 10 profile, Level-5 (Main tier)&#xA;

    &#xA;

    It seems that the FFmpeg build only supports 10-bit encoding. I want to be able to encode with different profiles (main, main10, etc.), as well as to build libx265 in a way that supports 8-bit + 10-bit + 12-bit encoding (unified 64-bit build), as like as the same command executes for MacOS.

    &#xA;

    x265 [info]: HEVC encoder version 4.1&#x2B;1-1d117be&#xA;x265 [info]: build info [Mac OS X][clang 16.0.0][64 bit] 8bit&#x2B;10bit&#x2B;12bit&#xA;x265 [info]: using cpu capabilities: NEON Neon_DotProd Neon_I8MM&#xA;x265 [info]: Main profile, Level-2.1 (Main tier)&#xA;

    &#xA;

    How can I correctly configure and build FFmpeg and libx265 with Mobile FFmpeg to support multiple bit depths and allow setting different profiles via -x265-params ?

    &#xA;

  • Cant add a custom name to my fluent-ffmpeg converted file

    11 août 2019, par mouchin777

    Im trying to add a custom name based on the name of the downloaded youtube video to the file converted by fluent-ffmpeg. Problem is I dont know how to add it into the function since var saveLocation isnt being overwriten.

       const ytdl = require('ytdl-core')
    const  ffmpeg = require('fluent-ffmpeg');
    ffmpeg.setFfmpegPath("myffmpegLocation.exe")

    videoUrl = "this_is_a_youtube_url"
    var saveLocation = "";

    stream = ytdl(videoUrl).on('info', (info) => {
       console.log(info.title)
       saveLocation = "./"+info.title+".mp3" //this is not being saved
     });


    var proc = new ffmpeg({ source: stream, nolog: true }).toFormat('mp3').audioBitrate(320).on('end', function() {
       console.log('file has been converted successfully');
       })
       .on('error', function(err) {
       console.log('an error happened: ' + err.message);
       })
       .saveToFile(saveLocation); //The file title --> I want to use the var saveLocation there