Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (70)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (7690)

  • There is no audio in the video wich I recording with "android camera" in mobile ffmpeg

    30 novembre 2019, par kadr0id

    I use mobile ffmpeg version v4.3-dev-1181. But I can’t save the video with sound.

    This is my code :

    _flutterFFmpeg.execute('-y -f android_camera -video_size hd720 -framerate 30 -i 0:0 -f flv  \"/storage/emulated/0/file85.flv\"');

    Video save perfect but without sound. Maby I do something wrong ?

    In support is an example :

    Record video and audio into a file with this command :

    -y -f android_camera -i 0:0 -r 30 -pixel_format bgr0 -t 00:00:05 <record file="file" path="path">
    </record>
  • There is no audio in the video which I recorded with "android camera" in mobile ffmpeg

    14 juillet 2020, par kadr0id

    I use mobile ffmpeg version v4.3-dev-1181. But I can't save the video with sound.

    &#xA;

    This is my code :

    &#xA;

     _flutterFFmpeg.execute(&#x27;-y -f android_camera -video_size hd720 -framerate 30 -i 0:0 -f flv  \"/storage/emulated/0/file85.flv\"&#x27;);&#xA;

    &#xA;

    Video save perfect but without sound. Mabye I did something wrong ?

    &#xA;

    In support is an example :

    &#xA;

    Record video and audio into a file with this command :

    &#xA;

    -y -f android_camera -i 0:0 -r 30 -pixel_format bgr0 -t 00:00:05 <record file="file" path="path">&#xA;</record>

    &#xA;

  • correcting captured dvb-t video from two different mpeg-ts sources

    17 février 2013, par Ondra Kocian

    I have captured same channel (two files - full multiplex of dvb-t - mpeg-ts) from different dvb-t transmitters :

    Transmitter-A.ts
    Transmitter-B.ts

    I would like to merge these streams to produce one perfect video of channel to correct failtures in signal from transmitter-B and transmitter-A - I know there are frame gaps lets say :

    Transmitter-A.ts 1:10-1:20
    Transmitter-B.ts 2:30-2:35

    Is there some existing tool to do so ? Do I have to go to the frame level of ts packet and compare them between streams(lets say find I-frames-will they fit ? And compare them) ? I hoped pts and dts timestamps would fit but didnt - is there some way to use pcr or any stamp in ts packet preventing me to go on frame level ?