
Recherche avancée
Autres articles (90)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (8160)
-
FFmpeg - How do i get the extradata required to open the ALAC Codec ?
2 février 2016, par SowrinatorI 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 ?
-
smoothstreamingenc : do not open the files as read+write
15 février 2016, par Anton Khirnov -
VideoCapture fails to open videos in Ubuntu
27 février 2016, par onepieceVideoCapture vc;
vc.open("example.avi");
vc.isOpen(); //falseAlso doesn’t work for absolute paths and mp4 videos.
Other solutions I’ve encountered online :
- Install ffmpeg. I have done this.
- Add
ffmpeg
files toPATH
. The answer is for Windows, and it seems for Ubuntu the path is/usr/local/share/OpenCV/3rdparty
. However that directory only has alib
subdirectory with a single filelibippicv.a
. The ffmpeg installation guide says the compiled ffmpeg programs are in~/bin
, and I’ve tried adding~/bin/ffmpeg
(executable, could be theopencv_ffmpeg.dll
Linux equivalent) to myPATH
. - Change the video’s codec. The file I have is in MPEG-4 AVC, but replacing the
XVID
in the post withAVC
did not output any video. - I was thinking of trying more video samples, but I’ve already tried three and am not sure where to get definitely readable videos.