Recherche avancée

Médias (1)

Mot : - Tags -/ipad

Autres articles (71)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • 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

  • 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

Sur d’autres sites (10024)

  • Mjpeg text based subtitle extraction/replay

    2 décembre 2013, par user3058117

    I have an MJPEG based avi file that I cannot replay satisfactorily.

    The video I can correctly replay in FFPlay but i cannot replay or demux the text based subtitle stream.

    The file contains time/date stamps in the subtitles embedded as ascii text which i can see between the video packets (when viewed in a hex reader).

    FFmpeg cannot identify the subtitle codec b7t can see that there is a subtitle stream.

    Ive tried a number of filter combinations using GraphStudioNext. I found a couple of working solutions (when previewed in GraphStudio when served to avisynth the subtitles had disappeared again. I checked the filtergraph and the pin out from the avi splitter had misteriously disconnected. I cannot find a way out of this.

    Does anyone have any suggestions on how i might demux the subtitle stream(short of writing a converter to extract the text to srt based on the packet timing) ?

    This is my first post so apologies if i havent observed etiquette.

  • Fuent ffmpeg width inaccurate

    30 juillet 2023, par Vince

    


    Version information

    


      

    • fluent-ffmpeg version : 2.1.2
    • 


    • OS : Windows
    • 


    


    Code to reproduce

    


        ffmpeg()
      .input(pngPath)
      .inputOptions('-loop 1')
      .duration(OUTRO_DURATION)
      .videoFilters(`scale=${width}:${height},setsar=1`)
      .output(outroPath)
      .on('end', resolve)
      .on('error', reject)
      .run();


    


    (note : if the problem only happens with some inputs, include a link to such an input file)

    


    Expected results

    


    pngPath has a width of 420px, however no matter what the final output outroPath will have width of 408px. I have tried doing size('420x600') or videoFilters(scale=420:600,setsar=1) but nothing...

    


    Observed results

    


    The width is always 408px

    


  • aiff : add support for XA ADPCM

    3 janvier 2018, par Misty De Meo
    aiff : add support for XA ADPCM
    

    Certain AIFF files encode XA ADPCM compressed audio using a chunk
    with the tag `APCM`. Aside from this custom chunk type, they're
    otherwise standard AIFF files. I've only observed these files in the
    Sega Saturn game Sonic Jam so far.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/aiffdec.c