Recherche avancée

Médias (91)

Autres articles (104)

  • 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

  • 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

Sur d’autres sites (10090)

  • ffmpeg avformat_open_input analogue with string input

    4 février 2016, par Dmitry

    ffmpeg avformat_open_input needs a file name of stream to open.
    But program generates its own SDP file with all information needed into string.
    Is there any analogue with string instead of file ? As I dont want to create file for that.
    Or I`ll have to create my own parcer for it ?

  • ffmpeg avformat_open_input analogue with string input

    30 janvier 2023, par Dmitry

    ffmpeg avformat_open_input() needs a file name of stream to open.

    


    But my program generates its own SDP file with all information needed into a string.

    


    Is there any analogous function I could use with a string instead of a file ? As I don't want to create a file for that.

    


    Or I`ll have to create my own parser for it ?

    


  • Remove tiktok video logo/watermark using laravel/ffmpeg ?

    10 août 2022, par royallife

    How I can remove tiktok video logo/watermark using FFmpeg ? Like most sites are doing e.g https://ssstik.io/en

    


    I tried to remove the logo using delogo filter https://github.com/protonemedia/laravel-ffmpeg but it leaves a blur effect in the video while the above site logo removal is clean, with no blurry effect.

    


    Sample code :

    


    $video = FFMpeg::open('public/tiktok/video2.mp4');
$video->addFilter(function ($filters) use ($bottom_coordinates) {
        $filters->custom( 'delogo=x=10:y=10:w=150:h=77');
 })
 ->export()
 ->inFormat(new \FFMpeg\Format\Video\X264)
 ->toDisk('public')
 ->save('7118695488282447131_delogo.mp4');


    


    Any help ?
Thanks in advance.