Tagged Questions
0
votes
1answer
10 views
Append media to post excerpt
I am developing a Wordpress site to allow users to sell musical productions, I would like to have PHP handle the media as that would be the most secure but I am a novice and I don't have a coder on ...
0
votes
1answer
148 views
WordPress: 3.5+ Attach Gallery To Post and Use Template Tag
Just wonder if WordPress 3.5+ still attach gallery even if it is not added to the post content area.
Earlier WordPress was adding gallery as an attachment and allowing to populate via template tag ...
3
votes
1answer
133 views
How to play list of songs in server side and send only the lyrics of the current song to the client side in php?
This is an small package for an office staffs. I am trying to develop a php application that should run mp3 song on server and send the lyrics of the current song(only) to the client side. I need to ...
-3
votes
4answers
99 views
I need help debugging this PHP script [closed]
I'm trying to create a script that will set the browser title, display a centered video and display details about the video all using a combination of regular text with HTML formatting and PHP's $_GET ...
0
votes
0answers
98 views
open file on nas server using php [closed]
I have different servers, one server is being used as a webserver to host different webapps.
An different server I currently use is a NAS (QNAP), where different multimedia is stored. The NAS is also ...
0
votes
0answers
31 views
Media Encoding via the web [closed]
I'm looking for a software that I can install on my server and encode videos into different quality. I know there is FFMPEG, and I've worked with it before, but surely there is something better out ...
-1
votes
3answers
140 views
Show different site if screen res <1000px
I have a client who is on a budget and cannot afford for me to build responsive site using CCS Media Queries, so I want to build a mini site that its liquid and is redirected to when the screen res is ...
0
votes
1answer
76 views
Guide how to create own “Media Container Format” ( File Extension) ? Encoding/Decoding [closed]
I am trying to build my own Media Container Format.
Which should for example contain .mp3 and .png“s.
Till now I was working around with PHP and Java and managed to create .wav files from raw byte ...
1
vote
1answer
193 views
Make large size be selected by default in media upload window - Wordpress
In the Add Media window on post edit page, when uploading an image, there are 4 sizes available: Thumbnail, Medium, Large and Full Size. The Full Size option is selected by default.
How can I make ...
0
votes
1answer
122 views
network connection failed in Red 5 server
I am new to red5 server. When i am trying to run red5 by creating a project in eclipse using red 5 plugin it runs with error. But when i am trying to run the client it shows unsuccessfull connetion. ...
0
votes
0answers
170 views
joomla 1.5 media manager does not change paths
I do have a working version of joomla 1.5 and uses the Media Manager.
It works fine.
When I am trying to load the joomla administration in a n iframe when i ask from media manager's left menu to ...
0
votes
1answer
63 views
Access media file info
I have a large number of media files, .wmv , which I would like to extract information from; filename, size, date created, comments and tags etc.
I have a small snippet of php code which allows me to ...
0
votes
1answer
315 views
Images not showing up in Media Library
I have the same problem as described in this thread: Wordpress - Images not showing up in the Media Library . The only thing is that the solutions described are in that thread is not working for me.
...
0
votes
1answer
132 views
cakephp media plugin Fatal error: Call to undefined method Folder::ls()
hi i am using cakephp media plugin and i got this error when i want to delete a file..
cakephp media plugin Fatal error: Call to undefined method Folder::ls()
any help?
TIA :D
0
votes
2answers
220 views
Social Media Buttons in PHP, HTML: Taking too much time to load and distorting page
I've added social media buttons on my sidebar using PHP and HTML syntax. However everytime I refresh the page, it takes 4-5 secs to load and during the last second it distorts all the context of the ...
-1
votes
2answers
297 views
Music Album Upload in PHP
I am creating a website that requires a music player. I'm currently up to the stage of development where I need to upload the music albums. Ideally I want to be able to input some data such as album ...
1
vote
2answers
424 views
Best way to create a kiosk app displaying a movie and a few contact links?
I'm trying to create a web based welcome display for a building entrance. The project would include:
1) A wmv movie play constantly on the digital display until some visitors touch the screen (this ...
1
vote
2answers
393 views
How to create a playlist with a single php file and multiple media files?
well I'm trying to create a great playlist of music, only using a sigle php file.
Right now, with this code I can stream a song from a single media file source:
<?php
// Try and open the ...
0
votes
1answer
220 views
Cakephp media view to display media from other source
I am able to display and download files uploaded to the server using the media view.
function view($id) {
$this->view = 'Media';
$params = array('id' => $photo['url'], 'name' => ...
1
vote
2answers
116 views
Monitor active server connections using PHP
I want to be able to keep a track of active connections to my server. Specifically I want to keep a track of how long users spend streaming MP3 files so I can use this information to build statistics ...
0
votes
1answer
226 views
TYPO3: get media content for special language
I want to get the picture of a certain page (the user set it on the tab "Resources"). For my default language I can use the media field of
$rootline =$GLOBALS['TSFE']->rootLine ;
But for my ...
0
votes
1answer
683 views
Create media - Magento API (Soap)
I have a little problem with my PHP script. This one use the Magento API and try to create a media for a product.
$imageData = array(
'file' => array(
'name' => 'myimage.jpg',
...
3
votes
4answers
107 views
Optimal media storage solution on directory/database level
I'm developing a website that is going to have lots of images in different sections. For example there will be user photos and article photos. I was thinking of combining all media into a single media ...
3
votes
1answer
219 views
how to restrict unwanted image storage in wordpress media upload
iam using wordpress and when i upload a new image it tend to crop in different size (thumbnail(150*150), medium(300*200), large ) and stores it. For a single image it generates around 4 different ...
2
votes
2answers
3k views
How to allow users to download content from WordPress site
I was tasked with the project of setting up a CMS (I chose wordpress) on a private server, from which the client could post media that could be shared with their partners. For instance, there are PSD ...
2
votes
2answers
1k views
Read ID3 tags without downloading the whole file
Is it possible to read ID3 tags (Duration, Artist, title...) of an MP3 file without having to download the whole file?
I did a few tests and I was able to get the Artist and title tags with only ...
0
votes
2answers
96 views
Where should I put all these uploaded files?
I'm building a webapp that as a small subset of one of the features allows images to be uploaded. I'm running a lamp stack, with Mongo instead of MySql.
I use a javascript uploader with a php backend ...
0
votes
1answer
158 views
Media Gallery Programming Approach
I have a task to make gallery for a website. Gallery will consist of three categories audio gallery, video gallery and image gallery. Administrators of the website will be allowed to add some file. My ...
2
votes
3answers
2k views
open source audio converter to mp3
I'm looking for an open source audio conversion library that can convert audio files of various types to MP3. The server I'm working with is a standard LAMP with PHP. Anyone aware of something that ...
0
votes
2answers
549 views
Dynamic Transcoding and streaming
im trying to work out the best way to have my site dynamicly transcode and stream video files to users who are mostly on mobile devices, site is php/mysql based and running on a windows 2003 server ...
0
votes
1answer
34 views
Validate media objects in PHP
I want to allow users on my website to link to remote media objects: flash, music, movies, etc. I already have a regex to check for links:
...
2
votes
2answers
2k views
Upload photos with php without reload
What I want
I want to upload a file without without reloading the page, also I want to add the source link for the image to the textarea.
So when I push the upload_photo, the image uploads and a ...
2
votes
1answer
68 views
Can PHP handle splitting video
Let's say that I created a video with something like Camtasia and saved it as .avi. How would I go about programmatically extracting a subclip let's say from minute 1:00 to 1:50. Is this something PHP ...
0
votes
1answer
108 views
Drupal Audio with Audio module or other
I tried the Audio module at http://www.drupal.org/project/audio but I'm looking for alternatives if better ones exist.
My problem with the Audio module is that the current release (and the past 5 ...
0
votes
2answers
178 views
Why apache does not update media files when I update tham in my FileSystem?
Why Apache does not update media files when I update them in my file system? (I use xampp on Windows to manage Apache) So when I update my php files I see changes immediately byt when I update media ...
1
vote
1answer
520 views
is there an open source social media/network site framework?
I have an app that is made already, but thought of also bringing in social media/network elements like sharing widget, creating widget, creating certain widget social groups, ability to write their ...
2
votes
5answers
280 views
How to handle media kept on a separate server (PHP)
So, I have three server, and the idea was to keep all media (images, files, movies) on a media server. I never got around to do it but I think I probably should.
So these are the three servers:
WWW ...
1
vote
2answers
617 views
Protecting an ASX file in PHP
I have a members only area on my site where users can login and view Windows Media streaming content.
I have created a PHP script to serve the ASX file however I cannot validate this with session ...
0
votes
3answers
633 views
Good CMS/Publishing platform with media plugin and nice urls
I'm looking for a good publishing platform with a good media gallery. I'll need to show several sorts of video and images, so a good media gallery is a must. I've tried drupal, but I don't like the ...
0
votes
1answer
107 views
Offsite media streaming setup
I've got a media-rich site that's going just beyond the what our server can handle in terms of storage. Estimate between 500 gigs and 2 terabytes.
The media is uploaded through the website usually ...
7
votes
5answers
5k views
Flash Media Server/PHP Application
I need help finding resources that would help me or at least point me in the right direction in building a Flash media server/PHP application. I basically want to improve my current application by ...
