Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (36)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

Sur d’autres sites (4846)

  • How can I play .sdp file with vlc player ?

    27 février 2018, par NGMong

    I created the .sdp file locally using ffmpeg,
    Try to play through vlc on Android.
    I tried to play through vlc, but the video does not come out.
    Below is my sdp file

    v = 0

    o = - 0 0 IN IP4 127.0.0.1

    s = H.264 Video, streamed by the LIVE555 Media Server

    c = IN IP4 127.0.0.1

    t = 0 0

    a = tool : libavformat 57.71.100

    video 10000 RTP / AVP 96

    b = AS : 900

    a = rtpmap : 96 H264 / 90000

    a = fmtp : 96 packetization-mode = 1 ;

    sprop-parameter-sets = Z00AH42kBQF / ywBA,

    aO48gA == ; profile-level-id = 4D001F

    vel-id = 4D001F

    The code played through vlc is shown below.

    try {
               if (media.length() > 0) {
                   Toast toast = Toast.makeText(this, media,Toast.LENGTH_LONG);
                   toast.setGravity(Gravity.BOTTOM | Gravity.CENTER_HORIZONTAL, 0,
                           0);
                   toast.show();
               }
               // Create LibVLC
               // TODO: make this more robust, and sync with audio demo
               ArrayList<string> options = new ArrayList<string>();
               //options.add("--subsdec-encoding <encoding>");
               options.add("--aout=opensles");
               options.add("--audio-time-stretch"); // time stretching
               options.add("-vvv"); // verbosity
               //options.add("vlc -vvv @ : 5004");
               libvlc = new LibVLC(this, options);
               holder.setKeepScreenOn(true);

               // Creating media player
               mMediaPlayer = new MediaPlayer(libvlc);
               mMediaPlayer.setEventListener(mPlayerListener);

               // Seting up video output
               final IVLCVout vout = mMediaPlayer.getVLCVout();
               vout.setVideoView(mSurface);
               //vout.setSubtitlesView(mSurfaceSubtitles);
               vout.addCallback(this);
               vout.attachViews();
               Log.e(TAG, "URI ::  "+Uri.parse(media));
               Media m = new Media(libvlc, Uri.parse(media));
               mMediaPlayer.setMedia(m);
               mMediaPlayer.play();
           } catch (Exception e) {
               Toast.makeText(this, "Error in creating player!", Toast
                       .LENGTH_LONG).show();
           }
    </encoding></string></string>

    What is the problem ?

  • How to play video Media Source Extensions when the audio start is delayed ? Or how to fix it with ffmpeg ?

    11 décembre 2020, par sheodox

    I have a video that I'm splitting the individual video/audio streams out then dashing with MP4Box, then I'm playing them with Media Source Extensions and appending byte ranges to video/audio source buffers from the MPD files. It's all working nicely, but one video I have has audio that is delayed by about 1.1 second. I couldn't get it to sync up and the audio would always play ahead of the video.

    &#xA;

    Currently I'm trying to set the audioBuffer.timestampOffset = 1.1 and that gets it to sync up perfectly. The issue I'm running into now though is the video refuses to play unless the audio source buffer has data. So the video stalls right away. If I skip a few seconds in (past the offset) everything works because both video/audio are buffered.

    &#xA;

    Is there a way to get around this ? Either make it play without the audio loaded, somehow fill the audio buffer with silence (can I generate something with the Web Audio API) ? Add silence to the audio file in ffmpeg ? Something else ?

    &#xA;

    I first tried adding a delay in ffmpeg with ffmpeg -i video.mkv -map 0:a:0 -acodec aac -af "adelay=1.1s:all=true" out.aac but nothing seemed to change. Was I doing something wrong ? Is there a better way to demux audio while keeping the exact same timing as when it was in the container with the video so I don't have to worry about delays/offsets at all ?

    &#xA;

  • combine raw video and audio buffer and play using named pipes by ffplay

    28 juillet 2023, par user8616480

    I have one video buffer and one audio buffer, I want to combine these buffers and play using ffplay as a combined entity, currently I am using this command , which obliviously doesn't work...

    &#xA;

    ffplay -f rawvideo -pixel_format bgr24 -video_size 1280x720 -vf "transpose=2,transpose=2" -i \.\pipe\VirtualVideoPipe -f s32le -channels 2 -sample_rate 44100 -i \.\pipe\VirtualAudioPipe&#xA;

    &#xA;

    error massage says ...

    &#xA;

    Argument &#x27;\.\pipe\VirtualAudioPipe&#x27; provided as input filename, but &#x27;\.\pipe\VirtualVideoPipe&#x27; was already specified.&#xA;

    &#xA;

    what should be the command for combining two named pipe video and audio sources and play as one.

    &#xA;

    kindly help ...

    &#xA;