
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (10034)
-
video playlist to rtmp server seamless playback using ffmpeg without re-encoding
25 février 2020, par hedgehog90I have a list of rtmp compatible videos that make up a continuous playlist.
I’ve run into the common problem, that if I try to stream each one sequentially using separate ffmpeg commands, there is a significant gap that occurs on the streaming service.
I not only want to eliminate this gap, but also adapt the ffmpeg output to playlist updates if it’s edited on the fly, much like how a playlist system works in any media player, as well as a basic seeking mechanism.
By what method is this possible ?
Also - I know I’m asking a lot in one question, and I suspect the answer is a definitive ’no’ - but I’d like to know if it is possible to use different resolutions and/or frame rates without stopping and starting the rtmp stream.
Thanks.
-
Parlez-Vous Binutils ?
18 juillet 2010, par Multimedia Mike — GeneralI found myself in need of some binutils today. What do you suppose it is about this basic Apache file listing page that makes Google Chrome think it’s in French ?
Opting to translate doesn’t seem to have any affect, aside from ruining the alignment of the columns.
That quirk aside, the page translation facility is actually quite nifty.
-
Filename in android rejected by ffmpeg command
28 avril 2020, par ark1974Planning to use ffmpeg in Android for A/V conversion. Installed Android Studio 3.5.3. I am fairly new to Android development and the folder names, unlike in windows system, is fairly confusing to me. I am able to build the gradle without any error but the fetched pathname is rejected by ffmpeg commandline.



Questions :



1) Resulting path_name shows both pathname and filename which is cool. Is the resulting path_name correct or expected ? However, ffmpeg raised error flag citing that directory/file do not exist corresponding to the resulting path_name.



2) Inside android properties, the path starts with "Device storage/..." but Android Studio command starts with "/document/". Why I see this variation ?



3)
onActivityResult()
do not work with@override private
prefix but works with@override public
, is it expected ? Many examples on internet, however use private though.


4)
MediaStore.Audio.Media.DATA
code do not work at all, is it deprecated in Android 3.5.5 ?


Java code :



@Override public void onActivityResult(int requestCode, int resultCode, Intent data) {
 if(requestCode == 7 && resultCode == RESULT_OK){ 
 path_name = data.getData().getPath(); 
 }
 }




Result :



path_name = "/document/primary:WhatsApp/Media/WhatsApp Audio/AUD-20200402-WA0006.mp3" **strong text**