
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (76)
-
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (10827)
-
How to downloaded embedded videos on Instagram that have multiple media network requests ? (ffmpeg / curl)
21 octobre 2022, par flhuI was wondering whether it is still possible to download the stories on Instagram that have multiple media network requests nowadays. Previously, I could simply download them using the Firefox Media Page Info View. This is still possible for some content such as reels or by using ffmpeg / curl. I have posted the network behaviour when I load a story on Instagram and a Reel on Instagram. I could not figure out which of the network requests is the relevant one (assuming it is the request with the biggest size) and when downloading it, the VLC player does not recognise the video.


Instagram Reel Network Request


Instagram Stories Network Request


When using the Firefox Media Page Info View, it is possible to download the content from the reel directly whereas the mp4 media file is greyed out.


I tried to copy the URL from the network request using :


ffmpeg -i -c copy 



Copying the corresponding curl request but also only works for the Reel where the HTTP response status codes is 206 (Reel) instead of 200 (Story).


-
Problem in access "libavcodec/avcodec.h" in CPP [duplicate]
14 septembre 2021, par SujayNote : Not full working code but part of the code.
Problem is when trying to compile it shows the below output.
FFMPEG have installed.
No flag in VS code but error occurred on compile time.
Thanks in Advance.


#include<bits></bits>stdc++.h>
#include<opencv2></opencv2>opencv.hpp>

extern "C" {
 #include "libavcodec/avcodec.h"
 #include "libavformat/avformat.h"
 #include "libavutil/mathematics.h"
 #include "libavutil/pixfmt.h"
 #include "libswscale/swscale.h"
}

using namespace std;
using namespace cv;

int main(){



 AVPacket avpkt; int err, frame_decoded = 0;
 AVCodec *codec = avcodec_find_decoder ( AV_CODEC_ID_H264 );
 AVCodecContext *codecCtx = avcodec_alloc_context3 ( codec );
 avcodec_open2 ( codecCtx, codec, NULL );
 // Set avpkt data and size here
 // err = avcodec_decode_video2 ( codecCtx, avframe, &frame_decoded, &avpkt );
 return EXIT_SUCCESS;
}




Output :


h264.cpp:(.text+0x15): undefined reference to `avcodec_find_decoder'
h264.cpp:(.text+0x25): undefined reference to `avcodec_alloc_context3'
h264.cpp:(.text+0x41): undefined reference to `avcodec_open2'
collect2: error: ld returned 1 exit status 



-
How can I install ffmpeg in google colab and encode my Google drive videos ?
7 mai 2022, par SimbaI tried to use this colab notebook, but I think it doesn't work anymore.
I have no idea about how to code, if anyone has a working notebook for ffmpeg in colab please share it with me.