Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (55)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • 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

Sur d’autres sites (8862)

  • How to create a DASH VOD for Chromecast with ffmpeg ?

    19 novembre 2020, par Oleg Yablokov

    I need to serve long videos ( 2 hours) from a web server to mobile clients and the clients should be able to play the videos via Chromecast. I have chosen mpeg-dash for this purpose : video encoder is h.264 (level 4.1), audio is aac (although I've tried diffrent ones).

    


    I've tried ffmpeg, MP4Box and some other tools to generate videos ; most of the time I succeeded playing them on VLC or on a mobile client (locally), but not with Chromecast.

    


    I've tried Amazon's Elastic Transcoder and it worked, but it gave me one big file whereas I need many small segments.

    


    CORS are set.

    


    Chromecast remote debugging didn't help much.

    


    Do you know how to do this ?

    


  • Encoding and segmenting HD video for DASH [closed]

    13 mars 2013, par user2163937

    I am trying to encode video for implementing DASH, for encoding I am using this command line...

    ffmpeg -i sample.ts -f mpegts -acodec libfaac -ar 44100 -ab 64k -s 480x270
    -vcodec libx264 -b 500k -r 25 -flags +loop -partitions
    +parti4x4+partp8x8+partb8x8 -subq 5 -refs 6  -keyint_min 10 -i_qfactor 0.71
    -maxrateD 500k -bufsize 500k -rc_eq 'blurCplx^(1-qComp)' -qmin 10 -qmax 51
    -qdiff 4 -level 30 -aspect 16:9 -g 30 -async 2 out.ts

    For segmentation I use this command line

    ffmpeg -i out.ts -c copy -map 0 -f ssegment -segment_time 4 -segment_list
    out.list seg%d.ts  

    And I use the various resolutions and parameters according to the table given in this link.

    Given resolutions and parameters are working fine for me, I can able to get smooth transition among various resolutions. But problem arises when I try to use HD resolution i.e 1280x720, there is a visible flicker when video switches from HD to other resolution or vice-versa. I cannot figure out the problem.

  • Concatenate DASH audio and video to single file

    13 mars 2017, par Andreas

    First of all, I have a folder with about 200 video and audio segments (m4v and m4a) of a video that was live streamed as DASH video. Now - without having the original file - I want to concatenate those parts to a single, playable video file.

    To mention what I already tested :

    • concatenate via the Unix terminal command cat ; unfortunately this won’t help to make the video playable in any media player again
    • using ffmpeg’s merge abilities via files.txt ; with the same unsuccessful result

    I’m definitely not an expert (otherwise I probably wouldn’t ask) but the problem may be also the missing mpd and/or init file (as far as I could skim in the standard).

    Don’t get me wrong : I don’t want to get a bit to bit identical result of the original file. All I want to achieve is a single playable mp4 file of aforesaid video.

    I also tried to make a own mpd file, but the "stream" won’t play. FYI, I tried playing it in the current VLC 3.0.0 git, since the current stable versions seems not to support DASH.
    If it helps, here the video codec :

    id="live-hd_H264"
    mimeType="video/mp4"
    codecs="avc1.4d401f"
    width="396"
    height="704"

    So, can anybody help me ?

    Kind regards !