
Recherche avancée
Autres articles (61)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)
Sur d’autres sites (10914)
-
Play same audio file to two different sound cards simultaneously using android media player [on hold]
15 décembre 2016, par HardikI have one custom board( media player) running android4.2 OS on it and I need to add a feature that will play same audio to two different sound cards simultaneously.
I have two output devices HDMI and TLV320aic3100 Codec.
And Want to play Video and audio through HDMI and same audio should play through TLV codec. Audio through TLV codec should be in sync with HDMI video/audio.Right now I’m able to play audio through TLV codec by hard-coding sound card number in tinyalsa PCM code "pcm.c" which is used by HAL code of Android Media Player (by default this code will give audio to HDMI),
but not able to provide audio to both sound cards simultaneously.I tried with creating thread in pcm code and writing incoming audio data to both sound card, By doing this HDMI going into under-run problem.
Is there any way to provide same audio to both sound cards simultaneously using Android Media Player or any other options to try ?
-
hls : Report the current media sequence
29 avril 2014, par Luca Barbato -
Adaptive bit rate streaming of mp4 of different gop size using media source api
25 décembre 2018, par wahab khurramI want the adaptive bitrate streaming of the mp4 video of different gop keyframe size.
I know there are couple of options for multi bitrate streaming i.e hls, dash etc
But I already uploaded the videos on the server each video have the 360p, 480p and 720p mp4 file and each video are having different keyframe intervals.
So the real challenge is to make the own multi bitrate mp4 media player using the media source api
I have brain storming all aspect.
We can only cut the h264 at keyframe
So my real challenge is to know the video each keyframe, the keyframe chunk duration, the offset duration and the offset byte position in the mp4 file.
So my question is how I can get these following using ffmpeg, ffprobe or any other software.
1- Keyframe chunk duration
2- Offset video duration
3- Offset byte position in video.
The following ffprobe command give the detailed info of the each keyframe, maybe this will help
ffprobe -i "1080p.mp4" -select_streams v -skip_frame nokey -show_frames
Thanks !