Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (111)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (17946)

  • FFmpeg Failed to read frame size

    1er juin 2019, par Praveen Tamil

    I just trying to read the codec of audio stream.

    ffprobe -hide_banner -loglevel error -show_entries stream=codec_type -print_format json -select_streams a /tmp/5cf245d16c578a24ad99c95c/asset_5cf2459d6c578a24ad99c95a.mp3.mp2

    But I’m geting the error like Failed to read frame size: Could not seek to 1026.
    ffprope

  • ffmpeg failed to execute command - Python

    6 mai 2021, par Abinaya

    I have to convert mp4 video into hls and dash format. For dash format,it's converting and store the file as chunks but while converting into HLS, its throwing me an error as "ffmpeg failed to execute command". It need to convert into hls and store the video format as ".ts"

    


    Kindly refer to my screenshot and suggest me a solution.

    


    error screenshot

    


  • shared:ERROR : closure compiler failed (rc : 1)

    10 avril 2019, par user2212461

    I want to build ffmpeg.js, but I am getting the following error when running make all :

       pop()()}}var shouldRunNow=true;if(Module["noInitialRun"])
    {shouldRunNow=false}Module["noExitRuntime"]=true;run();return
    __ffmpegjs_return}module["exports"]=__ffmpegjs;                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        
       ^^^^^^^^^^^^^^^
       1 error(s), 6 warning(s)
       shared:ERROR: closure compiler failed (rc: 1)
       Makefile:316: recipe for target 'ffmpeg-webm.js' failed
       make: *** [ffmpeg-webm.js] Error 1

    The relevant lines in the Makefile are :

    # Compile bitcode to JavaScript.
    # NOTE(Kagami): Bump heap size to 64M, default 16M is not enough even
    # for simple tests and 32M tends to run slower than 64M.
    EMCC_COMMON_ARGS = \
       --closure 1 \
       -s TOTAL_MEMORY=67108864 \
       -s OUTLINING_LIMIT=20000 \
       -O3 --memory-init-file 0 \
       --pre-js $(PRE_JS) \
       -o $@

    ffmpeg-webm.js: $(FFMPEG_WEBM_BC) $(PRE_JS) $(POST_JS_SYNC)
       emcc $(FFMPEG_WEBM_BC) $(WEBM_SHARED_DEPS) \ --------->>>>> THIS IS LINE 316
           --post-js $(POST_JS_SYNC) \
           $(EMCC_COMMON_ARGS)

    How can I build ffmpeg.js with emcc correctly ?