Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (66)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (13474)

  • Is seeking to specific frames of an MJPEG video faster than doing the same for an h.264 file ?

    9 février 2018, par David Parks

    I am recording video and will need to seek to a specific frame in the video quickly and randomly.

    I can record the video in MJPEG or h.264 compression standards.

    I understand that MJPEG produces individual jpegs and produce larger file sizes than h.264, and h.264 compresses across multiple frames of video.

    Does this difference mean that I will get faster seek times when
    seeking to a random location in the file using ffmpeg or gstreamer
    programmatically ?

    Will the MJPEG allow the frame-seek operation to reduce the IO requirements when reading just 1 frame from a video file ?

  • lavd/gdigrab : mouse dpi awareness

    15 février 2016, par Metaksakis Georgios
    lavd/gdigrab : mouse dpi awareness
    

    correct mouse location on hidpi screens.
    fixes ticket #5008

    Signed-off-by : Matt Oliver <protogonoi@gmail.com>

    • [DH] libavdevice/gdigrab.c
  • How easy is it to create a YouTube to MP3 application using yt-dlp and ffmpeg ?

    26 juin 2022, par fowlis

    I was thinking I could automate the process of downloading a video and converting it to mp3 (or other formats).
    &#xA;Instead of doing the process myself (which doesn't take that long and isn't too much hassle), which looks something like this :
    &#xA;• yt-dlp https://www.youtube.com/watch?v=dQw4w9WgXcQ
    &#xA;• wait for download then (find and) rename file to something simpler for next command
    &#xA;• ffmpeg -i video.mp4 video.mp3&#xA;

    &#xA;

    I thought I could turn it into a simple JS (or other language) program instead, where it :

    &#xA;

      &#xA;
    1. Asks for link and what format I want it in
    2. &#xA;

    3. Downloads the video
    4. &#xA;

    5. Renames it (not sure how easy this is)
    6. &#xA;

    7. Turns it into requested format
    8. &#xA;

    9. Opens file location
    10. &#xA;

    &#xA;

    If something like this is possible, please let me know some things I should know since I've never written a windows app before, and some general guidance for how I could do this.

    &#xA;I apologise if questions like this aren't exactly allowed on this site, its my first time posting too.
    &#xA;Thanks in advance !

    &#xA;