Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (87)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (12675)

  • avformat/mpegts : skip non-PMT tids earlier

    9 mai 2018, par Aman Gupta
    avformat/mpegts : skip non-PMT tids earlier
    

    This mimics the logic flow in all the other callbacks
    (pat_cb, sdt_cb, m4sl_cb), and avoids calling skip_identical()
    for non PMT_TID packets.

    Since skip_identical modifies internal state like
    MpegTSSectionFilter.last_ver, this change prevents unnecessary
    reprocessing on some streams which contain multiple tables in
    the PMT pid. This can be observed with streams from certain US
    cable providers, which include both tid=0x2 and another unspecified
    tid=0xc0.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavformat/mpegts.c
  • Video player scroll doesn't work after ffmpeg audio and video merge (NodeJS)

    1er novembre 2022, par Pietro Leto

    I made youtube downloader to download video from youtube using nodejs library ytdl-core. If I wanted to download video with best quality I had to download them without sound. So, in my script, I download audio and video separately and I merge them into an mp4 file.&#xA;What's the problem ? Video player scroll doesn't work. I can see the video but I can't going back or move on, and I can't see video duration.

    &#xA;

    const express = require("express");&#xA;const cors = require("cors");&#xA;const app = express();&#xA;const ffmpeg = require(&#x27;ffmpeg-static&#x27;);&#xA;const cp = require(&#x27;child_process&#x27;);&#xA;const ytdl = require("ytdl-core");&#xA;&#xA;app.use(cors());&#xA;&#xA;app.listen(3000, () => {&#xA;    console.log("Server is working at port 3000 !!");&#xA;});&#xA;&#xA;app.get(&#x27;/download&#x27;, (req,res) => {&#xA;    var url = req.query.URL;&#xA;    var formato = req.query.FORMAT;&#xA;&#xA;    try {&#xA;        let vid = ytdl(url,{filter:&#x27;videoonly&#x27;, quality:&#x27;highestvideo&#x27;})&#xA;        let aud = ytdl(url, {filter: &#x27;audioonly&#x27;, quality:&#x27;highestaudio&#x27;});&#xA;&#xA;        ytdl.getInfo(url).then(info => {&#xA;            titolo = info.videoDetails.title;&#xA;&#xA;            res.header("Content-Disposition", &#x27;attachment;  filename=&#x27; &#x2B; titolo &#x2B; &#x27;.mp4&#x27;);&#xA;&#xA;            const ffmpegProcess = cp.spawn(ffmpeg, [&#xA;                &#x27;-i&#x27;, `pipe:3`,&#xA;                &#x27;-i&#x27;, `pipe:4`,&#xA;                &#x27;-map&#x27;,&#x27;0:v:0&#x27;,&#xA;                &#x27;-map&#x27;,&#x27;1:a:0&#x27;,&#xA;                &#x27;-c:v&#x27;, &#x27;copy&#x27;,&#xA;                &#x27;-c:a&#x27;, &#x27;aac&#x27;,&#xA;                &#x27;-crf&#x27;,&#x27;27&#x27;,&#xA;                &#x27;-preset&#x27;,&#x27;veryfast&#x27;,&#xA;                &#x27;-movflags&#x27;,&#x27;frag_keyframe&#x2B;empty_moov&#x27;,&#xA;                &#x27;-f&#x27;,&#x27;mp4&#x27;,&#xA;                &#x27;-loglevel&#x27;,&#x27;error&#x27;,&#xA;                &#x27;-&#x27;&#xA;            ], {&#xA;                stdio: [&#xA;                &#x27;pipe&#x27;, &#x27;pipe&#x27;, &#x27;pipe&#x27;, &#x27;pipe&#x27;, &#x27;pipe&#x27;,&#xA;                ],&#xA;            });&#xA;              &#xA;            aud.pipe(ffmpegProcess.stdio[4]);&#xA;            vid.pipe(ffmpegProcess.stdio[3]);&#xA;            ffmpegProcess.stdio[1].pipe(res);&#xA;        });&#xA;    }&#xA;    catch(err) {&#xA;        console.log("Error with URL: " &#x2B; url &#x2B; "\nERROR: " &#x2B; err &#x2B; "\n\n");&#xA;    }&#xA;});&#xA;

    &#xA;

    I have not found alternatives to do this. I need a working script to download youtube videos with good quality.

    &#xA;

  • Is there a way to batch save video information (frame height, width, rate, etc) to video files' metadata ? [closed]

    6 avril 2021, par André Levy

    Searched all over to no avail. I had a vague recollection that MediaInfo did it, but no can do. Perhaps there's a way with ffmpeg, but all I've seen are commands to export the metadata already on the files.

    &#xA;