Recherche avancée

Médias (91)

Autres articles (84)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (5312)

  • Bash script that lists files in a directory doesn't work

    28 juillet 2018, par Fabrizio Gabriele

    I made a bash script because I need to convert a lot of files in a directory from .MOV to .mp4 format.
    I created this script for the purpose :

    #!/bin/bash

    touch .lista
    ls -1 "$1" | grep -i .MOV > .lista
    list= `pwd`/.lista
    cd "$1"
    while read -r line;
       do filename=${line%????}
       ffmpeg -i "$line" -vcodec copy -acodec copy "$filename.mp4"; done < $list
    rm .lista

    This script is supposed to convert me each .MOV file into the directory indicated by $1, but it doesn’t work, it converts me only one file, then it terminates. I can’t understand why. What’s wrong with that ?

  • ffmpeg writing the output of the command to a text file doesn't work with C#

    5 février 2021, par Lifshitz

    I am using ffmpeg commands with C# processes. I used a command to change the audio of a video and it was working but I also wanted to write the output to a text file. The new command works from cmd but apparently, it does not work while using a C# process.
The command that does not work with the Process is :

    


    ffmpeg -i videoPath -i audioPath -c:v copy -map 0:v:0 -map 1:a:0 -shortest newVideoPath > textFilePath 2>&1


    


    And the working command is the same without the last part :

    


    ffmpeg -i videoPath -i audioPath -c:v copy -map 0:v:0 -map 1:a:0 -shortest newVideoPath


    


    Here is the C# code :

    


     Process proc = new Process();
 proc.StartInfo.FileName = ffmpegPath;
 proc.StartInfo.RedirectStandardError = true;
 proc.StartInfo.RedirectStandardOutput = true;
 proc.StartInfo.UseShellExecute = false;
 proc.StartInfo.CreateNoWindow = true;
 proc.StartInfo.Arguments = "-i " + videoPath + " -i " + newAudioPath + " -c:v copy" + " -map" + " 0:v:0 " + "-map 1:a:0 " + "-shortest " + newVideoPath + " > " + @"F:\Videos\log.txt"+ " 2>&1";
 proc.EnableRaisingEvents = true;
 proc.Exited += UpdateVideoSource;
 proc.Start();


    


    I checked the arguments over and over again, and looked for missing spaces but nothing worked.
What can be the problem ?

    


  • avfilter/vf_fps : Work around msvc (c99wrap) build failure

    26 août 2013, par Pavel Koshevoy
    avfilter/vf_fps : Work around msvc (c99wrap) build failure
    

    c99wrap choked on initialization of .dbl start_time option with
    AV_NOPTS_VALUE : Unable to parse int64_t as expression primary

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/vf_fps.c