Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (40)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (5054)

  • ffmpeg live stream to website html5

    31 août 2013, par roastbeef

    what I want to do is use a webcam or screen capture and broadcast to my site. Ive heard about apple's http streaming but i'm not interested because it's support seems limited. Can someone guide me into the right direction ? I would live to use html5 video. thanks

  • FFmpeg droplet on Windows (converting EXR sequences to mp4)

    6 mars 2018, par KnK

    I’m trying to create a little droplet on my desktop in windows10 that creates mp4 files out of exr sequences. My idea would be to drag the first frame of the sequence and the droplet would recognize the sequence and cook a nice mp4 video out of it.

    My source sequence usually look like this :
    render.0001.exr
    render.0002.exr
    render.0003.exr
    etc.

    So far I’m doing this completely manually by typing this to a command line :

    ffmpeg.exe -gamma 2.2 -i render.%04d.exr -q:v 0 -r 25 video.mp4

    This command creates a nice quality gamma 2.2 mp4 which is perfect but manually setting it is obviously a hassle.

    After a little google-ing I’ve found this droplet :

    ffmpeg.exe -i %1 -y %~n1_preview.mp4

    Which is brilliant but doesn’t recognize file sequences so if I drop multiple files on it it will create single frame mp4 files. I guess it is missing the %04d but I have no idea where to put it or whether it needs some other parameter to work properly.

    Do you guys and girls have any idea how to format this droplet properly ? It would be a huge timesaver.

    Thanks in advance !

  • Cross origin issue in html 5 player

    2 septembre 2020, par Danish Abdul Hamid

    Hey Guys i am new this field i encoded video through ffmpeg and for packaging used bento 4 for output single file in ts below the command i used

    


    mp4hls —hls-version 4 —output-single-file —segment-duration 6 input_7000kb.mp4 input_5000kb.mp4 input_3500kb.mp4

    


    and this is output file http://stream.simpaisa.com/output/master.m3u8 when i open this url in html 5 player its showing error "not allowed by Access-Control-Allow-Headers in preflight response" but in android and vlc this url is working. server already have .htaccess file for cross origin allow .

    


    when i used this command mp4hls —hls-version 4 input_7000kb.mp4 input_5000kb.mp4 input_3500kb.mp4

    


    the output file is http://stream.simpaisa.com/new/output/master.m3u8 and this file is working in html 5 player no cross origin issue

    


    Please tell me whats the issue

    


    this is .htaccess file configuration

    


    Header set Access-Control-Allow-Origin "*"
Header set Access-Control-Allow-Credentials "true"
Header set Access-Control-Allow-Methods "GET,HEAD,OPTIONS,POST,PUT"
Header set Access-Control-Allow-Headers "Access-Control-Allow-Headers, Origin,Accept, X-Requested-With, Content-Type, Access-Control-Request-Method, Access-Control-Request-Headers"
RewriteEngine On

    


    RewriteCond %REQUEST_FILENAME !-f
RewriteRule ^(.*)$ index.php [QSA,L]