Recherche avancée

Médias (91)

Autres articles (52)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (4986)

  • Video and Audio stream in Python pipe to ffmpeg

    29 avril 2019, par Praveen P K

    Raw video from Python pipe is converted to udp stream using FFMPEG is working correctly using following code :

    command = [ 'ffmpeg',
               '-y', # (optional) overwrite output file if it exists
               '-r', '25', # frames per second
               '-i', '-', # The imput comes from a pipe
               '-an', # Tells FFMPEG not to expect any audio
               '-r', '25',
               '-c:v', 'copy',
               '-f', 'mpegts',
               'udp://ip:port'
           ]
    devl  = open(os.devnull, 'w')
    file_name = '/tmp/file.txt'
    err1 = open(file_name, 'w')
    pipe  = sp.Popen( command, stdin=sp.PIPE, stdout=devl, stderr=err1)

    But when audio stream also coming in same python pipe, how i should change the program to get both audio and video stream to udp stream.

  • Create mp4 file from raw h264 using a pipe instead of files

    16 avril 2019, par Charlie Burns

    I have a raw h264 file that I can display with VLC, on a mac :

    open -a VLC file.h264

    I can convert this to mp4 with the command line

    ffmpeg -f h264 -i file.h264 -c:v copy file.mp4

    But what I really want to do is something like :

    cat file.h264 | ffmpeg > file.mp4

    Reason being that the input is coming over a socket and I want to convert it and send it to a video tag in an html file on the fly.

    An alternative solution would be a way to display the raw h264 in a web page without converting it to mp4 first.

    The input is coming in frame by frame, the first four bytes are 0,0,0,1. My understanding is that this h264 Annex B format.

    I know nothing about video formats, I would grateful to be pointed in a direction to look.

    Should I look into writing code using libavcodec like this quuesion or is there an off-the-shelf solution ?

    H.264 muxed to MP4 using libavformat not playing back

    Thanks !

  • Java execute ffmpeg commands with (pipe) "... -f nut - | ffmpeg -i - ..." just hangs

    18 mars 2019, par user3776738

    I can’t get this to run,because java just waits for ffmpeg. But ffmpeg doesn’t give an input- nor an error stream. It just runs, but doing nothing.

    The output of "System.out.println("command :.." insert into bash just runs fine as expected.So there is nothing wrong with the ffmpeg syntax.

    Here’s the code.

    package mypackage;

    import java.awt.image.BufferedImage;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import javax.imageio.ImageIO;

    /**
    *
    * @author test
    */
    public class ffmpeg_hang {

           /**
        * @param args the command line arguments
        */
       public static void main(String[] args) throws IOException, InterruptedException {
           String INPUT_FILE="/path/to/media";
           String FFMPEG_PATH="/path/to/ffmpegFolder/";

               for(int i=0;(i+4)<40;i+=4){                
               String[] ffmpeg_pipe = new String[]{
                   FFMPEG_PATH + "ffmpeg_4.1.1",
                   "-ss",(i+""),"-t", "4",            
                   "-i", INPUT_FILE,                                        
                   "-ac", "1", "-acodec", "pcm_s16le", "-ar", "16000",
                   "-f","nut","-","|",
                   FFMPEG_PATH + "ffmpeg_4.1.1",
                   "-i","-",
                   "-lavfi", "showspectrumpic=s=128x75:legend=disabled:saturation=0:stop=8000",
                   "-f","image2pipe","pipe:1"};

               System.out.println("command: "+String.join(" ", ffmpeg_pipe));

               Process p;
               //ffmpe wav->pipe->spectrogra->pipe->java
               p = Runtime.getRuntime().exec(ffmpeg_pipe);


               StringBuilder Boxbuffer = new StringBuilder();
               BufferedReader reader = new BufferedReader(new InputStreamReader(p.getErrorStream()));
               String line = "";

               while ((line = reader.readLine()) != null) {
                   Boxbuffer.append(line);
               }


               System.out.println("ffmpeg errors->> "+Boxbuffer.toString());
               p.waitFor();


               BufferedImage image = ImageIO.read(p.getInputStream());
               //do stuff with image
               }

       }

    }