Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (60)

  • 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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (12409)

  • Merge commit ’70c77fdfc1076fd7f6cd20079237ddc97e1a10bc’

    21 juin 2016, par Clément Bœsch
    Merge commit ’70c77fdfc1076fd7f6cd20079237ddc97e1a10bc’
    

    * commit ’70c77fdfc1076fd7f6cd20079237ddc97e1a10bc’ :
    rtpdec_vp9 : Update header parsing to spec draft 02

    This commit is a noop, see 43880f971662c6f79f58ffb373200306e155e0f5

    Merged-by : Clément Bœsch <clement@stupeflix.com>

  • Being able to read the current audio frame using ffmpeg and python

    5 novembre 2020, par LambChopsAndSauce

    Is there a way to be able to read your current position in an audio file using FFmpeg ?

    &#xA;

    I want to make it so my discord bot plays an audio clip and then on exit, it saves the current position and then when it rejoins the VC it can resume at that point. I know how to get it to resume at the correct time using -ss but I am not sure how to get the timestamp at the point ti leaves.&#xA;Any help would be appreciated :) !

    &#xA;

  • ffmpeg, creating thumbnail, but getting "deprecated pixel format used"

    20 septembre 2016, par Andre M

    I am trying to create thumbnails from my videos with ffmpeg, but I get the error "deprecated pixel format used, make sure you did set range correctly", along with "Using AVStream.codec to pass codec parameters to muxers is deprecated, use AVStream.codecpar instead.". I had a look around, but not sure what the new correct way of doing things is.

    Currently my command-line call looks as follows :

    infile=myfile.mp4
    outfile=myfile.jpg
    position=0
    ffmpeg -ss ${position} -i "${infile}" -f image2 -vframes 1 -y "${outfile}"

    I also tried (scales to 144px height) :

    ffmpeg -ss $position -i "${infile}" -y -filter_complex \    
     scale"=w=trunc(oh*a/2)*2:h=144[size0];[size0]split=1[screen0]" \
     -vframes 1 -map [screen0] "${outfile}"

    Note : Using ffmpeg 3.1.3, via MacPorts, on MacOS X 10.11.6