Recherche avancée

Médias (1)

Mot : - Tags -/framasoft

Autres articles (60)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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

Sur d’autres sites (9171)

  • Removing lagspikes in videos using mpdecimate in FFmpeg

    4 novembre 2020, par Stratos2 - no videos here

    I frequently deal with .mp4 footage files which are game recordings from my computer. Because I'm dealing with a laggy game I end up with footage that has both duplicate frames and a variable frame rate. I want to cut out lagspikes from my video, lagspikes that can have the form of variable frame rates and/or duplicate frames. The end goal is to have video with a constant frame rate and no more lagspikes.
I'm well aware that this will destroy or at least damage the audio, but keeping the audio intact is not necessary for my application.

    


    I have come across the mpdecimate filter for FFmpeg. As far as I have seen this is able to remove duplicate frames, however it does this in a way that does not make the output file a shorter video, but it introduces more variable frame rate.

    


    Is it possible to reach my goal with FFmpeg ? And if so, how ?

    


    Thanks in advance for help !

    


  • How to force different version for arch package dependency

    27 mars 2022, par Gigas002

    I'm building the vangers's game engine as package for AUR. Readme's recommended platform for building is ubuntu, which repos has ffmpeg version 4.4. Arch's ffmpeg is 5.0, with ffmpeg4.4 as a separate package. The problem is, that the game seems to be unbuildable with 5.0 version. How can I force the package to be built with exactly ffmpeg4.4's libraries, but not 5.0 in PKGBUILD file ?

    


  • while read with spaces in filenames

    30 avril 2018, par user3313834

    On this .ogg files

    $ tree
    .
    ├── Disc 1 - 01 - Procrastination.ogg
    ├── Disc 1 - 02 - À carreaux !.ogg
    ├── Disc 1 - 03 - Météo marine.ogg
    └── mp3

    I try with a while loop to ffmpeg convert them to mp3 keeping spaces in filenames: :

    $ ls *.ogg | while read line; do ffmpeg -i "$line" mp3/"$line".mp3 ; done

    But I get this error: :

    $ ls *.ogg | while read line; do ffmpeg -i "$line" mp3/"$line".mp3 ; done
    ...
    Parse error, at least 3 arguments were expected, only 0 given
    in string ' 1 - 02 - À carreaux !.ogg' ...
    ...

    This report bash ffmpeg find and spaces in filenames even if it look similar is for a more complicate script and has no answer.

    This ffmpeg not working with filenames that have whitespace only fix it when output is a http:// URL