
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (107)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (18642)
-
videostreaming in java with bytedeco maven dependencies
22 octobre 2020, par faenschiwe try to setup a videostreamig service in java. our applications runs in a docker container on openshift. therefore we install ffmpeg in the dockerfile.


in java we use the bytedeco maven dependencies. but i'm really not sure which dependency version runs with which ffmpeg version installed in the container. is there somewhere a overview ? does anybody have a similar setup ?


at the moment we use the 1.5.4 maven dependencies and ffmpgen v4.3.1 in the container :


<dependency>
 <groupid>org.bytedeco</groupid>
 <artifactid>javacv-platform</artifactid>
 <version>1.5.4</version>
 </dependency>

 <dependency>
 <groupid>org.bytedeco</groupid>
 <artifactid>javacpp-platform</artifactid>
 <version>1.5.4</version>
 </dependency>

 
 <dependency>
 <groupid>org.bytedeco</groupid>
 <artifactid>ffmpeg-platform</artifactid>
 <version>4.3.1-1.5.4</version>
 </dependency>



this does not work. the pod crashes as soon as i start the streaming. if i use ffmpeg v 3.x with a older centos base image and the dependency above the pod does not crash..but the streaming does not work either.


any help appreciated
angela


-
Is there an effective and cheap/free way to host video for a mobile app that must be approved by an admin before going live ? [on hold]
9 août 2013, par user2658775We are building a mobile app for the iOS and Android operating systems. The app is to be a communication platform for members within an organization. Content is generated by users and submitted to the admin. Once approved by the admin the content is pushed to the app. One feature of the app is the ability to upload video.
We are having a tough time attempting to figure out the best way to do this. Because the app will be representing the organization, the organization must have control over the approval process.
So far we have come up with the following options :
Option 1 : purchase a dedicated server from hosting service provider. The basic package with Blue host is $150/month which is fairly expensive.
Option 2 : have the users post to YouTube using their personal accounts. Upon posting to YouTube (via the app) the app would send a notification to the admin that a new video has been posted. Admin would review the video and if acceptable admin would user url link to post video to app. This option, while free, requires many steps that will bog down the submittal process.
Does anyone know of an effective way to post video to an app that requires approval by an admin ?
-
avformat/mpegtsenc : fix PCR generation intervals
4 août 2019, par Marton Balintavformat/mpegtsenc : fix PCR generation intervals
PCR generation was based on counting packets for both CBR and VBR streams.
Couting packets might have worked for CBR streams (when muxrate was specified)
but it only took into account the packets of a service (or the packets of the
PCR stream lately), so even that was problematic for multi program streams.The new code works on actual timestamps for both CBR and VBR streams. For VBR
streams the behaviour of the old code is simulated by selecting a PCR interval
which is the highest multiple of the frame duration but still less than 100 ms.It should be trivial to add support for setting the PCR interval for VBR
streams as well in a later patch.The accuracy of PCR packets for CBR streams was greatly improved by preemtively
sending them at PCR intervals even if sending the payload of another stream
is in progress.This may fix these tickets :
#5750
#7524
Signed-off-by : Marton Balint <cus@passwd.hu>