
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (60)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip 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 2013Puis-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 2011Le 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œschMerge commit ’70c77fdfc1076fd7f6cd20079237ddc97e1a10bc’
* commit ’70c77fdfc1076fd7f6cd20079237ddc97e1a10bc’ :
rtpdec_vp9 : Update header parsing to spec draft 02This 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 LambChopsAndSauceIs there a way to be able to read your current position in an audio file using FFmpeg ?


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.
Any help would be appreciated :) !

-
ffmpeg, creating thumbnail, but getting "deprecated pixel format used"
20 septembre 2016, par Andre MI 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