Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (49)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (5819)

  • riffdec : Explicitly null-terminate array to work around VC++ bug

    28 janvier 2016, par Bruce Dawson
    riffdec : Explicitly null-terminate array to work around VC++ bug
    

    Due to this bug in VC++ 2015 Update 1 :
    https://connect.microsoft.com/VisualStudio/feedback/details/2291638

    the ’key’ array in ff_read_riff_info() ends up being not null
    terminated which led to failures in a Chromium unit tests. Update 2
    should have a fix, but until then it is important to avoid problems.

    • [DH] libavformat/riffdec.c
  • Converted video is not played in Firefox

    20 juillet 2023, par Kiten

    I have a code that accepts the video file from the client converts it and saves it on the server with .mp4 extension. Video processing is made using fluent-ffmpeg. Here is the code :

    


    ffmpeg()
  .size('360x?')
  .videoCodec('libx264')
  .output()
  .on("end", () => {
    console.log(`Video saved with resolution 360`);
    res.json('Uploaded')
  })
  .on("error", (error) => {
    console.error(
      `Error saving video with resolution 360:`,
      error
    );
    res.status(500).json({ message: "Conversion error" });
  })
  .run();


    


    The problem is that the resulting files are not played in the Firefox browser (but work in Microsoft Edge and Google Chrome).
Is it possible to change the parameters so that the resulting files are compatible with Firefox browser ?

    


  • FFMPEG is not able to find window for edge browser

    19 avril 2022, par randy

    I am trying to capture video recording for edge browser using below command

    


    ffmpeg.exe -f gdigrab -framerate 9 -i title="About version - Profile 1 - Microsoft​ Edge' -vcodec libx264 -threads 1 -crf 35 -preset ultrafast -f hls -g 15 -hls_list_size 0 -hls_time 5 -r 7 -pix_fmt yuv420p -maxrate 1.7M -bufsize 2M -tune zerolatency -vf pad=ceil(iw/2)*2:ceil(ih/2)*2 index.m3u8


    


    This is how I found title for edge browser

    


    tasklist /v /fi "imagename eq msedge.exe" /fo list


    


    This is the error I get (notice the weird character)

    


     Can't find window 'About version - Profile 1 - MicrosoftΓÇï Edge'


    


    I have also verified the title with AutoIt application. This is working fine for chrome and firefox. Let me know if some is able to record the edge browser via ffmpeg