
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (61)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (3452)
-
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.
-
Modify code so each snippets start from begin instead end
13 décembre 2022, par Ohiowizardsource : https://davidwalsh.name/video-preview#comment-515168

the part of code that trim videos into snippets :

# Loop and generate video snippets
 mkdir $tempdir
 interval=$(($length/$desiredsnippets-$starttimeseconds))
 for i in $(seq 1 $desiredsnippets)
 do
 # Format the second marks into hh:mm:ss format
 start=$(($(($i*$interval))+$starttimeseconds))
 formattedstart=$(printf "%02d:%02d:%02d\n" $(($start/3600)) $(($start%3600/60)) $(($start%60)))
 echo 'Generating preview part ' $i $formattedstart
 # Generate the snippet at calculated time
 ffmpeg -i $sourcefile -vf scale=$dimensions -preset fast -qmin 1 -qmax 1 -ss $formattedstart -t $snippetlengthinseconds -threads $(nproc) $tempdir/$i.mp4
 done



`


Video length is 3600 (60mins)

Desired snippets = 30, that mean 2mins each

It always start at 0:02:00 to 0:04:00 -> and so on

but i want it start at 0:00:00 (1st snippet) -> 0:02:00 (2nd snippet) -> (this put in code because it said invalid code format)

- 

- I want to make it trim from start of each snippets instead end of each snippets.
- This code trim video into multiple parts(snippets) that set by user, and then merged all snippets into one video.






-
modify code of ffmpeg [closed]
12 juillet 2012, par toutou0091Possible Duplicate :
ffmpeg code changesTo install FFmpeg, I followed the instructions in this web site http://buildall.wordpress.com/2011/05/09/how-to-compile-and-install-ffmpeg-in-ubuntu-11-04/ and it works well. In the file "mpegvideo_enc.c" there is a variable called "qp". I added in this file in the istruction printf to display this varaible. I redid after : ". / configure" and "make" and it works as well. The Result of this compilation gives no executable file. I would like to know why the printf that I added in the code is not displayed ?