
Recherche avancée
Autres articles (74)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (14045)
-
FFMPEG RTP MpegTS Muxrate
4 décembre 2017, par Lhh92I am needing an application that takes an input rtp MpegTS stream and re-muxes it, remaps the PIDs and then sends it out as an RTP MpegTS multicast. I understand FFMPEG in its current form cannot do this as the rtp_mpegts does not pick up the options from the command line.
I have started to look at the FFMPEG source to find a way to add it into to have these options. I am slightly confused by the way FFMPEG uses the AVFormatContext to pass around information. I have added a new priv_class to the rtp_mepgts which points to a class with options in it (identical to the mpegtsenc.c class) so that the options will actually be added to that context. However, it is now failing when trying to do a realloc somewhere.
Before going down the line too far - is this the correct approach to take ? Is this how to add the options correctly to FFMPEG or is there another way completely I should be looking ?
-
How to open and view an image stored in .yuv format ?
20 juin 2018, par ElectrixI have an image(grayscale) stored as a .yuv file. How do i open the image to see with any viewer or preferably opencv ??
Using on command line -
display -size 640x480 -colorspace gray -depth 8 4:2:0 -interlace plane 0001.yuv
shows the image in a blurred form.
ffmpeg -i 0001.bmp.yuv -f rawvideo -pix_fmt gray out.jpg
gives -Output file #0 does not contain any stream
Its a 640x480 image. All the related questions talk about .yuv videos.
-
ffmpeg convert video file with 8 audio channels to multichannel wav
6 avril 2017, par imgoingtoshaboomson run input, parameters
tell application "Terminal"
activate
set filesString to ""
repeat with file_ in input
set filesString to filesString & " " & quoted form of (POSIX path >of file_)
end repeat
do script "for f in" & filesString & " ; do
/Documents/ffmpeg/ffmpeg -i \"$f\" -acodec pcm_s16le \"$f%.*.wav\"
done"
end tell
return input
end runI wrote an applescript to add a right-click service in OS X, but this only takes the first channel and creates a mono wav file. How can i create a multichannel wav to accommodate 8 mono tracks ?