Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (66)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (11054)

  • Why mp4 can not shared on Facebook or Instagram on Android ?

    8 janvier 2023, par János

    This is the file : https://t44-post-cover.s3.eu-central-1.amazonaws.com/2e3s.mp4

    


    When I download and try share, it fails. Why ? This is the parameters was rendered. Downloading and sharing works from iPhone to Facebook on Messenger or Instagram, but not from Android phone to Facebook on Messenger or Instagram.

    


    What parameters ffpmpeg need to be able to share mp4 from Android to Facebook / Instagram ?

    


    await new Promise<void>((resolve, reject) => {&#xA;        ffmpeg()&#xA;            .setFfmpegPath(pathToFfmpeg)&#xA;            .input(`/tmp/input_${imgId}.gif`)&#xA;            .inputFormat(&#x27;gif&#x27;)&#xA;            .inputFPS(30)&#xA;            .input(&#x27;anullsrc&#x27;)&#xA;            .inputFormat(&#x27;lavfi&#x27;)&#xA;            .audioCodec(&#x27;aac&#x27;)&#xA;            .audioChannels(2)&#xA;            .audioFilters([&#x27;apad&#x27;])&#xA;            .videoCodec(&#x27;libx264&#x27;)&#xA;            .videoBitrate(1000)&#xA;            .videoFilters([&#xA;                &#x27;tpad=stop_mode=clone:stop_duration=2&#x27;,&#xA;                &#x27;scale=trunc(iw/2)*2:trunc(ih/2)*2:flags=lanczos,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse&#x27;,&#xA;            ])&#xA;            .fps(30)&#xA;            .duration(5)&#xA;            .format(&#x27;mp4&#x27;)&#xA;            .outputOptions([&#xA;                &#x27;-pix_fmt yuvj420p&#x27;,&#xA;                &#x27;-profile:v baseline&#x27;,&#xA;                &#x27;-level 3.0&#x27;,&#xA;                &#x27;-crf 17&#x27;,&#xA;                &#x27;-movflags &#x2B;faststart&#x27;,&#xA;                &#x27;-movflags frag_keyframe&#x2B;empty_moov&#x27;,&#xA;            ])&#xA;            .output(`/tmp/output_${imgId}.mp4`)&#xA;            .on(&#x27;end&#x27;, () => {&#xA;                console.log(&#x27;MP4 video generated&#x27;)&#xA;                resolve()&#xA;            })&#xA;            .on(&#x27;error&#x27;, (e) => {&#xA;                console.log(e)&#xA;                reject()&#xA;            })&#xA;            .run()&#xA;    })&#xA;</void>

    &#xA;

  • avformat/mux : use only valid timestamps when calculating packet distance

    28 décembre 2022, par James Almer
    avformat/mux : use only valid timestamps when calculating packet distance
    

    Fixes : signed integer overflow : 0 - -9223372036854775808 cannot be represented in type 'long int'
    Fixes : fate-cover-art-aiff-id3v2-remux, fate-cover-art-mp3-id3v2-remux and fate-mov-cover-image
    under ubsan.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mux.c
  • Unable to inject album art into m4a when converting from mp3 FFMPEG

    25 décembre 2022, par Ryan

    I've been trying so many variations of conversion for mp3 to M4A with album art injection via URL. The command below is written in Go, but runs directly in shell. I assume I need to parse the item in the stream differently or more explicitly specify jpg codec somehow, but at a loss.

    &#xA;

        cmd = exec.Command(&#xA;        "ffmpeg",&#xA;        "-i",&#xA;        escapedInputPath,&#xA;        "-i",&#xA;        bookArt,&#xA;        "-c:v",&#xA;        "copy",&#xA;        "-c:a",&#xA;        "aac",&#xA;        "-b:a",&#xA;        "256k",&#xA;        "-map",&#xA;        "0:0",&#xA;        "-map",&#xA;        "1:0",&#xA;        "-metadata:s:v",&#xA;        "title=Album cover",&#xA;        "-metadata:s:v",&#xA;        "comment=Cover (front)",&#xA;        escapedOutputPath,&#xA;    )&#xA;

    &#xA;

    Error

    &#xA;

     Metadata:&#xA;    encoder         : Lavf59.27.100&#xA;  Duration: 05:54:05.07, start: 0.025057, bitrate: 64 kb/s&#xA;  Stream #0:0: Audio: mp3, 44100 Hz, mono, fltp, 64 kb/s&#xA;Input #1, image2, from &#x27;https://myimage.jpg&#x27;:&#xA;  Duration: 00:00:00.04, start: 0.000000, bitrate: 17234 kb/s&#xA;  Stream #1:0: Video: mjpeg (Progressive), yuvj444p(pc, bt470bg/unknown/unknown), 267x400 [SAR 300:300 DAR 267:400], 25 fps, 25 tbr, 25 tbn&#xA;Stream mapping:&#xA;  Stream #0:0 -> #0:0 (mp3 (mp3float) -> aac (native))&#xA;  Stream #1:0 -> #0:1 (copy)&#xA;Press [q] to stop, [?] for help&#xA;[ipod @ 0x119b04d30] Could not find tag for codec mjpeg in stream #1, codec not currently supported in container&#xA;Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument&#xA;Error initializing output stream 0:0 -- &#xA;[aac @ 0x119b05ae0] Qavg: nan&#xA;Conversion failed!&#xA;

    &#xA;