Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (51)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (5191)

  • ffmpeg rtmp webcam live stream iphone/pad segment size too big

    1er février 2013, par Foo Barazz

    I'm transcoding a rtmp stream from a red5 server for use to live stream on a iphone or ipad device. I built latest ffmpeg version from git repo using the built in segmenter to create .ts files and m3u8 playlist file using the following :

    ffmpeg -probesize 50k -i "rtmp://localhost/oflaDemo/red5StreamDemo live=1" \
    -c:v libx264 -b:v 128k -vpre ipod320 -flags -global_header -map 0 \
    -f segment -segment_time 3 -segment_list foo.m3u8 -segment_list_flags +live \
    -segment_list_type m3u8 -segment_list_size 5 -segment_format mpegts foo%d.ts

    This works fine, but I can't get the segment size smaller than about 12 sec even set to 3 (-segment_time 3). It seems to be caused by libx264 vcodec.
    Am I missing any flag ?

    By the way, you can simple run the ffmpeg command above successfully by starting red5 SimpleBroadcaster example.

  • Unable to play video from firebase cloud storage download url on Iphone Safari [closed]

    26 janvier 2024, par Acid Coder
                        getDownloadURL(ref)
                        .then(url => {
                            //... save the url to state
                        })


    


    front end : React

    


                                &#xA;                                <source src="{videoURL}" type="video/mp4"></source>&#xA;                            &#xA;

    &#xA;

    work fine on PC and Android, but on Iphone Safari, only 1 out of 10 videos can be played

    &#xA;

    enter image description here

    &#xA;

    all video are from the same source, going through same compression, from mp4 to mp4

    &#xA;

    import ffmpeg from &#x27;fluent-ffmpeg&#x27;&#xA;&#xA;        ffmpeg(inputPath)&#xA;            .output(outputPath)&#xA;            .videoCodec(&#x27;libx264&#x27;)&#xA;            .audioCodec(&#x27;aac&#x27;)&#xA;            .on(&#x27;end&#x27;, () => {&#xA;                // ...&#xA;            })&#xA;            .on(&#x27;error&#x27;, err => {&#xA;                // ...&#xA;            })&#xA;            .run()&#xA;

    &#xA;

  • Convert .mp3 to .mov or .mp4 on iPhone SDK

    2 août 2014, par Sebastian

    How are you guys ? I’m working on a little idea I had yesterday and I’m a little stuck with an mp3 conversion.

    At this time, my app does the following :

    1. Receive an input text.
    2. The app generate a speech using an online API and download the generated .mp3 file to the app document’s folder.

    Now I need to convert the .mp3 to .mov or .mp4 and then grab it to the camera roll, so the user can share the video on Facebook, Whatsapp, or wherever he wants.

    Is there some easy and memory friendly way to convert from .mp3 to .mp4 without "writing a video" ?
    Thank you !