
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (106)
-
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 (...) -
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 (...) -
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 (11128)
-
ffmpeg encoded video cannot be opened
22 février 2016, par SuppenGeistI wrote i programm that can load an save encoded videos.
Loading the frames with the ffmpeg libraries is all fine but saving doesnt work. I used the example provided here (the video_encode_example() method). The code works but i cannot open the saved video with any player. Even vlc does not work. Only when i load the video with my own program it works.The AVFrames i save are in Yuv444P (Yuv420P doesnt work either) and dont have much metadata. The only the fields that contain data are :
- width
- height
- format
- pts
And of course the fields that hold the actual image data are set.
What am i missing ?
My guess is that either AVFrame or AVCodecContext dont contain enough information and therefore vlc cannot open the file correctly.
-
FFMPEG says MP3 file is longer than it actually is [closed]
21 février, par badr2001I have a mp3 file which is 01:04:09 seconds long. When I use the following commmand :


ffmpeg -i TestAudio_123.mp3 -ss 60 -to 120 -c:a libmp3lame -q:a 2 output.mp3



I get this output in the console :


Input #0, mp3, from 'TestAudio_123.mp3':
 Metadata:
 major_brand : M4A
 minor_version : 0
 compatible_brands: M4A isommp42
 voice-memo-uuid : 07BF4A32-29E8-4A28-89D5-B6676F9CB945
 title : تسجيل جديد ٣٨
 encoder : Lavf61.1.100
 Duration: 01:07:22.01, start: 0.023021, bitrate: 32 kb/s
 Stream #0:0: Audio: mp3 (mp3float), 48000 Hz, mono, fltp, 32 kb/s



My question is why is the duration longer than the actual input file ? Just to show the input file duration :




-
Projecting camera feed with a delay
28 septembre 2022, par Viktor VoščekI'm working on a project which involves capturing output from a camera via HDMI (Sony Alpha A7 IV), and projecting it via a laser/lamp projector, but the catch is that the stream which is going into the projector should be delayed by 4 minutes. (If you start recording something at 10:00am, it will start playing back at 10:04am, etc.) It should be capturing and playing back the feed non-stop for the whole day.


First I was thinking of using FFplay to display a DirectShow stream from a HDMI capture card (like the Elgato 4K60 Pro) and opening the FFplay window on the 'projector screen', but I wasn't able to find any way to manually add delay to the stream. My second idea was to record the actual feed to a video file, and then immediately play it back in intervals (still using FFmpeg+FFplay).


Any other ideas/thoughts ?