Recherche avancée

Médias (91)

Autres articles (26)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (5125)

  • /usr/include/time.h:243:29 : error : expected identifier or ‘(’ before ‘__const’ [duplicate]

    27 novembre 2019, par user12408787

    This question already has an answer here :

    When I used gcc to compile program,I meet this error messages,and i have searched answers online,but can not find any results,so I want to ask how to fix this?

  • Using Cygwin for FFMPEG build error cmp : command not found

    9 octobre 2015, par Papajohn000

    I’ve been trying to use Cygwin to build ffmpeg but I’m running into the error ./configure: line 1132: cmp: command not found. I tried looking around online for solutions but found none. I also checked if I just didn’t download the right package when I downloaded Cygwin but I found nothing relating to cmd. I’m not sure if there is a workaround or not. The code from line 1132 is :

    cp_if_changed(){
       cmp -s "$1" "$2" && echo "$2 is unchanged" && return
       mkdir -p "$(dirname $2)"
       $cp_f "$1" "$2"
    }

    Thanks

  • Mp4 to dynamic adaptive hls with multiple bitrates using ffmpeg

    10 décembre 2023, par Awais fiaz

    I tried converting mp4 video to HLS for online streaming which I have successfully done using FFmpeg.

    



    Command :

    



    ffmpeg -i /var/www/html/file_conversion/heli.mp4 -map 0 -profile:v baseline -level 3.0 -s 640x360 -c:v libx264 -b:v 500k -c:a libfdk_aac -b:a 320k -hls_list_size 0 -start_number 0 -hls_init_time 0 -hls_time 2  -f hls /var/www/html/file_conversion/hlstest2/heli.m3u8


    



    But now I am trying to convert the same video with multiple bitrates for dynamic adaptive streaming.

    



    Any idea how can I achieve this ?