
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (67)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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 (...)
Sur d’autres sites (10117)
-
Can you sync multicast video feed with live feed ?
15 juillet 2022, par Taavi SõerdI am using android studio to stream live video via UDP multicast. my problem is that video feed on the android app plays in "slow motion" so every second real time is played as two seconds in the video feed. My question is that can I sync the video feed in the app to latest UDP packet ? I'm using Java so and I'm very new to UDP and especially multicast, thanks !


-
FFMpeg not installing due to vscode problem
13 mai 2020, par MiqhtieLolI am trying to code a discord music bot for a private server and when I try to install FFmpeg (npm install discord.js ffmpeg fluent-ffmpeg @discordjs/opus ytdl-core —save) it gives me a big error and I think the part that matters is this :



You need to install the latest version of Visual Studio
gyp ERR! find VS including the "Desktop development with C++" workload.
gyp ERR! find VS For more information consult the documentation at:
gyp ERR! find VS https://github.com/nodejs/node-gyp#on-windows



-
Cannot Compile FFMPEG with libfreetype on Windows/Msys2
10 octobre 2024, par Devin DixonI am having issues compiling ffmpeg with libfreetype with this commmand on windows MSYS2 :


./configure --pkg-config-flags="--static" --enable-libvpl --enable-libopenh264 --enable-version3 --enable-libfreetype --enable-libopus --enable-libvpx --enable-libvorbis --enable-libaom --enable-libdav1d --disable-gpl --disable-w32threads --enable-pthreads --disable-shared --enable-static --extra-cflags='--static' --extra-cflags="-I/mingw64/include -static" --extra-ldflags="-L/mingw64/lib -static" --prefix="/home/compiled"



I keep getting this error :


ERROR: freetype2 not found using pkg-config

If you think configure made a mistake, make sure you are using the latest
version from Git. If the latest version fails, report the problem to the
ffmpeg-user@ffmpeg.org mailing list or IRC #ffmpeg on irc.libera.chat.
Include the log file "ffbuild/config.log" produced by configure as this will help
solve the problem.



I've installed freetype with this command :


pacman -Ss mingw-w64-x86_64-freetype



I've also tried compiling freetype2 from the source :


git clone https://git.savannah.gnu.org/git/freetype/freetype2.git

cd freetype2

mkdir build && cd build

/mingw64/bin/cmake .. -G "MSYS Makefiles" -DBUILD_SHARED_LIBS=OFF -DCMAKE_INSTALL_PREFIX=/mingw64

make

make install



And pkg-config gives this :


pkg-config freetype2 --cflags --libs
-IC:/msys64/mingw64/include/freetype2 -IC:/msys64/mingw64/include/harfbuzz -IC:/msys64/mingw64/include/glib-2.0 -IC:/msys64/mingw64/lib/glib-2.0/include -IC:/msys64/mingw64/include/libpng16 -lfreetype



I can confirm the package is there :


ls /mingw64/lib/pkgconfig/freetype2.pc
/mingw64/lib/pkgconfig/freetype2.pc



Is there anything else I should be doing to compile a static version of ffmpeg with this package ?