
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (75)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (12431)
-
Trying to install ffmpeg with brew and I keep getting errors related to "dav1d_bottle_manifest"
13 décembre 2022, par Jonathan DoeI am trying to do some basic DSP in python and in order to play some of my audio files I need to install ffmpeg on my computer.


I am running a 2019 macbook pro.


When I run brew intsall ffmpeg -d


I get this on my terminal output


rm: /usr/local/Homebrew/.git/TMP_FETCH_FAILURES: is a directory
rm: /usr/local/Homebrew/.git/TMP_FETCH_FAILURES: is a directory
Running `brew update --auto-update`...



This auto update just runs forever with no updates of any kind. I'm not sure if it is broken or stuck or what.


I try to manually run :


brew update -d



and the update stalls forever on this section :


+ [[ -f /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/FETCH_HEAD ]]
+ touch /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/FETCH_HEAD
+ [[ -z '' ]]
+ [[ 200 == \3\0\4 ]]
+ [[ -n '' ]]
+ local tmp_failure_file=/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/TMP_FETCH_FAILURES
+ rm -f /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/.git/TMP_FETCH_FAILURES
+ [[ -n '' ]]
+ git fetch --tags --force -q origin refs/heads/master:refs/remotes/origin/master



I am having so many problems with brew any help would be appreciated.


-
libavcodec/qsvenc : Add "slice" intra refresh type to qsvenc
6 septembre 2022, par Wenbin Chenlibavcodec/qsvenc : Add "slice" intra refresh type to qsvenc
Add "slice" intra refresh type to h264_qsv and hevc_qsv. This type means
horizontal refresh by slices without overlapping. Also update the doc.Signed-off-by : Wenbin Chen <wenbin.chen@intel.com>
-
How to scale mouse cursor when recording display with ffmpeg ?
16 mai 2022, par rkhI'm recording the whole Windows 10 Desktop on a 4K laptop screen with a native resolution of 3840x2160. The windows desktop is scaled to 200% (so it behaves like 1920x1080).


Here's the
ffmpeg
command line I'm using to record the desktop :

"C:\ffmpeg\ffmpeg.exe" -rtbufsize 1500M -f gdigrab -framerate 10 -i desktop -vf crop="3840:2160:0:0" -pix_fmt yuv420p -preset ultrafast -tune fastdecode -y "C:\ffmpeg\test1.mp4"



I'm using
crop
to be able to record only a portion of the screen as well as the whole screen.

The issue is that the mouse cursor is way to small on the resulting video file. It looks like that
ffmpeg
is not respecting the scaling factor from the windows desktop settings (200%).

I could change the high-dpi settings of the
ffmpeg.exe
file (https://stackoverflow.com/a/67679516/19128336) but I need to find a way to solve this issue programmatically.

This issue occurs only on screens with desktop scaling factor higher than 100%.


Is there a way to tell
ffmpeg
about the desktop scaling factor ?

Thanks in advance.