Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (101)

  • 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" ;

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (7416)

  • 4xm : return a proper error code.

    17 décembre 2013, par Anton Khirnov
    4xm : return a proper error code.
    
    • [DBH] libavcodec/4xm.c
  • avformat/utils : fix rounding error accumulation for generated dts in compute_pkt_fields()

    3 janvier 2014, par Michael Niedermayer
    avformat/utils : fix rounding error accumulation for generated dts in compute_pkt_fields()
    

    This only updates the case where there is no B frame reordering delay.

    Tested-by : Anssi Hannula <anssi.hannula@iki.fi>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/utils.c
  • No such file or directory FFMpeg Error on MAC

    20 novembre 2014, par Nitesh

    I am trying to build a ffmpeg binary using the following link

    http://ffmpegmac.net/HowTo/

    I was successful in creating the binary.
    I could convert video files easily
    This is the code i run in the terminal

    ffmpeg -i Test.mp4 -b:v 64k -bufsize 64k test2.flv

    This works fine totally
    But when i run

    ./ffmpeg -re -i  test2.flv  -acodec libfaac -ar 44100 -ab 96k -c: v libx264  -level 41 -      profile baseline -bufsize 20000k -maxrate 25000k -g 250 -r 20 -s 480x270 -flags  -global_header -map 0 -f segment -segment_time 4 -segment_list test.m3u8 -segment_format mpegts stream%05d.ts 

    I get a "test2.flv : No such file or directory error" even though the test2.flv exists in the folder. Can you tell me where i might be going wrong.
    I am doing the above operation to stream the video to my iPhone over air.

    (Note- The command to build the ffmpeg binary i am using is as follows-
    ./configure —prefix=$TARGET —enable-nonfree —enable-gpl —enable-pthreads —enable-version3 —enable-libspeex —enable-libvpx —disable-decoder=libvpx —enable-libfaac —enable-libmp3lame —enable-libtheora —enable-libvorbis —enable-libx264 —enable-avfilter —enable-libopencore_amrwb —enable-libopencore_amrnb —enable-filters —arch=x86_64 —enable-runtime-cpudetect && make -j 4 && make install
    )

    Thanks in advance for your help
    Regards