Recherche avancée

Médias (91)

Autres articles (32)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (4973)

  • Extract image of every frame of a video using react-native-ffmpeg

    1er octobre 2020, par EdG

    I have looked all over the internet to get a way to extract image of everyframe of a video using react-native-ffmpeg. I am making a mobile app and I want to show all per frame images on the video timeline. I want to do this natively on mobile so that I can utilise hardware power of mobile. That is the reason I am looking for react-native-ffmpeg kind of library. Am I in the right direction ? This npmjs.com/package/react-native-ffmpeg is what I am trying to use. I need to know the command to do the job.

    


  • armv6 : Accelerate ff_imdct_half for general case (mdct_bits != 6)

    11 juillet 2014, par Ben Avison
    armv6 : Accelerate ff_imdct_half for general case (mdct_bits != 6)
    

    The previous implementation targeted DTS Coherent Acoustics, which only
    requires mdct_bits == 6. This relatively small size lent itself to
    unrolling the loops a small number of times, and encoding offsets
    calculated at assembly time within the load/store instructions of each
    iteration.

    In the more general case (codecs such as AAC and AC3) much larger arrays
    are used - mdct_bits == [8, 9, 11]. The old method does not scale for
    these cases, so more integer registers are used with non-unrolled versions
    of the loops (and with some stack spillage). The postrotation filter loop
    is still unrolled by a factor of 2 to permit the double-buffering of some
    VFP registers to facilitate overlap of neighbouring iterations.

    I benchmarked the result by measuring the number of gperftools samples
    that hit anywhere in the AAC decoder (starting from aac_decode_frame())
    or specifically in ff_imdct_half_c / ff_imdct_half_vfp, for the same
    example AAC stream :

    Before After
    Mean StdDev Mean StdDev Confidence Change
    aac_decode_frame 2368.1 35.8 2117.2 35.3 100.0% +11.8%
    ff_imdct_half_* 457.5 22.4 251.2 16.2 100.0% +82.1%

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/arm/mdct_vfp.S
  • Raspberry Pi HDMI to Virtual Input Device using UV4L Raspidisp

    8 mai 2021, par Darshan Patel

    I'm trying to convert Raspberry pi hdmi as input device, and then I want to restream that using ffmpeg.&#xA;I have used below command to add input device.

    &#xA;

    uv4l --driver raspidisp --display 0 --framerate 5 --resolution 0 --auto-video_nr&#xA;

    &#xA;

    It's showing below output when run.

    &#xA;

    <notice> [core] Trying to loading driver &#x27;raspidisp&#x27; from built-in drivers...&#xA;<notice> [core] Loading driver &#x27;raspidisp&#x27; from external plug-in&#x27;s...&#xA;<notice> [driver] RaspiDisp Video4Linux2 Driver built Jan  6 2019&#xA;<notice> [core] Device detected!&#xA;<warning> [core] Cannot create /dev/video0 because file already exists&#xA;<warning> [core] Cannot create /dev/video1 because file already exists&#xA;<warning> [core] Cannot create /dev/video2 because file already exists&#xA;<notice> [core] Registering device node /dev/video3&#xA;</notice></warning></warning></warning></notice></notice></notice></notice>

    &#xA;

    It is added as /dev/Video3.&#xA;Then I am trying to restream it using ffmpeg as below command.

    &#xA;

    sudo ffmpeg -r 25 -s 1280x720 -f video4linux2 -i /dev/video3 -f mpegts udp://192.168.1.109:1234&#xA;

    &#xA;

    It gives below error.

    &#xA;

    [video4linux2,v4l2 @ 0xe64200] The driver does not permit changing the time per frame&#xA;[video4linux2,v4l2 @ 0xe64200] Time per frame unknown&#xA;[video4linux2,v4l2 @ 0xe64200] mmap: No such device&#xA;/dev/video3: No such device&#xA;

    &#xA;

    Any help or suggestions greatly appreciated.

    &#xA;