
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (61)
-
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 (5919)
-
Could not open codec 'libopenh264' : Unspecified error
15 novembre 2023, par GingerbreadI am using OpenCV to process videos for my research. I have Python 2.7 and OpenCV 3.2 versions installed on Windows 10. When I do background subtraction on a video in Python using OpenCV, it works fine and produces the output. However, when I try to save the background subtracted video, it throws this error :



warning: Error opening file (/build/opencv/modules/videoio/src/cap_ffmpeg_impl.hpp:779)
warning: MAH00119.avi (/build/opencv/modules/videoio/src/cap_ffmpeg_impl.hpp:780)
OpenCV: FFMPEG: tag 0x34363258/'X264' is not supported with codec id 28 and format 'h264 / raw H.264 video'

Failed to load OpenH264 library: openh264-1.6.0-win64msvc.dll
 Please check environment and/or download library: https://github.com/cisco/openh264/releases

[libopenh264 @ 0000000001f5bf60] Incorrect library version loaded
Could not open codec 'libopenh264': Unspecified error




I am processing MP4 videos. And I followed the instructions carefully while installing ffmpeg, like adding the bin's path to environment variables. I don't know what else to do. Stuck on this for three days now.



Any help would be much appreciated !
Thanks in advance !!


-
FFmpeg - How do i get the extradata required to open the ALAC Codec ?
15 décembre 2023, par SowryI am wondering how to get the extradata from an ALAC media file using the FFmpeg library without having to manually parse the file ?



I setup initially with :



avformat_open_input(&formatContext, pszFileName, 0, 0);
avformat_find_stream_info(formatContext, NULL);
av_find_best_stream(formatContext, AVMEDIA_TYPE_AUDIO, -1, -1, &codec, 0);
codecContext = avcodec_alloc_context3(codec);




Currently I am able to detect and find the ALAC codec but it fails to open the codec returning AVERROR_INVALIDDATA, which comes from the extradata and extradata_size not being set.



avcodec_open2(codecContext, codec, NULL);




The FFmpeg documentation states that some codecs require extradata and extradata_size to be set to the codec's specifications. But shouldn't this data be set by avformat_find_stream_info ?


-
ffmpeg fails to open a WAV file - "too short LIST tag" [closed]
5 janvier 2024, par bradI have a WAV file exported in FL Studio 21.2.2 on Win10, which ffmpeg/ffprobe cannot open.


When running :


ffprobe -v error -show_format -print_format json -hide_banner -i "path/to/file.wav



This exception is thrown :


[wav @ 0x132704440] too short LIST tag
[in#0 @ 0x132704340] Error opening input: Invalid data found when processing input



Here's a screenshot of the file metadata in macOS


Since i'm not able to open the file with ffmpeg, i can't correct/remove the metadata. Any ideas what I can do ? File is available upon request. Thanks !