Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

Autres articles (82)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (16633)

  • web recorded video not played in ipad

    30 juin 2015, par ketan

    I record video from web using flash media server. Now using flex default player i tried to play video but, it will not play ipad.(ios device)
    I checked that video codec and it is something like following :

    libxavs --enable-libxvid --enable-decklink --enable-zlib
     libavutil      52. 92.100 / 52. 92.100
     libavcodec     55. 69.100 / 55. 69.100
     libavformat    55. 45.100 / 55. 45.100
     libavdevice    55. 13.102 / 55. 13.102
     libavfilter     4. 10.100 /  4. 10.100
     libswscale      2.  6.100 /  2.  6.100
     libswresample   0. 19.100 /  0. 19.100
     libpostproc    52.  3.100 / 52.  3.100
    [flv @ 0000000002b60220] Stream discovered after head already parsed
    Input #0, flv, from 'C:\Users\Administrator\Desktop\123654789.flv':
     Metadata:
       canSeekToEnd    : false
       createdby       : FMS 4.5
       creationdate    : Tue Jun 30 16:27:22 2015
     Duration: 00:00:15.25, start: 0.000000, bitrate: 52 kb/s
       Stream #0:0: Video: flv1, yuv420p, 320x227, 1k tbr, 1k tbn, 1k tbc
       Stream #0:1: Audio: speex, 16000 Hz, mono, s16, 20 kb/s
       Stream #0:2: Data: none

    I record video following ways :

    netstream.publish("FILENAME","record");

    Thanks.

    Edit :

    Another flv file i got which is played in ios. But when i check it’s codec it something like following :

    r --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab -
    -enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx
    --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-
    libxavs --enable-libxvid --enable-decklink --enable-zlib
     libavutil      52. 92.100 / 52. 92.100
     libavcodec     55. 69.100 / 55. 69.100
     libavformat    55. 45.100 / 55. 45.100
     libavdevice    55. 13.102 / 55. 13.102
     libavfilter     4. 10.100 /  4. 10.100
     libswscale      2.  6.100 /  2.  6.100
     libswresample   0. 19.100 /  0. 19.100
     libpostproc    52.  3.100 / 52.  3.100
    Input #0, flv, from 'C:\Users\Administrator\Desktop\16402.flv':
     Metadata:
       major_brand     : 3gp4
       minor_version   : 0
       compatible_brands: isom3gp4
       encoder         : Lavf55.45.100
     Duration: 00:00:13.23, start: 0.000000, bitrate: 304 kb/s
       Stream #0:0: Video: flv1, yuv420p, 320x240, 300 kb/s, 15 fps, 15 tbr, 1k tbn
    , 1k tbc
       Stream #0:1: Audio: mp3, 22050 Hz, mono, s16p, 0 kb/s

    How, can i record/convert flv like below ?

  • Unable display blob produced by ffmpeg

    16 avril 2021, par Hikigaya Jie

    My version of ffmpeg for frontend app :

    


      

    • "@ffmpeg/ffmpeg" : "^0.9.7"
    • 


    


    My goal is to have the uploaded video, writes video frames to image files and
I have tried the following code.

    


    import { createFFmpeg, fetchFile } from &#x27;@ffmpeg/ffmpeg&#x27;;&#xA;import { useState } from &#x27;react&#x27;;&#xA;&#xA;const ImageFrame: React.FC = () => {&#xA;    const [videoSrc, setVideoSrc] = useState(&#x27;&#x27;);&#xA;    const [images, setImages] = useState(&#x27;&#x27;);&#xA;    const ffmpeg = createFFmpeg({&#xA;        log: true,&#xA;    });&#xA;&#xA;    const doSomething = async () => {&#xA;        await ffmpeg.load();&#xA;        ffmpeg.FS(&#x27;writeFile&#x27;, &#x27;output%%-%d_%Y-%m-%d_%H-%M-%S.jpg&#x27;, await fetchFile(videoSrc));&#xA;        await ffmpeg.run(&#x27;-i&#x27;, videoSrc, &#x27;-vf&#x27;, &#x27;fps=1&#x27;, &#x27;output%%-%d_%Y-%m-%d_%H-%M-%S.jpg&#x27;);&#xA;        const data = ffmpeg.FS(&#x27;readFile&#x27;, &#x27;output%%-%d_%Y-%m-%d_%H-%M-%S.jpg&#x27;);&#xA;        const url = URL.createObjectURL(new Blob([data.buffer], { type: &#x27;image/jpg&#x27; }));&#xA;&#xA;        setImages(url);&#xA;    };&#xA;    const onChange = (event: any) => {&#xA;        setVideoSrc(event.target.files[0]);&#xA;    };&#xA;    return (&#xA;        <div>&#xA;            <div>&#xA;                <div style="{{">&#xA;                    <input accept="&#x27;video/mp4&#x27;" type="&#x27;file&#x27;" title="&#x27;Upload&#x27;" />&#xA;                    <button>Start</button>&#xA;                </div>&#xA;            </div>&#xA;&#xA;            <div>&#xA;                {images &amp;&amp; <img src="http://stackoverflow.com/feeds/tag/{images}" alt="&#x27;frame&#x27;" width="{250}" style='max-width: 300px; max-height: 300px' />}&#xA;            </div>&#xA;        </div>&#xA;    );&#xA;};&#xA;&#xA;export default ImageFrame;&#xA;&#xA;

    &#xA;

    This is the output I get for displaying the blob.

    &#xA;

    enter image description here

    &#xA;

    This is the log from ffmpeg, for some reason it always says "No such file or directory"

    &#xA;

    enter image description here

    &#xA;

  • react native app doesn't load my video which is made by ffmpeg

    10 mars 2023, par yabbee

    I'm working on react native expo project and using expo-av to play video.I'm experimenting on my iphone and it's working almost fine. I copy and paste the sample code on expo av doc and Big Buck Bunny video is loaded successfully and able to play. But, there is a video that can't be played on my app. I have a video which is stored on s3 server. This is the mp4 video made by ffmpeg command on my computer and manually uploaded it on s3. I can download it and play on my machine. But when I try to load that video on my expo app, the video doesn't show up on the component at all. I write video source correctly including https:// but doesn't show up anything. How can i solve this problem ? I'm using expo 48.0.0 , expo-av 13.2.1 and expo-dev-client 2.1.5 now.

    &#xA;

    Here is the ffmpeg code that I've used to make video. As you can see, I'm making a retro video by overlaying grain effect mp4 video which I downloaded.

    &#xA;

    ffmpeg -i /Users/yosuke/Desktop/ffmpeg_playground/effects/grainAndFlash.mp4 -i &#xA;{inputFilePath} -filter_complex "[0:a][1:a]amerge[mixedAudio];&#xA;[0]format=rgba,colorchannelmixer=aa=0.25[fg];[1][fg]overlay[out];&#xA;[out]trim=0:32,setpts=PTS-STARTPTS[video]" -map "[video]" -map "[mixedAudio]" -&#xA;pix_fmt yuv420p -c:v libx264 -crf 18 -shortest {outputFilePath}&#xA;

    &#xA;

    Here is the Expo app code

    &#xA;

    import React, { useState, useEffect, useContext, useRef } from &#x27;react&#x27;;&#xA;import { View, Text, ScrollView, TouchableOpacity, Dimensions } from &#x27;react-native&#x27;;&#xA;&#xA;const Container = () => {&#xA;    const vidRef = useRef(null);&#xA;return (&#xA;    <scrollview style="{{" 1="1">&#xA;      &#xA;    </scrollview>&#xA;  );&#xA;};&#xA;&#xA;export default Container;&#xA;

    &#xA;