Recherche avancée

Médias (91)

Autres articles (45)

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

  • How to compres a image size to a desired file size in KBs using ffmpeg or python or Ubuntu Command line ?

    16 octobre 2017, par yash17

    I’m using ffmpeg to take a screenshot from a udp stream.
    Due to varying bit rates while transmission, the captured screenshot has different file size everytime.400KB,500KB..Eventhough it is screenshot of a same static page.

    Is there a way to get a specific file size everytime,in ffmpeg ?

    Or is there a command to convert a captured file to the desired KB using Python or through Ubuntu terminal ?

    Here is the command I’m using.

    ffmpeg -i udp://@XXX.XX.XX.XX:XXXX -vframes 1 -q:v 1 test.png

    I also tried the following commands in terminal,but it did nothing.

    convert -define jpeg:extent=100kb test.png output.png
  • Unable to scrub video after remuxing multiple mpeg-ts to mp4

    21 juillet 2022, par Jona

    I have written custom code to concat multiple mpeg-ts files into an mp4 video file. I've used as reference the remuxing code sample.

    


    I'm having issues with the final output. I'm unable to scrub the video on QuickTime. The final output seems to be missing something.

    


    I compared using ffprobe my custom code remuxer results to that of using the following terminal command :

    


    ffmpeg -i "concat:input1.ts|input2.ts|input3.ts" -c copy output.mp4


    


    To my surprise, the videos look almost identical but I'm noticing some differences in the reported distance and keyframe values. I also did a hex comparison and see minor differences at the end of the file which tells me I've muxed the frames correctly. What could I be missing ? Any tips or ideas would be really helpful !

    


    FFmpeg terminal remuxed video [WORKING VIDEO]
FFmpeg terminal working video

    


    Custom remuxer code video [SCRUBBING BROKEN]
Custom remuxer code video

    


    App.mp4 vs ffmpeg.mp4 remuxed video
Comparison of custom coded remuxer vs ffmpeg terminal concat to mp4 video.

    


  • Unable to FW/RW video after remuxing multiple mpeg-ts to mp4

    21 juillet 2022, par Jona

    I have written custom code to concat multiple mpeg-ts files into an mp4 video file. I've used as reference the remuxing code sample.

    


    I'm having issues with the final output. I'm unable to fast-forward or rewind as the video looses it's information and plays the same frame till the end. But if i play from the beginning it plays fine.

    


    I compared using ffprobe my custom code remuxer results to that of using the following terminal command :

    


    ffmpeg -i "concat:input1.ts|input2.ts|input3.ts" -c copy output.mp4


    


    To my surprise, the videos look almost identical but I'm noticing some differences in the reported distance and keyframe values. I also did a hex comparison and see minor differences at the end of the file which tells me I've muxed the frames correctly. What could I be missing ? Any tips or ideas would be really helpful !

    


    FFmpeg terminal remuxed video [WORKING VIDEO]
FFmpeg terminal working video

    


    Custom remuxer code video [SCRUBBING BROKEN]
Custom remuxer code video

    


    App.mp4 vs ffmpeg.mp4 remuxed video
Comparison of custom coded remuxer vs ffmpeg terminal concat to mp4 video.