
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (68)
-
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 ;
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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
Sur d’autres sites (11230)
-
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**