
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (89)
-
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 (...) -
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (7546)
-
Your 6-step guide to increasing acquisition
2 juillet 2019, par Matomo Core Team — Analytics Tips -
Android Studio FFMPEG "Protocol not found"
26 novembre 2022, par Whitestripe7773I am trying to run ffmpeg with android studio, but when I try the following code it shows this error message :


E/mobile-ffmpeg : content ://media/external/video/media/68 : Protocol not found
E/mobile-ffmpeg : Did you mean file:content ://media/external/video/media/68 ?


This is my code :


inputVideo = "content://media/external/video/media/68"
videoTitle = "abc"
public void method(String inputVideo, String videoTitle) {
 String cmdLine = "-i " + inputVideo + " -vcodec libx265 -crf 28 file:" + videoTitle;
 FFmpeg.execute(cmdLine);
 }



I think that the 'content :' in inputVideo leads to the error but I don't know how I could fix it.
Already tried out the following :


- 

- Add 'file :' in front of inputVideo and videoTitle
- Removing 'content ://' from the string leads to not finding the file






-
What kind of streaming protocol is the following technique of FFMPEG and HTML Video tag ?
29 avril 2022, par O ConnorMany people were looking for live streaming solution on a web page. I want to share the following knowledge after doing so many researches and having spent so many time.


Run the following command line.


ffmpeg -y -rtsp_transport udp -i "my_rtsp_url" -vcodec libx264 -listen 1 -movflags isml+frag_keyframe -f mp4 http://ip_address:port_nr/test.mp4



Add the following HTML video tag to your web page.


<video controls="controls" autoplay="autoplay">
 <source src="http://ip_address:port_nr/test.mp4" type="video/mp4">
</source></video>



Now you can start live-streaming on your web page.


My question :


In general for a video playback, the browser loads the whole video file
test.mp4
first and then just starts playing the video.

With the above technique, how can FFMPEG keep pushing video frames to the video source of the HTML without having a complete video file first ?


Or


Video source of the HTML keeps pulling frames from the FFMPEG server ?


Does anyone know how it works ? I am not looking for a streaming solution. I want to understand how these two work together ?