
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (65)
-
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 ;
-
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 -
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 (10307)
-
How to debug ffmpeg c code used in IJKmediaplayer ?
15 août 2015, par Daniyal YasinI am trying to use the libstagefright codec of ffmpeg to decode an mp4 file using IJKmediaplayer on android. IJKmediaplayer is sort of a wrapper enabling the use of ffmpeg on Android.
This is the link giving basic info about ijkmediaplayer : https://github.com/Bilibili/ijkplayer
The link also describes the build process for ijkmediaplayer. First ffmpeg is built then the shared libraries are copied to appropriate places and then I have to import the project in eclipse.
I use the ijkmediaplayer android project in eclipse as a library project in another android application. The structure is like this :
|-ijkmediaplayer
| |-jni
| |-ffmpeg (this folder doesn't have the complete source just headers)
| |-ijkmedia (some c source files of ijkmediaplayer)
|
|-my_projectSo my question is how do I debug libstagefright.cpp from my application ?
Libstagefright.cpp is contained in the ffmpeg source not visible in the android ijkmediaplayer project. But used when building the ijkmediaplayer android project as described in the link.
The debugger easily reaches the code of the ijkmediaplayer android project. But does not proceed to the native code automatically if I press f5.
-
FFMPEG — Create New Audio File using aselect filter API call in C code
17 juin 2021, par AfricanMambaI have been working on an a program in C that invokes the use of FFMPEG's libraries to remove some segments of audio from a given audio file. I have created the filter successfully using the API call,
const AVFilter* aselect = avfilter_get_by_name("aselect")
, linking it with abuffersrc and abuffersink.

However, I am not sure entirely sure what to pass in to the arguments when creating the filter because when I pass in the argument string,
"'between(t,10,32)', asetpts = N/SR/TB output.wav"
, it gives me an error saying :"Invalid chars ',asetpts=N/SR/TBoutput.wav' at the end of expression"


But when I pass in just
"'between(t,10,32)'"
as the arguments for the filter, the program compiles and runs but no output file is created with just the audio from 10 seconds to 32 seconds. Does anyone happen to know if it is even possible to use the aselect filter API to create new audio files or if there is an example that exists showing how to copy only frames from one audio file to another ? Thanks !

-
FFmpeg code not working on http url for thumbnail extraction
1er août 2014, par user2240379I am trying to extract thumbnail from sharepoint 2013 video library. I found a link which can extract using ffmpeg. this is the link :
[How can I save first frame of a video as image ?filename = "http://siteurl/" + items["FileRef"].ToString();
When i replaced the input file with sharepoint site url and video name then it does not produce any thumbnail. I also gives error on
ffmpeg.Start();
ffmpeg.WaitForExit();
ffmpeg.Close()I would like to understand how make it work for http url.
If it is not possible to use url in ffmpeg can anyone suggest another method to achieve thumbnail.(as i want the thumbnail to be set automatically using 1st frame from of video if it not set manually)