Recherche avancée

Médias (0)

Mot : - Tags -/logo

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (54)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

  • Can't save ffmpeg output in Nodejs

    8 septembre 2020, par humble_button

    I have a problem with saving the preview from the .mp4 file. I followed this tutorial, but I got the Error : ffmpeg exited with code 1 : C :\Users\Lenovo\Documents\My projects\YouTube\routes : Permission denied. I don't know how to deal with it, the 'outputPath' is simplestrong text "public/uploads/previews". I am on Windows 10.

    


    return ffmpeg()
            .input(inputPath)
            .inputOptions([`-ss ${startPreviewInSec}`])
            .outputOptions([`-t ${previewDurationInSec}`])
            .noAudio()
            .format("gif")
            .output(outputPath)
            .on("end", resolve)
            .on("error", reject)
            .run();


    


  • Adding metadata to mp3 file by PHP-FFMpeg doesn't save

    17 août 2017, par saeedhbi

    I’m using PHP-FFMpeg plugin for converting and saving mp3 files uploaded to my server and everything works great but metadata.

    This is my code

    $ffmpeg = FFMpeg\FFMpeg::create();
    $audio = $ffmpeg->open($file_tmp);
    $f_audio = new FFMpeg\Format\Audio\Mp3();

    $f_audio->setAudioKiloBitrate($new_bitrate);

    $audio->filters()->addMetadata(["title" => 'my title']);

    $audio->save($f_audio, $path);

    File is created by custom bitrate but none of metadata has been assigned to file.

    Thanks for your help.

  • Encode images on the fly into an mp4 video using ffmpeg

    14 décembre 2017, par Kushagra

    I was wondering if there’s a way where I can append images at the end of video. I’m capturing an image every 10th frame and approximately after 10 seconds I want all the images captured encoded into a video. I tried the traditional way of saving all the captured images and then running the //-y -i .../image%1d.jpg -r 30 video.mp4 ffmpeg command but this takes like 15-20 seconds on Android, not tested iOS yet. Wondering if there’s a way where I can encode these images on the fly to be part of one single video output ? I’ve been googling for the last couple of days but none of the solution I’ve seen so far has worked for me. Also, in all of this, there is no audio involved at all.

    Note : I’m working only with Android and iOS using Unity and I’m looking for high performance encoding.

    If you know of any other codec that can be used to achieve this let me know that as well