Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (49)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (5522)

  • FFmepg Encode Video and Add Subtitles Not Working with Maps

    16 avril 2018, par Matt McManis

    I’m trying to convert a video and add subtitles, but the subtitles are never added.

    It only works if I remove -map 0:v? and -map 0:a?.

    However I need maps so I can select the streams, such as -map 0:a:1.

    ffmpeg -y

    -i "C:\Users\Matt\video.mp4"
    -i "C:\Users\Matt\subtitle.ass"

    -c:v libx264
    -preset medium -crf 37 -pix_fmt yuv420p
    -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2"
    -map 0:v?
    -map_chapters 0

    -c:s ass
    -map 0:s?

    -c:a ac3
    -b:a 320k
    -map 0:a?

    -map_metadata 0

    "C:\Users\Matt\video.mkv"
  • c# pipe using youtube-dl to ffmpeg

    1er janvier 2017, par lilscarecrow

    I am trying to pipe the audio stream from youtube-dl into ffmpeg for a program using discord.NET. I am not sure exactly how to achieve this in c#, though. Currently, I can play ffmpeg with a url or path from this code on the docs for discord.NET :

    var process = Process.Start(new ProcessStartInfo
           {                                                      
               FileName = "ffmpeg",
               Arguments = $"-i {outLine.Data}" +                                              
                           " -f s16le -ar 48000 -ac 2 pipe:1",                                        
               UseShellExecute = false,
               RedirectStandardOutput = true                                                                                  
           });
           Thread.Sleep(2000);                                                                                                                    
           int blockSize = 3840;                                                                                                        
           byte[] buffer = new byte[blockSize];
           int byteCount;

           while (!playing)                                                                                                  
           {
               byteCount = process.StandardOutput.BaseStream                                                  
                       .Read(buffer, 0, blockSize);                                                                          

               if (byteCount == 0)                                                                                                            
                   break;                                                                                                                          

               _vClient.Send(buffer, 0, byteCount);                                                                    
           }
           _vClient.Wait();

    So, I am trying to pipe the youtube-dl audio to this I assume. I just have no idea how to achieve piping in this format and for the file while it is downloading. Also, the program works on async if that helps.

  • ffmpeg encoding error find suitable output [closed]

    30 mai 2023, par ckrx

    i installed ffmpeg and wanted to encode a video but it gave me an error about not being able to find a suitable output i used powershell on windows 11

    


    i have this video that i want to encode but i get this error :

    


    [NULL @ 00000286ec6ebc00] Unable to find a suitable output format for 'C:\Users\Dyson\OneDrive\Desktop\Render'
C:\Users\Dyson\OneDrive\Desktop\Render: Invalid argument


    


    this is what i typed in :

    


    ffmpeg -i "C:\Users\Dyson\OneDrive\Desktop\Render\Arden Jones--mr. sunshine.h264" `
       -i "C:\Users\Dyson\OneDrive\Desktop\Render\Arden Jones--mr. sunshine.wav" `
       "C:\Users\Dyson\OneDrive\Desktop\Render"


    


    did i make a typo somewhere ?