
Recherche avancée
Autres articles (38)
-
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 (...) -
Changer le statut par défaut des nouveaux inscrits
26 décembre 2015, parPar défaut, lors de leur inscription, les nouveaux utilisateurs ont le statut de visiteur. Ils disposent de certains droits mais ne peuvent pas forcément publier leurs contenus eux-même etc...
Il est possible de changer ce statut par défaut. en "rédacteur".
Pour ce faire, un administrateur webmestre du site doit aller dans l’espace privé de SPIP en ajoutant ecrire/ à l’url de son site.
Une fois dans l’espace privé, il lui faut suivre les menus configuration > Interactivité et activer (...) -
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 (...)
Sur d’autres sites (4853)
-
Livestream doesn't start unless I open the YouTube Live Dashboard [closed]
20 mars 2024, par Gavin TrujilloI have a camera feed that streams 24/7 on YouTube. Everything works fine, except the stream often goes down due to internet reliability issues. I can detect that the stream is down with the v3/search endpoint, then an automated command is sent from my server to restart it, but the stream doesn't start like it should.


I've discovered that the live stream will only start if I open the YouTube Live Dashboard first.
Before opening the dashboard, my streaming software will upload data using the stream key, but there's no live stream. Upon opening the YouTube Live Dashboard, it shows "Good Connection" but with no video feed. My automation script is continuously restarting the stream, so it comes up very shortly after opening the dashboard every time.


Streaming software : I use ffmpeg to translate an RTSP stream directly to YouTube.


ffmpeg -rtsp_transport tcp -re -i "rtsp://$cameraLink" -f lavfi -i anullsrc=channel_layout=stereo:sample_rate=44100 -force_key_frames "expr:gte(t,n_forced*2)" -nostdin -f flv -map 0:v:0 -map 1:a:0 -c:v libx264 -preset ultrafast -crf 43 -s 1280x724 -r 30 -c:a aac "rtmp://a.rtmp.youtube.com/live2/$streamKey"



Since entering into the YouTube Live Dashboard seems to start some sort of "active state", I've tried various Oauth2 and key API methods to start the live stream. I haven't gotten anything to work so far.


-
How to avoid audio pts start from zero after reconfigure the atempo ?
7 avril 2017, par Jerikc XIONGI found the pts of audio is always start from zero if i reconfigure the atempo filter in ijkplayer which based on ffplay.
The code snippet is from ijkplayer
#ifdef FFP_AVFILTER_PLAYBACK_RATE
if (fabsf(ffp->pf_playback_rate) > 0.00001 &&
fabsf(ffp->pf_playback_rate - 1.0f) > 0.00001) {
if (afilters_args[0])
av_strlcatf(afilters_args, sizeof(afilters_args), ",");
av_log(ffp, AV_LOG_INFO, "af_rate=%f\n", ffp->pf_playback_rate);
av_strlcatf(afilters_args, sizeof(afilters_args), "atempo=%f", ffp->pf_playback_rate);
}
#endif
if ((ret = configure_filtergraph(is->agraph, afilters_args[0] ? afilters_args : NULL, filt_asrc, filt_asink)) < 0)
goto end;
is->in_audio_filter = filt_asrc;
is->out_audio_filter = filt_asink;How to avoid audio pts start from zero after reconfigure the atempo filter ?
-
Clipping a video in C++ OpenCV from a specified start and end point
19 novembre 2019, par user3719749I want to clip a video in C++ OpenCV from a specified start and end point. I understand that we can use the following VideoCapture properties for this purpose.
CV_CAP_PROP_POS_MSEC or `CV_CAP_PROP_POS_FRAMES`
But how do I exactly clip a video using any one of the above properties and write it on another video file ? I don’t find any method to read the video file from a specified relative position in millisecond or from a relative frame index.