Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (106)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

Sur d’autres sites (10830)

  • Improve FFmpeg time ? conversion takes very long

    15 avril 2015, par Rubytastic

    I have several rules to convert a movie to several formats and create a preview image. Problem is the execution of these takes very long.
    Also the outputted quality is very low. I harvested these examples from several sources.

    What could be done to
    * improve speed
    * improve quality ?

    ffmpeg -y -i /file/$1.flv -acodec libmp3lame -ar 44100 -ac 1 -vcodec libx264 /file/$1.mp4
    ffmpeg -i /file/$1.mp4 -acodec libvorbis -aq 5 -ac 2 -qmax 25 -threads 2 /file/$1.webm
    ffmpeg -r 30 -i /file/$1.mp4  -vcodec libtheora -acodec libvorbis /file/$1.ogv
    ffmpeg -i /file/$1.mp4 -ss 3 -f image2 -vframes 1 -s 600x480 /file/$1.png
  • Screenshot every 5 or 10 min from rtsp source using ffmpeg

    24 octobre 2017, par user8826215

    Hello i try make script who get screenshot from ip camera every 5 or 10 min
    this script is work

    ffmpeg -rtsp_transport tcp -i "$SOURCE"-vf fps=fps=1/20 -update 1 /picture1.jpg

    But when i start script. It make one shot for 20 second. I need just one pictures and wanna script stop.
    I can make bash script to run script every 5 or 10 min.
    When start for 2 time script ask me to Overwrite and i need say Y. This is not good for me.

    PS. sorry for my bad english

  • nal_ref_idc value for the last frame in GOP when B frame is there for x264 encoding

    21 février 2018, par MSD Paul

    nal_ref_idc value during x264 encoding for each frame signifies that whether decoder has to remember or keep those frames in memory or not or in other words, whether those are reference pictures or not.

    In general, I frame with nal_ref_idc value =3 and for P frames, the value = 2.

    If one considers the GOP of this pattern, IPPPIPPP......

    then why the last P also has a nonzero value of 2. I think it should be 0.

    can anyone please tell why the last frame has nonzero nal value ?