
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (71)
-
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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (9644)
-
How to pass input (Feeds) from camera to ffmpeg for live streaming
1er janvier 2017, par A SahraI want to stream video live that’s captured via getUserMedia and pass it to ffmpeg as an Input or feed to make it live for other users on my website.
How would i get the Video as video4linux2 here ?
$ffmpeg -f video4linux2 -i /dev/video0
I am getting video via getUserMedia from camera and in BackEnd it’s PHP codeigniter.
-
ffmpeg command for php not working on live server
17 septembre 2022, par AnonymousI am generating thumbnail from video while uploading and I have installed ffmpeg on local but in live server ffmpeg is not installed and hosting provider asking extra charges to install it, so i have kept ffmpeg directory which i copied from local machine and placed to live server and provided live server path and try to call script but it is not generating thumbnail



$ffmpeg = 'https://example.com/ffmpeg/bin/ffmpeg.exe';
 $video_temp_path = $_FILES['upload_file']['tmp_name']; 
 $video_title = $_FILES['upload_video']['name'];


 $image = 'upload/' . $video_title . uniqid().'.jpg';
//time to take screenshot at
 $interval = 5;
//screenshot size
 $size = '320x240';
//ffmpeg command
 $command = $ffmpeg.' -i '.$video_temp_path.' -deinterlace -an -ss '.$interval.' -f mjpeg -t 1 -r 1 -y -s '.$size.' '.$image.' 2>&1';

 exec($command, $array);



-
Android Live Streaming based on javaCV + FFMpeg crashes by adding red5 link
1er octobre 2015, par user1914692The Android application code is from :
Android Live Streaming courtesy of JavaCV and FFMPEGIt streams the live camera video from the device.
I follow one comment’s instruction (Yoshio Numai), to use Red5 as the stream server.
By Red5 itself, I can successfully use simpleBroadcaster and simpleSubscriber to stream and display the live camera (from the computer) steam.In the MainActivity.java, I change the code as below :
private String ffmpeg_link = "rtmp://192.168.1.105/oflaDemo/red5StreamDemo";
And I can start the app in my Android device (Nexus 4).
after click "start", the app crash, pops out a small window, saying :
"Unfortunately, JavaCV 0.3 Stream Test has stopped. OK."Once I click the OK button, I find the app is still live in the task list.
But the same thing will happen.
What’s wrong here ?