Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (28)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

Sur d’autres sites (6394)

  • How to reduce audio frequency in mp3 format through FFMPEG [on hold]

    25 octobre 2014, par internetdoping

    I want to reduce audio bitrate of my movie in FFMPEG when I use libmp3lame -b:a 16k -ac 1 -ar 44100 it works correctly but when I reduce those to libmp3lame -b:a -16k -ac 1 -ar 8000 I get the error :

    Could not write header for output file #0 (incorrect codec parameters ?): Invalid data found when processing input

    please advise me how to reduce audio frequency from 44100 to 8000 mp3lame.

    The following code is working

     ffmpeg -re -ss 00:30:00 -i j:\movie\need4speed.mp4 -preset ultrafast -threads 1 -vcodec libx264 -b:v 20000k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 10265*4320 -acodec libmp3lame -b:a 16k -ac 1 -ar 44100 -f flv rtmp://12.11.1.2/livepkgr/need4speed4320p?adbe-live-event=liveevent

    The following code IS NOT working

     ffmpeg -re -ss 00:30:00 -i j:\movie\need4speed.mp4 -preset ultrafast -threads 1 -vcodec libx264 -b:v 20000k -r 24 -g 24 -keyint_min 4 -x264opts "keyint=4:min-keyint=48:no-scenecut" -s 10265*4320 -acodec libmp3lame -b:a 16k -ac 1 -ar 8000 -f flv rtmp://12.11.1.2/livepkgr/need4speed4320p?adbe-live-event=liveevent

    Thanks

  • using ffmpeg to decode h264 streaming video in C# [on hold]

    4 août 2015, par DanielY

    I’m wokring on a small project which I get h264 video packets live, and would like to decode them and present it on the screen (in a picturebox or simillar).

    I’ve googled alot about ffmpeg usage in C# but haven’t found neither the required dll’s to load in C# project nor code examples for me to review.

    Can someone please show me some example and\or direct me to where I can download the necessary avcodec dll’s ?

    Thanks in advance

  • FFMPEG - Stream discovered after head already parsed [on hold]

    7 février 2014, par John Doe

    I am trying to live transcode an RTMP stream to another RTMP HLS stream using the following command :

    ffmpeg -re -i rtmp://localhost/videochat/testing -c:v libx264 -c:a:0 libfaac -b:a:0 480k -f flv rtmp://localhost:12345/hls/mystream;

    However I receive the following error and the transcoding never begins :

    ffmpeg version git-2014-02-06-474db7a Copyright (c) 2000-2014 the FFmpeg developers
    built on Feb  6 2014 22:20:14 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
    configuration: --enable-gpl --enable-libass --enable-libfaac --enable-libfdk-aac --               enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libtheora --enable-libvorbis --enable-libvpx --enable-x11grab --enable-libx264 --enable-nonfree --enable-version3
    libavutil      52. 63.100 / 52. 63.100
    libavcodec     55. 49.101 / 55. 49.101
    libavformat    55. 30.100 / 55. 30.100
    libavdevice    55.  7.100 / 55.  7.100
    libavfilter     4.  1.102 /  4.  1.102
    libswscale      2.  5.101 /  2.  5.101
    libswresample   0. 17.104 /  0. 17.104
    libpostproc    52.  3.100 / 52.  3.100
    Metadata:
    description           Chat using VideoChat example.
    [flv @ 0x1ec89e0] Stream discovered after head already parsed
    ^C[flv @ 0x1ec89e0] Could not find codec parameters for stream 0 (Video: none):    unspecified size
    Consider increasing the value for the 'analyzeduration' and 'probesize' options
    Input #0, flv, from 'rtmp://localhost/videochat/testing':
    Metadata:
    description     : Chat using VideoChat ex   ?5P
    Duration: N/A, start: 0.000000, bitrate: N/A
    Stream #0:0: Video: none, 1k tbr, 1k tbn, 1k tbc
    Stream #0:1: Data: none
    Codec AVOption b (set bitrate (in bits/s)) specified for output file #0 (rtmp://localhost:12345/hls/mystream) has not been used for any stream. The most likely reason is either wrong type (e.g. a video option with no video streams) or that it is a private option of some encoder which was not actually used for any stream.
    Output #0, flv, to 'rtmp://localhost:12345/hls/mystream':

    If anyone has ever dealt/solved this problem before, can you please share as I have been trying to solve this for 2 days but to no avail !