Recherche avancée

Médias (0)

Mot : - Tags -/publication

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

Autres articles (64)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8306)

  • FFMPEG - create video in with images and video file

    15 novembre 2018, par Pramod Gehlot

    I am creating video using ffmpeg
    I have some images and video so i want to create video with images and also video
    in node js

    my code

    ffmpeg()  .addInput(__dirname + '/test/fixtures/step_%1d.png')
    // .outputOptions(['[0:v]scale=200x200'])

    .complexFilter([
        // 'scale=640:480[rescaled]',

        {
            filter: 'zoompan',
            options: {
               x: '200',
                y: 'ih/2-(ih/zoom/2)',
                z: 'min(zoom+0.0005,1.5)',
               d: '125',
                s: "200x200",

            },
            // "inputs":'[0:v]scale=200x200'
        },
    ])

    .format('mp4')
    .videoBitrate('1024k')
    .videoCodec('mpeg4')
    .output(finalVideoPath)
    .on("error", function (er) {
        console.log("error occured: " + er.message);
    })
    .on('end', function () {
        console.log('Finished processing');
    }).run();

    I want to add video , how we can do in this code, Please help me

  • WebM Video Codec in Skype 5.0 Group Video

    9 novembre 2010, par noreply@blogger.com (John Luther)

    Our friends at Skype recently released Skype 5.0 for Windows and Mac, which features a beta group video feature using VP8, the video codec in WebM. In the first half of 2010, approximately 40% of Skype-to-Skype calls were video calls and we’re excited that in the future many of those calls will be made using VP8.

    To check out the new group video feature, simply download the Skype Software.

    Note : For group video to work, everyone on the call needs the new Skype for Windows or Mac, a webcam and a broadband connection.

    For more info about Skype group video, visit the Skype website.

  • HTML5 video source video type codecs parameter with ffmpeg [duplicate]

    25 juin 2016, par Matt Joiner

    This question already has an answer here :

    I’m programmatically adding source tags to a HTML5 video tag. I’m using ffmpeg to generate the content for the source tags. How can I get the appropriate codec value for the source type attribute ?

    <video>
       <source src="{{.StreamURL}}" type="video/mp4; codecs=?">
    <video>
    </video></source></video>