Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (99)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (6689)

  • Receiving Raw MPEG2-TS data received over RTSP(RTP) via FFMPEG

    8 septembre 2014, par AGP

    I am trying to read raw MPEG2-TS data packets(188 byte) from an RTSP(RTP) stream. I can not figure how to code a client that opens stream and reads raw data. For other video formats and without raw data handling, it is much easier in ffmpeg.

    How can i code this type of client in ffmpeg ?

    Thanks

  • How can I apply custom font on watermark that created by FFmpeg

    7 août 2019, par Dens

    I am creating a video with FFmpeg library. I want access fonts from Android assets folder and overlay on my video as watermark.

    What is the path for Android assets folder to access and apply custom font on FFmpeg ?
    I can overlay watermark on video but when I try to apply custom font on it, it gives error related to not exist, etc.

    What I found till now :

    The alternative solution that I found is the create an image file and write text on it and overlay image on video. problem is text and image being stretch output. I need a solution for it.

    String[] execute = {"-y",  "-i",  videoPath, "-i", image, "-filter_complex",
                "[1:v]scale=" + width + ":" + height + "[ovrl],[0:v][ovrl]overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2"
                ,"-strict" , "experimental", "-vcodec", "libx264" , "-preset",  "ultrafast" , "-crf",  "20", "-acodec",  "aac",  "-ar",
                "44100",  "-ac",  "2",  "-b:v",  "36000k",   outputPath.getPath()};

    I thought itz output will be good but it stretching my text and image.

    I want some perfect solution to apply assets font on FFmpeg.

    Thank you in Advance.

  • FFmpeg not creating video file (empty.mpeg) - No output or error messages

    16 juillet 2023, par hello world

    I am using FFmpeg in C# to create a blank video file with the following command :

    


    string ffmpegPath = "path/to/ffmpeg";
string outputPath = "empty.mpeg";

string command = $"{ffmpegPath} -t 7200 -s 640x480 -f rawvideo -pix_fmt rgb24 -r 25 -i /dev/zero {outputPath}";

// ... code to execute FFmpeg command ...


    


    However, when running the code, the empty.mpeg file is not created, and no output or error messages are printed to the console. I have verified that FFmpeg is properly installed on my system, and the paths to the executable and output file are correct.

    


    I tried redirecting the standard error stream and handling the error messages, but still no errors are being displayed. I also attempted different file formats and extensions, but the issue persists.

    


    I would greatly appreciate any insights or suggestions to resolve this issue. Thank you !

    


    Link to my related question on Stack Overflow (for reference) : here