Recherche avancée

Médias (91)

Autres articles (50)

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

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

  • avcodec/vp6 : clear dimensions on failed resolution change in vp6_parse_header()

    12 mars 2017, par Michael Niedermayer
    avcodec/vp6 : clear dimensions on failed resolution change in vp6_parse_header()
    

    Fixes : 807/clusterfuzz-testcase-6470061042696192
    Fixes null pointer dereference

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/targets/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/vp6.c
  • FFmpeg- Concat videos with unknown resolution/frame size/rate etc

    21 mars 2017, par Karandeep Atwal

    On android platform, I am using this library for concatenating videos.
    For mp4 files with Same Properties like frame-size,resolution etc. I have succeeded concatenating by this command-

    -f concat -safe 0 -i inputfile.txt -codec copy Outputfile

    where inputfile.txt contains-

    file /storage/emulated/0/demo/vid1.mp4
    file /storage/emulated/0/demo/vid2.mp4
    file /storage/emulated/0/demo/vid3.mp4
    file /storage/emulated/0/demo/vid4.mp4

    But, this command only works if input video files have SAME Properties eg. videos made from camera app.If we add other mp4 videos to the input eg. Whatsapp Videos, then I got corrupted Output. It is described here.

    I have read about Concat-Filter ,But this is not working in my case giving me errors like Media-mismatch asked here, different SAR value,frame-size etc. doesn’t match. I also used this Command but it takes about three hours for 25Mb & 5Mb video.

    I want to choose as many random videos from storage and want to concat them. I also think of converting every chosen video to same bitrate, same frame size, same aspect ratio, but it is time-consuming.

    What would be the Best Way to Concat videos of unknown type using ffmpeg commands ?

  • Error while trying to stream higer resolution using ffmpeg and jsmpeg

    11 avril 2017, par trojek

    I try to do a prof of concept of streaming webcam in browser using jsmpeg. It works perfect when I use code from the documentation which is as follows :

    ffmpeg \
       -f v4l2 \
           -framerate 25 -video_size 640x480 -i /dev/video0 \
       -f mpegts \
           -codec:v mpeg1video -s 640x480 -b:v 1000k -bf 0 \
       http://localhost:8081/supersecret

    My webcam supports resolutions, framerates and formats as in code below :

    [video4linux2,v4l2 @ 0x2655360] Compressed:       mjpeg :          Motion-JPEG : 1920x1080 1280x720 1024x768 640x480 800x600 1280x1024 320x240
    [video4linux2,v4l2 @ 0x2655360] Raw       :     yuyv422 :           YUYV 4:2:2 : 1920x1080 1280x720 1024x768 640x480 800x600 1280x1024 320x240

    While I change in above code the resolution from 640x480 to e.g. 1024x768, I get an error :

    [mpeg1video @ 0x110f4e0] MPEG1/2 does not support 10/1 fps
    Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height

    I assume that camera driver change number of fps and MPEG1/2 doesn’t support that numer of fps.
    Probably I get from camera raw data (yuyv422) and it can’t play it with higer framerate when e.f. 10 for 1024x768.
    How Can I modify ffmped execution code in order to stream video in Full HD resulution ?