Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (45)

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

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (6298)

  • Compressed mp4 video is taking too long time to play in Android(exo player)

    4 mai 2018, par User

    Video(mp4) is recorded from android camera and sent to backend, here I am using ffmpeg wrapper to compress the video[44mb video to 5.76mb]. compression is working well, But when I send the video for play in android(exo player), is taking too long time to start.

    below is my code to compress :

    FFmpegBuilder builder = new FFmpegBuilder()
                      .setInput("D:/dummyVideos/myvideo.mp4")     // Filename, or a FFmpegProbeResult
                      .overrideOutputFiles(true) // Override the output if it exists
                      .addOutput("D:/dummyVideos/myvideo_ffmpeg.mp4")   // Filename for the destination
                      .setFormat("mp4")       // Format is inferred from filename, or can be set
                      .disableSubtitle()       // No subtiles
                      .setAudioChannels(1)         // Mono audio
                      .setAudioCodec("aac")       // using the aac codec
                      .setAudioSampleRate(48_000) // at 48KHz
                      .setAudioBitRate(32768)     // at 32 kbit/s
                      .setVideoCodec("libx264")     // Video using x264
                      .setVideoFrameRate(24, 1)     // at 24 frames per second
                      .setVideoResolution(1280, 720) // at 640x480 resolution
                      .setVideoBitRate(762800)
                      .setStrict(FFmpegBuilder.Strict.EXPERIMENTAL) // Allow FFmpeg to use experimental specs
                      .done();

    Can anyone tell me why video is taking too long time to play in exo player ? Is anything wrong in the compression ?

  • Revision 3617 : Faire fonctionner le player sur un retour ajax Diverses améliorations

    18 juin 2010, par kent1 — Log

    Faire fonctionner le player sur un retour ajax Diverses améliorations

  • Video created with ffmpeg does not playing in Windows media player

    14 janvier 2019, par Prince Tyagi

    Issue : Video is not playing with Windows Media Player while its successfully playing with VLC player, Google Chrome browser.

    Below are the details that I am using :
    1. npm "fluent-ffmpeg" version : "2.1.2" in node application.
    2. node version 8.11.3.
    3. FFmpeg version : 20161230-6993bb4 downloaded from http://ffmpeg.zeranoe.com/builds.
    4. Set path to ffmpeg.exe to in path on system environment.
    5. Here is the sample code.

    let command = new ffmpeg({ source: 'rtsp://192.168.2.198/cam0_1' }), fileName = 'abc.mp4';

    // Record video from camera.
    command.inputFPS(20)
     .duration(10)
     .on('start', function () {
       console.log('Recording started.', ('File: ' + fileName));
     })
     .on('end', function () {
       console.log('Recording completed.', ('File: ' + fileName));
     })
     .on('error', function (err, stdout, stderr) {
       console.log('An error occurs while recording.', ('File: ' + fileName), err.message, stdout, stderr);
     })
     .format('mp4')
     .save(fileName);