Recherche avancée

Médias (91)

Autres articles (19)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

Sur d’autres sites (4366)

  • avdevice/alldevices : stop using deprecated linked list API

    9 octobre 2020, par James Almer
    avdevice/alldevices : stop using deprecated linked list API
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavdevice/alldevices.c
    • [DH] libavdevice/avdevice.c
  • Stop FFMPEG changing extracted frame resolution

    22 septembre 2020, par S_Wheel

    I'm using a bash script to extract frames from a bunch of videos in a folder.

    &#xA;

    #!/bin/bash&#xA;if [ "$1" == &#x27;&#x27; ] || [ "$2" == &#x27;&#x27; ] || [ "$3" == &#x27;&#x27; ]; then&#xA;    echo "Usage: $0 <input folder="folder" /> <output folder="folder"> <file extension="extension">";&#xA;    exit;&#xA;fi&#xA;for file in "$1"/*."$3"; do&#xA;    destination="$2${file:${#1}:${#file}-${#1}-${#3}-1}";&#xA;    mkdir -p "$destination";&#xA;    ffmpeg -i "$file" -vsync 0 -frame_pts true -r 1000 "$destination/frame_%d.png";&#xA;done&#xA;</file></output>

    &#xA;

    Using the ffmpeg command :

    &#xA;

    ffmpeg -i "$file" -vsync 0 -frame_pts true -r 1000 -s "$destination/frame_%d.png";&#xA;

    &#xA;

    My problem is the extracted frames have a lower resolution (and also a different resolution). The first video goes from 1024x576 to 768x576 in the extracted frames.

    &#xA;

    I can't force the WxH in the command because the videos all have different resolutions. Does anyone know why ffmpeg is changing the resolution and how to stop it ?

    &#xA;

    Thanks

    &#xA;

  • avfilter/vf_bilateral : stop using sigmaS as percent of width/height

    17 juillet 2020, par Paul B Mahol
    avfilter/vf_bilateral : stop using sigmaS as percent of width/height
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/vf_bilateral.c