Recherche avancée

Médias (91)

Autres articles (79)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (11943)

  • Thread Safety of LibAv/FFMpeg ?

    30 septembre 2016, par user71512

    Is LibAV/FFMpeg thread safe ? For example. Could i read from a file using AVFormatContext* in one thread and decode the read packet it in another with simple additions of mutexes or is the thread safetyness of the library a "don’t know don’t care" type deal ? I know that libav has basic support for encoder threads but i’m trying more of a blackbox type approach where i break it up into multiple threads (Source -> Decoder -> Filter -> Encoder -> Sink) and trying to understand the complications of such.

    Anyone with any experience with ffmpeg and threads and would like to chime in with any other info pertinent to this would also be greatly appreciated.

  • ffmpeg underutilizes cpu on AWS EC2 instance [closed]

    20 décembre 2024, par Denis

    i'm running video encoding with ffmpeg on EC2 instance (c5.xlarge - 4 vcpus)

    


      ffmpeg \
    -i "$INPUT_URL" \
    -c:v libvpx-vp9 -b:v 1M -threads 4 \
    -tile-columns 1 -frame-parallel 1 \
    -row-mt 1 \
    -cpu-used 0 \
    -quality 1 \
    -speed 3 \
    -r 6 \
    -f segment -segment_time "$SEGMENT_DURATION" -reset_timestamps 1 \
    "$OUTPUT_DIR/$OUTPUT_FILE_PREFIX$(date +%s)%03d.webm" > ffmpeg.log 2>&1 &


    


    I expected the CPU utilization to be around 390%, but I observed it to be around 170% via top

    


    why and what i'm doing wrong ?

    


  • H264 profile change using FFMPEG

    16 octobre 2015, par Karthee

    I have H264 Stream with following details

    video stream type     :                 AVC  
    resolution            :             640x368  
    profile:level         :            High:4.0  
    aspect ratio          :          40x23(1:1)  
    chroma format         :               4:2:0  
    interlaced            :                  no  
    frames count          :                  15  
    duration              :        00:00:02.800  
    frame size max        :              80 088  
              avg        :              14 538  
          avg/max (I)    :     28 361 / 80 088  
          avg/max (P)    :       2 444 / 3 196  
          avg/max (B)    :               0 / 0  
              min        :               1 880  

    framerate declared    :               5.000  
             real        :               5.000  

    bitrate type          :                 VBR  
    bitrate declared      :           1 259 968  

    bit allocation max    :           1 126 640  
                  avg    :             581 520  
                  min    :             124 000

    is it possible to convert into Baseline profile using FFMPEG or other tools, or is there a way to do myself ?

    basic idea is to stream this video to android devices.