Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (71)

  • 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

  • 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 (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (11964)

  • avcodec/aacps : Factor out code shared by float and fixed point decoder

    28 décembre 2020, par Andreas Rheinhardt
    avcodec/aacps : Factor out code shared by float and fixed point decoder
    

    Saves about 7KiB.

    Reviewed-by : Lynne <dev@lynne.ee>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/aacps.c
    • [DH] libavcodec/aacps.h
    • [DH] libavcodec/aacps_common.c
    • [DH] libavcodec/aacpsdata.c
    • [DH] libavcodec/aacsbr_template.c
  • Error applying options to the filter.Error initializing filter 'psnr' with args , Error initializing complex filters. Invalid argument [closed]

    16 juin 2021, par shilpa

    net="ffmpeg -i ""+filepath+filename+rawformat+"" -c:v libx265 -b:v "+bitrate+" ""+filepath+"output_videos/"+filename+"_"+bitrate+encformat+"""&#xA;print "ffmpeg command : ", net, "\n"&#xA;log=os.system(net)&#xA;print(log), "ffmpeg execution success !\n"

    &#xA;

  • ffmpeg live dash content is not being played after loop

    27 octobre 2022, par Przemo

    I have problem with audio and video presence after looping the files used in live dash streaming.
    &#xA;I am using following ffmpeg command :

    &#xA;

    ffmpeg -re -fflags &#x2B;genpts -stream_loop -1 &#xA;-i H265_2160p60_VBR_30Mbps_OTT.mp4 &#xA;-i H265_1440p60_VBR_20Mbps_OTT.mp4 &#xA;-i H265_1080p60_VBR_15Mbps_OTT.mp4 &#xA;-i H265_900p60_VBR_10Mbps_OTT.mp4 &#xA;-i H265_720p60_VBR_5Mbps_OTT.mp4 &#xA;-i H265_576p60_VBR_1Mbps_OTT.mp4 &#xA;-map 0 -map 1 -map 2 -map 3 -map 4 -map 5 &#xA;-c copy &#xA;-streaming 1 -use_timeline 1 -use_template 1 -window_size 30 -remove_at_exit 1 -segment_wrap 30 &#xA;-adaptation_sets "id=0,seg_duration=2,streams=v id=1,seg_duration=2,streams=a" &#xA;-init_seg_name &#x27;live-$RepresentationID$-init.m4s&#x27; -media_seg_name &#x27;live-$RepresentationID$-$Time$.m4s&#x27; &#xA;-f dash video/out.mpd&#xA;

    &#xA;

    Main problem is that the A/V is present until the streams loop (every stream has the same length).
    &#xA;FFmpeg is still processing the files but the client is not able to play the content anymore.

    &#xA;

    Additional problem is that the dash.js is not able to play the content due to dynamic manifest. Is there an option in ffmpeg to change type on manifest ?

    &#xA;