
Recherche avancée
Autres articles (74)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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 (4962)
-
ffmpeg convert mpeg4 to h264 with api play black in quicktime [on hold]
9 février 2018, par C.yixianI try to convert mpeg4 to h264 with ffmpeg api on macox 10.12.It play black in quickTime while it play well in VLC(the media information of my output file : codec : H264-MPEG-4 AVC Decoded format : Planar 4:2:0 YUV). But when I convert with ffmpeg cmd line "ffmpeg -i test.mp4 -vcodec copy -an test2.mp4", It can play well in quickTime.
-
how to play edited videos in mvp
19 avril 2021, par Eswar Thow to play edited videos(before exporting them) like how we can play in ffplay like here an example in ffplay so can we also play them using MVP if yes please convert this command thank you


ffplay -i 1.mp4 -ss 00:00:30.100 -t 00:00:10 -af volume=2.0,atempo=2.0-vf transpose=0,transpose=0,setpts=1/0.5*PTS,fps=30) 



and using a playlist how can we play multiple edited files like


ffplay -i 1.mp4 -ss 00:00:30.100 -t 00:00:10 -af volume=2.0,atempo=2.0-vf transpose=0,transpose=0,setpts=1/0.5*PTS,fps=30) && ffplay -i 2.mp4 -ss 00:00:30.100 -t 00:00:10 -af volume=2.0,atempo=2.0-vf transpose=0,transpose=0,setpts=1/0.5*PTS,fps=30)



thank you


-
why jmf can't play rtp stream ?
24 janvier 2017, par ahmet burakI produced an rtp link with ffmpeg and I tried to listen and play this stream. VLC and ffmpeg can play rtp stream, both work well but jmf doesn’t.
Although there is no any error, jmf doesn’t play rtp stream and there is no sound.
My rtp stream (http:.. is a radio link and rtp :... my stream)
ffmpeg -i http://airspectrum.cdnstream1.com:8114/1648_128 -acodec copy -f rtp "rtp ://127.0.0.1:10000/audio/1"
public void play() {
MediaLocator mediaLocator = new MediaLocator("rtp://127.0.0.1:10000/audio/1");
try {
if (mediaLocator == null) {
System.err.println("null locator");
}
player = Manager.createRealizedPlayer(mediaLocator);
player.start();
} catch (CannotRealizeException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (NoPlayerException e) {
e.printStackTrace();
}
}- os ubuntu 16.08
- java jdk 1.8
- javax.media.jmf 2.1.1e (maven repo version)