
Recherche avancée
Médias (1)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (51)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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
Sur d’autres sites (8655)
-
Android and JNI, pipe data to FFmpeg
2 décembre 2014, par William SeemannI’m trying to create a metadata retriever based on FFmpeg. Since raw Android application resources are often only accessible using a file descriptor I need a way to pipe this data to FFmpeg via JNI. I know FFmpeg supports a "pipe" protocol :
UNIX pipe access protocol.
Allow to read and write from UNIX pipes.
The accepted syntax is:
pipe:[number]
number is the number corresponding to the file descriptor of the pipe (e.g. 0 for stdin, 1 for stdout, 2 for stderr). If number is not specified, by default the stdout file descriptor will be used for writing, stdin for reading.
For example: cat test.wav | ffmpeg -i pipe:0My question is, how do I programmatically emulate
cat test.wav | ffmpeg -i pipe:0
using JNI and avformat_open_input using a FileDescriptor ? Is this possible ? -
RFC 4175 support in ffmpeg ?
28 novembre 2018, par Morix DevAs of today, is RFC 4175 (aka SMPTE 2110-20) currently supported in the released version of ffmpeg (4.1) ?
Surfing the web I am only able to find these two references :
- https://patchwork.ffmpeg.org/patch/2701/
- https://tech.ebu.ch/docs/events/opensource17/presentations/SMPTE2110-ffmpeg.pdf
But it is not clear to me if it has been merged into the released version or not...
If so, are there some examples of
ffmpeg
/ffplay
command lines for testing that ? -
Using FFmpeg with Nvidia GPU acceleration
27 janvier 2021, par derekc23I’m using Using FFmpeg with NVIDIA GPU Hardware Acceleration : : NVIDIA Video Codec SDK Documentation for Windows 10


All goes well until I hit the last three commands :


• Goto nv-codec-headers directory and install ffnvcodec


make install PREFIX=/usr


• Go to the FFmpeg installation folder and run the following command.


./configure —enable-nonfree –disable-shared —enable-cuda-sdk —enable-libnpp –-toolchain=msvc —extra-cflags=-I../nv_sdk —extra-ldflags=-libpath :../nv_sdk


• Compile the code by executing the following command.


make -j 8


I cannot get the ‘make’ command to work – I get 'make' is not recognized as an internal or external command,
operable program or batch file.
I did try the next command, the ./configure one, this was also rejected.


The documentation is : https://docs.nvidia.com/video-technologies/video-codec-sdk/ffmpeg-with-nvidia-gpu/


Can anyone please help with this ?