Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (55)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • FFMPEG using Google Drive API instead of Shared URL

    25 novembre 2020, par Marcus

    We are using FFMPEG to stream a Google Drive URL into a node application.

    


    Is there an FFMPEG method or library we can use to stream to FFMPEG using the Google Drive API instead of using the standard public shared URL ?

    


    At the moment using the URL works fine if the file size is <100mb but with bigger files we get an error :

    &#xA;

    https://drive.google.com/uc?export=download&amp;id=fileId: Invalid data found when processing input&#xA;

    &#xA;

    This is because we reach the pesky gDrive virus roadblock page :&#xA;enter image description here

    &#xA;

  • Is there a way to add watermark to all videos in Google Drive’s folder ?

    30 avril 2015, par whitesiroi

    Is there a way to add watermark to all videos in Google Drive’s folder ?

    I found similar service, but it works only with pictures, pdfs - Wappwolf

    Maybe, it’s possible to do by Google Apps Script or some other services (like ffmpeg) ?

  • FFmpeg command to apply multiple filters and limit the final file size

    16 mars 2016, par Konrad —

    I’m using command below to convert video to a format of the defined scale and in order to hardcode the subtitles

    Original syntax

    ffmpeg -i "Original File.mov"  -vf subtitles=Subtitles.srt -vf scale=1920:1080 \
          -crf 12 "Final File".mov

    Problem

    I would like to expand this command further and :

    • ensure that the produce file is under 2GB
    • I would like to include additional parameters with advanced subtitle options, like setting the canvas size and fixing the potential delay

    Side notes

    I reckon that in case of predefining the file size the -crf 12 paramater will be redundant ?